From f9c37830addf41c0546f09846f056ba623a03e23 Mon Sep 17 00:00:00 2001 From: Moustafa Nawar Date: Tue, 11 Oct 2022 10:06:41 +0200 Subject: [PATCH 1/4] add helm ignore --- .helmignore | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .helmignore diff --git a/.helmignore b/.helmignore new file mode 100644 index 0000000..f4b1198 --- /dev/null +++ b/.helmignore @@ -0,0 +1,2 @@ +.git +.github From 4e1a0425facee9527014b68ba603b4e1c6440781 Mon Sep 17 00:00:00 2001 From: Moustafa Nawar Date: Tue, 11 Oct 2022 10:07:10 +0200 Subject: [PATCH 2/4] use release name for configmap name --- templates/configmap.yaml | 2 +- templates/statefulset.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/configmap.yaml b/templates/configmap.yaml index 2006d0a..27c0555 100644 --- a/templates/configmap.yaml +++ b/templates/configmap.yaml @@ -1,7 +1,7 @@ apiVersion: v1 kind: ConfigMap metadata: - name: qdrant-config + name: {{ include "qdrant.fullname" . }} data: initialize.sh: | #!/bin/sh diff --git a/templates/statefulset.yaml b/templates/statefulset.yaml index 3ad69f8..a777f2e 100644 --- a/templates/statefulset.yaml +++ b/templates/statefulset.yaml @@ -100,7 +100,7 @@ spec: volumes: - name: qdrant-config configMap: - name: qdrant-config + name: {{ include "qdrant.fullname" . }} defaultMode: 0755 volumeClaimTemplates: From e71fb513f430d3eb98c43328a5379515771070b2 Mon Sep 17 00:00:00 2001 From: Moustafa Nawar Date: Tue, 11 Oct 2022 10:07:22 +0200 Subject: [PATCH 3/4] bump chart version --- Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Chart.yaml b/Chart.yaml index da6eed1..9128316 100644 --- a/Chart.yaml +++ b/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.2.3 +version: 0.2.4 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to From 7e775bccd87ca388b007d2ff16a14629fdde99d0 Mon Sep 17 00:00:00 2001 From: Moustafa Nawar Date: Tue, 11 Oct 2022 10:08:20 +0200 Subject: [PATCH 4/4] closes #12