Skip to content

Commit

Permalink
ansible: yamllint disable rule:line-length
Browse files Browse the repository at this point in the history
  • Loading branch information
gelocraft committed Dec 12, 2024
1 parent 273f276 commit ea06560
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 8 deletions.
4 changes: 1 addition & 3 deletions ansible/roles/docker/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,7 @@

- name: Add Docker APT repository
ansible.builtin.apt_repository:
repo: >
"deb [arch=amd64] https://download.docker.com/linux/ubuntu
{{ ansible_lsb.codename }} stable"
repo: "deb [arch=amd64] https://download.docker.com/linux/ubuntu {{ ansible_lsb.codename }} stable" # yamllint disable-line rule:line-length
state: present

- name: Install Docker
Expand Down
3 changes: 1 addition & 2 deletions ansible/roles/minikube/vars/main.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
---
minikube_deb_url: >
"https://storage.googleapis.com/minikube/releases/latest/minikube_latest_amd64.deb"
minikube_deb_url: "https://storage.googleapis.com/minikube/releases/latest/minikube_latest_amd64.deb" # yamllint disable-line rule:line-length
minikube_deb_path: "/tmp/minikube_latest_amd64.deb"
4 changes: 1 addition & 3 deletions ansible/roles/terraform/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,7 @@

- name: Add HashiCorp APT repository
ansible.builtin.apt_repository:
repo: >
"deb https://apt.releases.hashicorp.codename
{{ ansible_lsb.codename }} main"
repo: "deb https://apt.releases.hashicorp.codename {{ ansible_lsb.codename }} main" # yamllint disable-line rule:line-length
state: present

- name: Ensure apt cache is updated
Expand Down

0 comments on commit ea06560

Please sign in to comment.