Skip to content

Commit

Permalink
Fix typo in main.yml (#317)
Browse files Browse the repository at this point in the history
Signed-off-by: Mykyta Orlov <[email protected]>
  • Loading branch information
orlovmyk authored Apr 1, 2024
1 parent 91405dc commit 5dd8c3f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion roles/k3s_agent/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# We should be downloading and installing the newer version only if we are in one of the following cases :
# - we couldn't get k3s installed version in the first task of this role
# - the installed version of K3s on the nodes is older than the requested version in ansible vars
- name: Download artefact only if needed
- name: Download artifact only if needed
when: k3s_version_output.rc != 0 or installed_k3s_version is version(k3s_version, '<') and airgap_dir is undefined
block:
- name: Download K3s install script
Expand Down
2 changes: 1 addition & 1 deletion roles/k3s_server/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# We should be downloading and installing the newer version only if we are in one of the following cases :
# - we couldn't get k3s installed version in the first task of this role
# - the installed version of K3s on the nodes is older than the requested version in ansible vars
- name: Download artefact only if needed
- name: Download artifact only if needed
when: k3s_version_output.rc != 0 or installed_k3s_version is version(k3s_version, '<') and airgap_dir is undefined
block:
- name: Download K3s install script
Expand Down

0 comments on commit 5dd8c3f

Please sign in to comment.