diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index e90c592..e7cd05a 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -3,8 +3,7 @@ name: Docker build and push on: push: branches: - - 'master' - - 'releases/v*' + - '*' tags: - 'v*' pull_request: diff --git a/charts/lustre-csi-driver/values.yaml b/charts/lustre-csi-driver/values.yaml index 41fffc8..dc0ad94 100644 --- a/charts/lustre-csi-driver/values.yaml +++ b/charts/lustre-csi-driver/values.yaml @@ -4,4 +4,4 @@ deployment: image: "ghcr.io/hewlettpackard/lustre-csi-driver" - tag: "0.0.4" + tag: "0.0.5" diff --git a/deploy/kubernetes/base/kustomization.yaml b/deploy/kubernetes/base/kustomization.yaml index 0774e25..c8e631e 100644 --- a/deploy/kubernetes/base/kustomization.yaml +++ b/deploy/kubernetes/base/kustomization.yaml @@ -1,11 +1,16 @@ apiVersion: kustomize.config.k8s.io/v1beta1 kind: Kustomization namespace: lustre-csi-system + resources: - namespace.yaml - driver.yaml - plugin.yaml + +#patchesStrategicMerge: +#- plugin_imagepullsecret_patch.yaml + images: - name: controller newName: ghcr.io/hewlettpackard/lustre-csi-driver - newTag: 0.0.4 + newTag: 0.0.5 diff --git a/deploy/kubernetes/base/plugin_imagepullsecret_patch.yaml b/deploy/kubernetes/base/plugin_imagepullsecret_patch.yaml new file mode 100644 index 0000000..68aecd1 --- /dev/null +++ b/deploy/kubernetes/base/plugin_imagepullsecret_patch.yaml @@ -0,0 +1,10 @@ +apiVersion: apps/v1 +kind: DaemonSet +metadata: + name: lustre-csi-node +spec: + template: + spec: + imagePullSecrets: + - name: name_of_secret +