From a4dd2f144d1a15e3013b0cd034e4f900f69dd997 Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 24 Dec 2021 00:22:34 +0000 Subject: [PATCH 1/3] Automated Kargo Maintenance Updater --- charts/kargo/crds/cdi-operator.yaml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/charts/kargo/crds/cdi-operator.yaml b/charts/kargo/crds/cdi-operator.yaml index 9be003b..2eebeaf 100644 --- a/charts/kargo/crds/cdi-operator.yaml +++ b/charts/kargo/crds/cdi-operator.yaml @@ -3596,25 +3596,25 @@ spec: - name: DEPLOY_CLUSTER_RESOURCES value: "true" - name: OPERATOR_VERSION - value: v1.42.0 + value: v1.42.1 - name: CONTROLLER_IMAGE - value: quay.io/kubevirt/cdi-controller:v1.42.0 + value: quay.io/kubevirt/cdi-controller:v1.42.1 - name: IMPORTER_IMAGE - value: quay.io/kubevirt/cdi-importer:v1.42.0 + value: quay.io/kubevirt/cdi-importer:v1.42.1 - name: CLONER_IMAGE - value: quay.io/kubevirt/cdi-cloner:v1.42.0 + value: quay.io/kubevirt/cdi-cloner:v1.42.1 - name: APISERVER_IMAGE - value: quay.io/kubevirt/cdi-apiserver:v1.42.0 + value: quay.io/kubevirt/cdi-apiserver:v1.42.1 - name: UPLOAD_SERVER_IMAGE - value: quay.io/kubevirt/cdi-uploadserver:v1.42.0 + value: quay.io/kubevirt/cdi-uploadserver:v1.42.1 - name: UPLOAD_PROXY_IMAGE - value: quay.io/kubevirt/cdi-uploadproxy:v1.42.0 + value: quay.io/kubevirt/cdi-uploadproxy:v1.42.1 - name: VERBOSITY value: "1" - name: PULL_POLICY value: IfNotPresent - name: MONITORING_NAMESPACE - image: quay.io/kubevirt/cdi-operator:v1.42.0 + image: quay.io/kubevirt/cdi-operator:v1.42.1 imagePullPolicy: IfNotPresent name: cdi-operator ports: From b561d86c536aaabeaf4055bcec50751096f29cbb Mon Sep 17 00:00:00 2001 From: jbpratt Date: Sat, 1 Jan 2022 03:59:40 -0600 Subject: [PATCH 2/3] hostpath-provisioner: include templates Signed-off-by: jbpratt --- .../templates/hostpathprovisioner.yaml | 18 ++++++++++++++---- .../templates/hostpathprovisioner_cr.yaml | 2 ++ .../templates/storageclass-wffc.yaml | 2 ++ 3 files changed, 18 insertions(+), 4 deletions(-) diff --git a/charts/hostpath-provisioner/templates/hostpathprovisioner.yaml b/charts/hostpath-provisioner/templates/hostpathprovisioner.yaml index 72eeb30..9b1d4b1 100644 --- a/charts/hostpath-provisioner/templates/hostpathprovisioner.yaml +++ b/charts/hostpath-provisioner/templates/hostpathprovisioner.yaml @@ -2,12 +2,16 @@ apiVersion: v1 kind: ServiceAccount metadata: - name: hostpath-provisioner-operator + name: {{ include "hostpath-provisioner.serviceAccountName" . }} + labels: +{{ include "hostpath-provisioner.labels" . | indent 4 }} --- apiVersion: rbac.authorization.k8s.io/v1 kind: Role metadata: name: hostpath-provisioner-operator + labels: +{{ include "hostpath-provisioner.labels" . | indent 4 }} rules: - apiGroups: - apps @@ -44,9 +48,11 @@ apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRoleBinding metadata: name: hostpath-provisioner-operator + labels: +{{ include "hostpath-provisioner.labels" . | indent 4 }} subjects: - kind: ServiceAccount - name: hostpath-provisioner-operator + name: {{ include "hostpath-provisioner.serviceAccountName" . }} namespace: hostpath-provisioner roleRef: kind: ClusterRole @@ -57,9 +63,11 @@ apiVersion: rbac.authorization.k8s.io/v1 kind: RoleBinding metadata: name: hostpath-provisioner-operator + labels: +{{ include "hostpath-provisioner.labels" . | indent 4 }} subjects: - kind: ServiceAccount - name: hostpath-provisioner-operator + name: {{ include "hostpath-provisioner.serviceAccountName" . }} namespace: hostpath-provisioner roleRef: kind: Role @@ -70,6 +78,8 @@ apiVersion: apps/v1 kind: Deployment metadata: name: hostpath-provisioner-operator + labels: +{{ include "hostpath-provisioner.labels" . | indent 4 }} spec: replicas: 1 selector: @@ -80,7 +90,7 @@ spec: labels: name: hostpath-provisioner-operator spec: - serviceAccountName: hostpath-provisioner-operator + serviceAccountName: {{ include "hostpath-provisioner.serviceAccountName" . }} containers: - name: hostpath-provisioner-operator # Replace this with the built image name diff --git a/charts/hostpath-provisioner/templates/hostpathprovisioner_cr.yaml b/charts/hostpath-provisioner/templates/hostpathprovisioner_cr.yaml index d57275a..d32a01b 100644 --- a/charts/hostpath-provisioner/templates/hostpathprovisioner_cr.yaml +++ b/charts/hostpath-provisioner/templates/hostpathprovisioner_cr.yaml @@ -2,6 +2,8 @@ apiVersion: hostpathprovisioner.kubevirt.io/v1beta1 kind: HostPathProvisioner metadata: name: hostpath-provisioner + labels: +{{ include "hostpath-provisioner.labels" . | indent 4 }} spec: imagePullPolicy: IfNotPresent pathConfig: diff --git a/charts/hostpath-provisioner/templates/storageclass-wffc.yaml b/charts/hostpath-provisioner/templates/storageclass-wffc.yaml index 2ea7cf5..b006574 100644 --- a/charts/hostpath-provisioner/templates/storageclass-wffc.yaml +++ b/charts/hostpath-provisioner/templates/storageclass-wffc.yaml @@ -2,6 +2,8 @@ apiVersion: storage.k8s.io/v1 kind: StorageClass metadata: name: hostpath-provisioner + labels: +{{ include "hostpath-provisioner.labels" . | indent 4 }} provisioner: kubevirt.io/hostpath-provisioner reclaimPolicy: Delete volumeBindingMode: WaitForFirstConsumer From b62833336d7be5e2ac0081bc60f13ce3ec8ff157 Mon Sep 17 00:00:00 2001 From: Kathryn Morgan Date: Sat, 1 Jan 2022 20:54:03 -0800 Subject: [PATCH 3/3] Update Chart.yaml --- charts/hostpath-provisioner/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/hostpath-provisioner/Chart.yaml b/charts/hostpath-provisioner/Chart.yaml index 8d2d6ed..641a480 100644 --- a/charts/hostpath-provisioner/Chart.yaml +++ b/charts/hostpath-provisioner/Chart.yaml @@ -1,4 +1,4 @@ -version: 0.0.3 +version: 0.0.4 apiVersion: v2 name: hostpath-provisioner description: Kubevirt Hostpath Provisioner Operatore Helm Chart