Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
micafer committed Feb 27, 2024
1 parent 77737f6 commit 4ab8c21
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tasks/Debian.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

- name: Set kube_minor_version
set_fact:
kube_minor_version: "{{ kube_version.split('.')[0] }}"."{{ kube_version.split('.')[1] }}"
kube_minor_version: "{{ kube_version.split('.')[0] }}.{{ kube_version.split('.')[1] }}"

- name: Add repo key
get_url:
Expand Down
2 changes: 1 addition & 1 deletion tasks/RedHat.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

- name: Set kube_minor_version
set_fact:
kube_minor_version: "{{ kube_version.split('.')[0] }}"."{{ kube_version.split('.')[1] }}"
kube_minor_version: "{{ kube_version.split('.')[0] }}.{{ kube_version.split('.')[1] }}"

- name: Set repo file
copy:
Expand Down

0 comments on commit 4ab8c21

Please sign in to comment.