-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(upgrade-path): add pre-kubernetes.sh.tpl where due
Add Ansible reprovision on: - 1.28.6 → 1.29.6 - 1.29.6 → 1.30.1
- Loading branch information
Showing
2 changed files
with
40 additions
and
0 deletions.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
configs/upgrades/onpremises/1.28.6-1.29.6/pre-kubernetes.sh.tpl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/usr/bin/env sh | ||
|
||
set -e | ||
|
||
{{- if index .spec "kubernetes" }} | ||
|
||
## master upgrades - only one at a time | ||
{{- range $h := .spec.kubernetes.masters.hosts }} | ||
ansible-playbook 55.upgrade-control-plane.yml --limit "{{ $h.name }}" --become | ||
{{- end }} | ||
|
||
{{- if ne .upgrade.skipNodesUpgrade true }} | ||
{{- range $n := .spec.kubernetes.nodes }} | ||
{{- range $h := $n.hosts }} | ||
ansible-playbook 56.upgrade-worker-nodes.yml --limit "{{ $h.name }}" | ||
{{- end }} | ||
{{- end }} | ||
{{- end }} | ||
|
||
{{- end }} |
20 changes: 20 additions & 0 deletions
20
configs/upgrades/onpremises/1.29.6-1.30.1/pre-kubernetes.sh.tpl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/usr/bin/env sh | ||
|
||
set -e | ||
|
||
{{- if index .spec "kubernetes" }} | ||
|
||
## master upgrades - only one at a time | ||
{{- range $h := .spec.kubernetes.masters.hosts }} | ||
ansible-playbook 55.upgrade-control-plane.yml --limit "{{ $h.name }}" --become | ||
{{- end }} | ||
|
||
{{- if ne .upgrade.skipNodesUpgrade true }} | ||
{{- range $n := .spec.kubernetes.nodes }} | ||
{{- range $h := $n.hosts }} | ||
ansible-playbook 56.upgrade-worker-nodes.yml --limit "{{ $h.name }}" | ||
{{- end }} | ||
{{- end }} | ||
{{- end }} | ||
|
||
{{- end }} |