From e1d70fcdd03c9f3233a0475208391ebc8d41344b Mon Sep 17 00:00:00 2001 From: Aaron Riedel Date: Sat, 26 Aug 2023 17:15:07 +0200 Subject: [PATCH 1/4] fix cluster snapshot service --- core-deployments.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/core-deployments.yaml b/core-deployments.yaml index 7856a75..788147b 100644 --- a/core-deployments.yaml +++ b/core-deployments.yaml @@ -60,7 +60,7 @@ spec: sources: - repoURL: https://charts.longhorn.io chart: longhorn - targetRevision: 1.4.3 + targetRevision: 1.4.3 # see Infos below, the CSI snapshotter needs to be updated too helm: releaseName: longhorn valueFiles: @@ -72,8 +72,11 @@ spec: targetRevision: HEAD path: longhorn - repoURL: https://github.com/kubernetes-csi/external-snapshotter.git - targetRevision: release-4.0 + targetRevision: v5.0.1 # <-- needs to be updated when longhorn version is changed. Find the correct version here: https://longhorn.io/docs/latest/snapshots-and-backups/csi-snapshot-support/csi-volume-snapshot-associated-with-longhorn-snapshot/ path: client/config/crd + - repoURL: https://github.com/kubernetes-csi/external-snapshotter.git + targetRevision: v5.0.1 # <-- needs to be updated when longhorn version is changed. Find the correct version here: https://longhorn.io/docs/latest/snapshots-and-backups/csi-snapshot-support/csi-volume-snapshot-associated-with-longhorn-snapshot/ + path: deploy/kubernetes/snapshot-controller destination: server: https://kubernetes.default.svc namespace: longhorn-system From b98205d787a8456963430747922964a970ed8cc3 Mon Sep 17 00:00:00 2001 From: Aaron Riedel Date: Sat, 26 Aug 2023 17:16:34 +0200 Subject: [PATCH 2/4] add vcluster values file --- vcluster/values.yaml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 vcluster/values.yaml diff --git a/vcluster/values.yaml b/vcluster/values.yaml new file mode 100644 index 0000000..949d5ff --- /dev/null +++ b/vcluster/values.yaml @@ -0,0 +1,3 @@ +sync: + ingresses: + enabled: true From 2593926615bb297541d85f85f4e0fd0bed9d699b Mon Sep 17 00:00:00 2001 From: Aaron Riedel Date: Sat, 26 Aug 2023 17:21:16 +0200 Subject: [PATCH 3/4] rename credentials file --- velero/{credentials => credentials.template} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename velero/{credentials => credentials.template} (100%) diff --git a/velero/credentials b/velero/credentials.template similarity index 100% rename from velero/credentials rename to velero/credentials.template From 068ed69afb20b1867d44173afdd3d7291abf84b0 Mon Sep 17 00:00:00 2001 From: Aaron Riedel Date: Sat, 26 Aug 2023 17:21:49 +0200 Subject: [PATCH 4/4] update gitignore --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index e8e0e9e..69100ef 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ **/secret.yaml -**/temp.yaml \ No newline at end of file +**/temp.yaml +**/credentials \ No newline at end of file