Remove redundant conditional;Remove debugging;Fix module parameters;Fix var reference
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Danny Bessems 2023-02-05 10:38:12 +01:00
parent ede82ea7e7
commit 1c950086fa
3 changed files with 4 additions and 7 deletions

View File

@ -75,10 +75,6 @@
kubeconfig: "{{ kubeconfig.path }}"
register: patch_result
until:
- patch_result.changed is defined
- patch_result.changed is true
retries: "{{ playbook.retries }}"
delay: "{{ playbook.delay.short }}"
- debug:
msg: "{{ patch_result }}"

View File

@ -1,8 +1,9 @@
- name: Disable disk scheduling and evict replicas
kubernetes.core.k8s:
api_version: longhorn.io/v1beta2
kind: lhn
name: "{{ decom_nodename }}"
namespace: longhorn-system
kind: nodes.longhorn.io
state: patched
definition: |
spec:

View File

@ -7,8 +7,8 @@
- name: Power off VM
community.vmware.vmware_guest:
name: "{{ virtualmachine_details.hw_name }}"
folder: "{{ virtualmachine_details.hw_folder }}"
name: "{{ virtualmachine_details.instance.hw_name }}"
folder: "{{ virtualmachine_details.instance.hw_folder }}"
state: poweredoff
# state_change_timeout: "{{ playbook.delay.long }}"