Change become arguments to boolean

Changed all 'become: ' values from 'yes' to 'true' to satisfy the schema
(and also make the lsp shut up).
This commit is contained in:
Marty Oehme 2022-12-18 16:02:32 +01:00
parent 385cb3859c
commit 7d8408f9f8
Signed by: Marty
GPG key ID: 73BA40D5AFAF49C9
28 changed files with 124 additions and 125 deletions

View file

@ -4,7 +4,7 @@
ansible.builtin.package:
name: "openssl"
state: present
become: yes
become: true
tags:
- apt
- download

View file

@ -29,7 +29,7 @@
ssh_key_type: rsa
ssh_key_bits: 4096
ssh_key_comment: "Gitea Host Key"
become: yes
become: true
register: git_user
- name: Ensure git passthrough command directory exists
@ -39,7 +39,7 @@
mode: '0770'
owner: "{{ git_user['uid'] }}"
group: "{{ git_user['group'] }}"
become: yes
become: true
- name: Save git passthrough command in right location
ansible.builtin.copy:
@ -48,21 +48,21 @@
owner: "{{ git_user['uid'] }}"
group: "{{ git_user['group'] }}"
mode: '0750'
become: yes
become: true
- name: Fetch keyfile
fetch:
src: "{{ git_user['home'] }}/.ssh/id_rsa.pub"
dest: "buffer/{{ansible_hostname}}-id_rsa.pub"
flat: yes
become: yes
become: true
- name: Ensure git user has its own key authorized for access
ansible.posix.authorized_key:
user: "{{ git_user['name'] }}"
state: present
key: "{{ lookup('file', 'buffer/{{ ansible_hostname }}-id_rsa.pub') }}"
become: yes
become: true
- name: Clean up buffer dir
ansible.builtin.file:
@ -78,7 +78,7 @@
curl localhost:2019/id/{{ stack_name }}_upstream/
register: result
changed_when: (result.stdout | from_json) != (lookup('template', 'upstream.json.j2') | from_yaml)
become: yes
become: true
notify: "update gitea upstream"
- name: Deploy gitea to swarm
@ -88,7 +88,7 @@
prune: yes
compose:
- "{{ stack_compose }}"
become: yes
become: true
tags:
- docker-swarm
register: gitea_deployment
@ -96,14 +96,14 @@
- name: Wait 30 seconds for gitea to become healthy
wait_for:
timeout: 60
timeout: 30
delegate_to: localhost
when: gitea_deployment is changed
- name: Get app container info
ansible.builtin.command:
cmd: docker ps -q -f name={{ stack_name }}_app
become: yes
become: true
until: gitea_app_container_name['rc'] == 0 and gitea_app_container_name['stdout'] | length >= 1
retries: 10
delay: 10