Skip to content

Commit 4e31e5d

Browse files
SISheogorathbrandond
authored andcommitted
fix(kustomize): Deploy latest system-upgrade-controller
Before this patch always version v0.8.0 would be deployed when using the kustomize command from the README. This patch adjust the kustomization to not overwrite the version. The build process is unaffected from this, since during the build script the kustomize file is adjusted to adjust the version to the current release. This means the build manifests for release will still have a pinned version like before. Reference: https://github.com/rancher/system-upgrade-controller/blob/4eacc2dabbde943ee59dc7819ea0a04909b05b0f/scripts/package-controller#L36
1 parent db86e24 commit 4e31e5d

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

kustomization.yaml

-3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,3 @@ resources:
55
- manifests/clusterrole.yaml
66
- manifests/clusterrolebinding.yaml
77
- manifests/system-upgrade-controller.yaml
8-
images:
9-
- name: rancher/system-upgrade-controller
10-
newTag: v0.8.0

manifests/system-upgrade-controller.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ spec:
6666
effect: "NoExecute"
6767
containers:
6868
- name: system-upgrade-controller
69-
image: rancher/system-upgrade-controller:v0.11.0
69+
image: rancher/system-upgrade-controller:latest
7070
imagePullPolicy: IfNotPresent
7171
securityContext:
7272
runAsNonRoot: true

0 commit comments

Comments
 (0)