mirror of https://git.rancher.io/charts
Merge pull request #1565 from thedadams/bump-suc-0.8.0-rc1-again
commit
6ee4605033
Binary file not shown.
|
@ -0,0 +1,14 @@
|
||||||
|
annotations:
|
||||||
|
catalog.cattle.io/certified: rancher
|
||||||
|
catalog.cattle.io/hidden: "true"
|
||||||
|
catalog.cattle.io/namespace: cattle-system
|
||||||
|
catalog.cattle.io/os: linux
|
||||||
|
catalog.cattle.io/release-name: system-upgrade-controller
|
||||||
|
apiVersion: v1
|
||||||
|
appVersion: v0.8.0
|
||||||
|
description: General purpose controller to make system level updates to nodes
|
||||||
|
home: https://github.com/rancher/system-charts/blob/dev-v2.6/charts/rancher-k3s-upgrader
|
||||||
|
name: system-upgrade-controller
|
||||||
|
sources:
|
||||||
|
- https://github.com/rancher/system-charts/blob/dev-v2.6/charts/rancher-k3s-upgrader
|
||||||
|
version: 100.0.1+up0.3.1
|
|
@ -0,0 +1,9 @@
|
||||||
|
{{/* vim: set filetype=mustache: */}}
|
||||||
|
|
||||||
|
{{- define "system_default_registry" -}}
|
||||||
|
{{- if .Values.global.systemDefaultRegistry -}}
|
||||||
|
{{- printf "%s/" .Values.global.systemDefaultRegistry -}}
|
||||||
|
{{- else -}}
|
||||||
|
{{- "" -}}
|
||||||
|
{{- end -}}
|
||||||
|
{{- end -}}
|
|
@ -0,0 +1,12 @@
|
||||||
|
apiVersion: rbac.authorization.k8s.io/v1
|
||||||
|
kind: ClusterRoleBinding
|
||||||
|
metadata:
|
||||||
|
name: system-upgrade-controller
|
||||||
|
roleRef:
|
||||||
|
apiGroup: rbac.authorization.k8s.io
|
||||||
|
kind: ClusterRole
|
||||||
|
name: cluster-admin
|
||||||
|
subjects:
|
||||||
|
- kind: ServiceAccount
|
||||||
|
name: system-upgrade-controller
|
||||||
|
namespace: cattle-system
|
|
@ -0,0 +1,16 @@
|
||||||
|
apiVersion: v1
|
||||||
|
kind: ConfigMap
|
||||||
|
metadata:
|
||||||
|
name: system-upgrade-controller-config
|
||||||
|
namespace: cattle-system
|
||||||
|
data:
|
||||||
|
SYSTEM_UPGRADE_CONTROLLER_DEBUG: {{ .Values.systemUpgradeControllerDebug | default "false" | quote }}
|
||||||
|
SYSTEM_UPGRADE_CONTROLLER_THREADS: {{ .Values.systemUpgradeControllerThreads | default "2" | quote }}
|
||||||
|
SYSTEM_UPGRADE_JOB_ACTIVE_DEADLINE_SECONDS: {{ .Values.systemUpgradeJobActiveDeadlineSeconds | default "900" | quote }}
|
||||||
|
SYSTEM_UPGRADE_JOB_BACKOFF_LIMIT: {{ .Values.systemUpgradeJobBackoffLimit | default "99" | quote }}
|
||||||
|
SYSTEM_UPGRADE_JOB_IMAGE_PULL_POLICY: {{ .Values.systemUpgradeJobImagePullPolicy | default "IfNotPresent" | quote }}
|
||||||
|
SYSTEM_UPGRADE_JOB_KUBECTL_IMAGE: {{ template "system_default_registry" . }}{{ .Values.kubectl.image.repository }}:{{ .Values.kubectl.image.tag }}
|
||||||
|
SYSTEM_UPGRADE_JOB_PRIVILEGED: {{ .Values.systemUpgradeJobPrivileged | default "true" | quote }}
|
||||||
|
SYSTEM_UPGRADE_JOB_TTL_SECONDS_AFTER_FINISH: {{ .Values.systemUpgradeJobTTLSecondsAfterFinish | default "900" | quote }}
|
||||||
|
SYSTEM_UPGRADE_PLAN_POLLING_INTERVAL: {{ .Values.systemUpgradePlanRollingInterval | default "15m" | quote }}
|
||||||
|
|
|
@ -0,0 +1,62 @@
|
||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
name: system-upgrade-controller
|
||||||
|
namespace: cattle-system
|
||||||
|
spec:
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
upgrade.cattle.io/controller: system-upgrade-controller
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
upgrade.cattle.io/controller: system-upgrade-controller # necessary to avoid drain
|
||||||
|
spec:
|
||||||
|
affinity:
|
||||||
|
nodeAffinity:
|
||||||
|
preferredDuringSchedulingIgnoredDuringExecution:
|
||||||
|
- preference:
|
||||||
|
matchExpressions:
|
||||||
|
- key: node-role.kubernetes.io/control-plane
|
||||||
|
operator: In
|
||||||
|
values:
|
||||||
|
- "true"
|
||||||
|
weight: 100
|
||||||
|
- preference:
|
||||||
|
matchExpressions:
|
||||||
|
- key: node-role.kubernetes.io/master
|
||||||
|
operator: In
|
||||||
|
values:
|
||||||
|
- "true"
|
||||||
|
weight: 100
|
||||||
|
tolerations:
|
||||||
|
- operator: Exists
|
||||||
|
serviceAccountName: system-upgrade-controller
|
||||||
|
containers:
|
||||||
|
- name: system-upgrade-controller
|
||||||
|
image: {{ template "system_default_registry" . }}{{ .Values.systemUpgradeController.image.repository }}:{{ .Values.systemUpgradeController.image.tag }}
|
||||||
|
imagePullPolicy: IfNotPresent
|
||||||
|
envFrom:
|
||||||
|
- configMapRef:
|
||||||
|
name: system-upgrade-controller-config
|
||||||
|
env:
|
||||||
|
- name: SYSTEM_UPGRADE_CONTROLLER_NAME
|
||||||
|
valueFrom:
|
||||||
|
fieldRef:
|
||||||
|
fieldPath: metadata.labels['upgrade.cattle.io/controller']
|
||||||
|
- name: SYSTEM_UPGRADE_CONTROLLER_NAMESPACE
|
||||||
|
valueFrom:
|
||||||
|
fieldRef:
|
||||||
|
fieldPath: metadata.namespace
|
||||||
|
volumeMounts:
|
||||||
|
- name: etc-ssl
|
||||||
|
mountPath: /etc/ssl
|
||||||
|
- name: tmp
|
||||||
|
mountPath: /tmp
|
||||||
|
volumes:
|
||||||
|
- name: etc-ssl
|
||||||
|
hostPath:
|
||||||
|
path: /etc/ssl
|
||||||
|
type: Directory
|
||||||
|
- name: tmp
|
||||||
|
emptyDir: {}
|
|
@ -0,0 +1,5 @@
|
||||||
|
apiVersion: v1
|
||||||
|
kind: ServiceAccount
|
||||||
|
metadata:
|
||||||
|
name: system-upgrade-controller
|
||||||
|
namespace: cattle-system
|
|
@ -0,0 +1,12 @@
|
||||||
|
global:
|
||||||
|
systemDefaultRegistry: ""
|
||||||
|
|
||||||
|
systemUpgradeController:
|
||||||
|
image:
|
||||||
|
repository: rancher/system-upgrade-controller
|
||||||
|
tag: v0.8.0
|
||||||
|
|
||||||
|
kubectl:
|
||||||
|
image:
|
||||||
|
repository: rancher/kubectl
|
||||||
|
tag: v1.20.2
|
18
index.yaml
18
index.yaml
|
@ -4703,6 +4703,24 @@ entries:
|
||||||
- assets/rancher-sriov/sriov-crd-100.0.0+up0.1.0.tgz
|
- assets/rancher-sriov/sriov-crd-100.0.0+up0.1.0.tgz
|
||||||
version: 100.0.0+up0.1.0
|
version: 100.0.0+up0.1.0
|
||||||
system-upgrade-controller:
|
system-upgrade-controller:
|
||||||
|
- annotations:
|
||||||
|
catalog.cattle.io/certified: rancher
|
||||||
|
catalog.cattle.io/hidden: "true"
|
||||||
|
catalog.cattle.io/namespace: cattle-system
|
||||||
|
catalog.cattle.io/os: linux
|
||||||
|
catalog.cattle.io/release-name: system-upgrade-controller
|
||||||
|
apiVersion: v1
|
||||||
|
appVersion: v0.8.0
|
||||||
|
created: "2021-10-19T14:21:10.77362-07:00"
|
||||||
|
description: General purpose controller to make system level updates to nodes
|
||||||
|
digest: 9a8e64d931df03b524cb7f30cff763c113c3becff9d3edeb13ca02ca253e0713
|
||||||
|
home: https://github.com/rancher/system-charts/blob/dev-v2.6/charts/rancher-k3s-upgrader
|
||||||
|
name: system-upgrade-controller
|
||||||
|
sources:
|
||||||
|
- https://github.com/rancher/system-charts/blob/dev-v2.6/charts/rancher-k3s-upgrader
|
||||||
|
urls:
|
||||||
|
- assets/system-upgrade-controller/system-upgrade-controller-100.0.1+up0.3.1.tgz
|
||||||
|
version: 100.0.1+up0.3.1
|
||||||
- annotations:
|
- annotations:
|
||||||
catalog.cattle.io/certified: rancher
|
catalog.cattle.io/certified: rancher
|
||||||
catalog.cattle.io/hidden: "true"
|
catalog.cattle.io/hidden: "true"
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
rancher_min_version: 2.4.0-rc1
|
rancher_min_version: 2.6.0-alpha1
|
||||||
|
|
|
@ -5,15 +5,13 @@
|
||||||
-name: rancher-k3s-upgrader
|
-name: rancher-k3s-upgrader
|
||||||
-description: Enables a k3s or rke2 cluster to update itself by reacting to Plan CRs.
|
-description: Enables a k3s or rke2 cluster to update itself by reacting to Plan CRs.
|
||||||
- Users do not need to manually upgrade this app. It will be automatically upgraded to the latest version when upgrading a cluster.
|
- Users do not need to manually upgrade this app. It will be automatically upgraded to the latest version when upgrading a cluster.
|
||||||
-home: https://github.com/rancher/system-charts/blob/dev-v2.6/charts/rancher-k3s-upgrader
|
|
||||||
+name: system-upgrade-controller
|
+name: system-upgrade-controller
|
||||||
+description: General purpose controller to make system level updates to nodes
|
+description: General purpose controller to make system level updates to nodes
|
||||||
+home: https://github.com/rancher/system-charts/charts/system-upgrade-controller
|
home: https://github.com/rancher/system-charts/blob/dev-v2.6/charts/rancher-k3s-upgrader
|
||||||
sources:
|
sources:
|
||||||
- - "https://github.com/rancher/system-charts/blob/dev-v2.6/charts/rancher-k3s-upgrader"
|
- "https://github.com/rancher/system-charts/blob/dev-v2.6/charts/rancher-k3s-upgrader"
|
||||||
+ - "https://github.com/rancher/system-charts/charts/system-upgrade-controller"
|
version: 0.3.1
|
||||||
version: 0.3.0
|
appVersion: v0.8.0
|
||||||
appVersion: v0.7.5
|
|
||||||
+annotations:
|
+annotations:
|
||||||
+ catalog.cattle.io/certified: rancher
|
+ catalog.cattle.io/certified: rancher
|
||||||
+ catalog.cattle.io/hidden: "true"
|
+ catalog.cattle.io/hidden: "true"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
url: https://github.com/rancher/system-charts.git
|
url: https://github.com/rancher/system-charts.git
|
||||||
subdirectory: charts/rancher-k3s-upgrader/0.3.0
|
subdirectory: charts/rancher-k3s-upgrader/0.3.1
|
||||||
commit: 26475fa43f67f77c148ddece41ecb1e8d1584508
|
commit: 43ca7c9954d03c6334cdf307d4097e4c3ac5fd02
|
||||||
version: 100.0.0
|
version: 100.0.1
|
||||||
|
|
Loading…
Reference in New Issue