-
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: add sed as tool dependency and support 1.29.4 (#537)
* feat: add support for custom registry * feat: update docs and compatibility * deps: use latest v1.29.4 RC * fix(get-kubeconfig): retrieve absolute path to config file (#539) Fixes an issue with path interpolations, where relative paths would not be converted to absolute paths * deps: use v1.29.4 distribution * feat: add upgrade paths --------- Co-authored-by: Riccardo Cannella <[email protected]>
- Loading branch information
1 parent
1b1e0b2
commit e11062d
Showing
20 changed files
with
313 additions
and
40 deletions.
There are no files selected for viewing
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
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
10 changes: 10 additions & 0 deletions
10
configs/upgrades/onpremises/1.27.8-1.27.9/pre-distribution.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,10 @@ | ||
#!/usr/bin/env sh | ||
|
||
set -e | ||
|
||
kubectlbin="{{ .paths.kubectl }}" | ||
|
||
# Remove some validating webhooks during the upgrade | ||
{{- if eq .spec.distribution.modules.policy.type "gatekeeper" }} | ||
$kubectlbin delete --ignore-not-found=true validatingwebhookconfiguration gatekeeper-validating-webhook-configuration | ||
{{- end }} |
10 changes: 10 additions & 0 deletions
10
configs/upgrades/onpremises/1.27.9-1.28.4/pre-distribution.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,10 @@ | ||
#!/usr/bin/env sh | ||
|
||
set -e | ||
|
||
kubectlbin="{{ .paths.kubectl }}" | ||
|
||
# Remove some validating webhooks during the upgrade | ||
{{- if eq .spec.distribution.modules.policy.type "gatekeeper" }} | ||
$kubectlbin delete --ignore-not-found=true validatingwebhookconfiguration gatekeeper-validating-webhook-configuration | ||
{{- end }} |
20 changes: 20 additions & 0 deletions
20
configs/upgrades/onpremises/1.27.9-1.28.4/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 }} |
10 changes: 10 additions & 0 deletions
10
configs/upgrades/onpremises/1.28.3-1.28.4/pre-distribution.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,10 @@ | ||
#!/usr/bin/env sh | ||
|
||
set -e | ||
|
||
kubectlbin="{{ .paths.kubectl }}" | ||
|
||
# Remove some validating webhooks during the upgrade | ||
{{- if eq .spec.distribution.modules.policy.type "gatekeeper" }} | ||
$kubectlbin delete --ignore-not-found=true validatingwebhookconfiguration gatekeeper-validating-webhook-configuration | ||
{{- end }} |
10 changes: 10 additions & 0 deletions
10
configs/upgrades/onpremises/1.28.4-1.29.4/pre-distribution.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,10 @@ | ||
#!/usr/bin/env sh | ||
|
||
set -e | ||
|
||
kubectlbin="{{ .paths.kubectl }}" | ||
|
||
# Remove some validating webhooks during the upgrade | ||
{{- if eq .spec.distribution.modules.policy.type "gatekeeper" }} | ||
$kubectlbin delete --ignore-not-found=true validatingwebhookconfiguration gatekeeper-validating-webhook-configuration | ||
{{- end }} |
20 changes: 20 additions & 0 deletions
20
configs/upgrades/onpremises/1.28.4-1.29.4/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 }} |
10 changes: 10 additions & 0 deletions
10
configs/upgrades/onpremises/1.29.3-1.29.4/pre-distribution.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,10 @@ | ||
#!/usr/bin/env sh | ||
|
||
set -e | ||
|
||
kubectlbin="{{ .paths.kubectl }}" | ||
|
||
# Remove some validating webhooks during the upgrade | ||
{{- if eq .spec.distribution.modules.policy.type "gatekeeper" }} | ||
$kubectlbin delete --ignore-not-found=true validatingwebhookconfiguration gatekeeper-validating-webhook-configuration | ||
{{- end }} |
Oops, something went wrong.