From a32408b218be0c45e54986a8807e5ad162a80a6d Mon Sep 17 00:00:00 2001 From: Amit Sagtani Date: Sat, 21 Jan 2023 16:37:54 +0530 Subject: [PATCH 1/7] add postgresql 13 chart --- charts/postgresql13-external/Chart.yaml | 4 +++ charts/postgresql13-external/README.md | 19 +++++++++++++ charts/postgresql13-external/pv_pvc.yaml | 28 +++++++++++++++++++ .../postgresql13-external/requirements.yaml | 4 +++ charts/postgresql13-external/values.yaml | 13 +++++++++ 5 files changed, 68 insertions(+) create mode 100644 charts/postgresql13-external/Chart.yaml create mode 100644 charts/postgresql13-external/README.md create mode 100644 charts/postgresql13-external/pv_pvc.yaml create mode 100644 charts/postgresql13-external/requirements.yaml create mode 100644 charts/postgresql13-external/values.yaml diff --git a/charts/postgresql13-external/Chart.yaml b/charts/postgresql13-external/Chart.yaml new file mode 100644 index 0000000000..1a1ca47924 --- /dev/null +++ b/charts/postgresql13-external/Chart.yaml @@ -0,0 +1,4 @@ +apiVersion: v1 +description: A Helm chart for postgresql13 +name: postgres +version: 0.0.42 diff --git a/charts/postgresql13-external/README.md b/charts/postgresql13-external/README.md new file mode 100644 index 0000000000..8c5ef8f738 --- /dev/null +++ b/charts/postgresql13-external/README.md @@ -0,0 +1,19 @@ +This is the PostgreSQL 13 chart from Bitnami. + +To deploy the chart, first we need to create a persistent volume and persistent volume claim which will be used by the Postgres deployment. + +To create the pv and pvc, run +``` +kubectl create -f pv_pvc.yaml +``` + +You can edit the storage size in the pv_pvc.yaml file. + +Now configure the values.yaml file to create the database, username, password and other configuration. + +Set of all configuration variables can be found here - https://github.com/bitnami/charts/blob/main/bitnami/postgresql/values.yaml + +Now, deploy the helm chart - +``` +helm install postgresql charts/postgresql13-external --values charts/postgresql13-external/values.yaml +``` diff --git a/charts/postgresql13-external/pv_pvc.yaml b/charts/postgresql13-external/pv_pvc.yaml new file mode 100644 index 0000000000..4be6471c12 --- /dev/null +++ b/charts/postgresql13-external/pv_pvc.yaml @@ -0,0 +1,28 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: postgresql-pv + labels: + type: local +spec: + storageClassName: manual + capacity: + storage: 10Gi + accessModes: + - ReadWriteOnce + hostPath: + path: "/mnt/data" + +--- + +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: postgresql-pv-claim +spec: + storageClassName: manual + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 10Gi diff --git a/charts/postgresql13-external/requirements.yaml b/charts/postgresql13-external/requirements.yaml new file mode 100644 index 0000000000..c1d2a1f639 --- /dev/null +++ b/charts/postgresql13-external/requirements.yaml @@ -0,0 +1,4 @@ +dependencies: +- name: postgresql + version: 11.9.8 + repository: https://charts.bitnami.com/bitnami diff --git a/charts/postgresql13-external/values.yaml b/charts/postgresql13-external/values.yaml new file mode 100644 index 0000000000..490278fea8 --- /dev/null +++ b/charts/postgresql13-external/values.yaml @@ -0,0 +1,13 @@ +global: + postgresql: + enabled: true + auth: + postgresPassword: externalPostgresql + username: externalPostgresql + password: externalPostgresql + database: externalPostgresql +primary: + persistence: + existingClaim: postgresql-pv-claim +volumePermissions: + enabled: true From 4a39a1f0a8ea517628e737111a51d5a65faef51a Mon Sep 17 00:00:00 2001 From: Amit Sagtani Date: Tue, 24 Jan 2023 14:34:46 +0530 Subject: [PATCH 2/7] add statefulset --- .../Chart.yaml | 2 +- charts/postgresql-external/README.md | 8 +++++ .../templates/postgres-configmap.yaml | 10 ++++++ .../templates/postgres-service.yaml | 12 +++++++ .../templates/postgres-statefulset.yaml | 31 +++++++++++++++++++ .../templates/postgres-storage.yaml} | 21 +++++++------ charts/postgresql-external/values.yaml | 6 ++++ charts/postgresql13-external/README.md | 19 ------------ .../postgresql13-external/requirements.yaml | 4 --- charts/postgresql13-external/values.yaml | 13 -------- 10 files changed, 79 insertions(+), 47 deletions(-) rename charts/{postgresql13-external => postgresql-external}/Chart.yaml (51%) create mode 100644 charts/postgresql-external/README.md create mode 100644 charts/postgresql-external/templates/postgres-configmap.yaml create mode 100644 charts/postgresql-external/templates/postgres-service.yaml create mode 100644 charts/postgresql-external/templates/postgres-statefulset.yaml rename charts/{postgresql13-external/pv_pvc.yaml => postgresql-external/templates/postgres-storage.yaml} (57%) create mode 100644 charts/postgresql-external/values.yaml delete mode 100644 charts/postgresql13-external/README.md delete mode 100644 charts/postgresql13-external/requirements.yaml delete mode 100644 charts/postgresql13-external/values.yaml diff --git a/charts/postgresql13-external/Chart.yaml b/charts/postgresql-external/Chart.yaml similarity index 51% rename from charts/postgresql13-external/Chart.yaml rename to charts/postgresql-external/Chart.yaml index 1a1ca47924..e8c74b384b 100644 --- a/charts/postgresql13-external/Chart.yaml +++ b/charts/postgresql-external/Chart.yaml @@ -1,4 +1,4 @@ apiVersion: v1 -description: A Helm chart for postgresql13 +description: A Helm chart for postgresql name: postgres version: 0.0.42 diff --git a/charts/postgresql-external/README.md b/charts/postgresql-external/README.md new file mode 100644 index 0000000000..3f4848fdc3 --- /dev/null +++ b/charts/postgresql-external/README.md @@ -0,0 +1,8 @@ +This is the PostgreSQL chart. + +Configure the values.yaml file to create the database, username, password and other configuration. + +To deploy the helm chart - +``` +helm install postgresql charts/postgresql-external --values charts/postgresql-external/values.yaml +``` diff --git a/charts/postgresql-external/templates/postgres-configmap.yaml b/charts/postgresql-external/templates/postgres-configmap.yaml new file mode 100644 index 0000000000..0b0e64d66b --- /dev/null +++ b/charts/postgresql-external/templates/postgres-configmap.yaml @@ -0,0 +1,10 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: postgres-config + labels: + app: postgres +data: + POSTGRES_DB: {{ .Values.postgresDb }} + POSTGRES_USER: {{ .Values.postgresUser }} + POSTGRES_PASSWORD: {{ .Values.postgresPassword }} diff --git a/charts/postgresql-external/templates/postgres-service.yaml b/charts/postgresql-external/templates/postgres-service.yaml new file mode 100644 index 0000000000..114bdbb3e2 --- /dev/null +++ b/charts/postgresql-external/templates/postgres-service.yaml @@ -0,0 +1,12 @@ +apiVersion: v1 +kind: Service +metadata: + name: postgres + labels: + app: postgres +spec: + type: NodePort + ports: + - port: 5432 + selector: + app: postgres diff --git a/charts/postgresql-external/templates/postgres-statefulset.yaml b/charts/postgresql-external/templates/postgres-statefulset.yaml new file mode 100644 index 0000000000..7beadeff1c --- /dev/null +++ b/charts/postgresql-external/templates/postgres-statefulset.yaml @@ -0,0 +1,31 @@ +apiVersion: apps/v1 +kind: StatefulSet +metadata: + name: postgres +spec: + replicas: {{ .Values.replicas }} + serviceName: postgres + selector: + matchLabels: + app: postgres + template: + metadata: + labels: + app: postgres + spec: + containers: + - name: postgres + image: {{ .Values.postgresImage }} + imagePullPolicy: "IfNotPresent" + ports: + - containerPort: 5432 + envFrom: + - configMapRef: + name: postgres-config + volumeMounts: + - mountPath: /var/lib/postgresql/data + name: postgredb + volumes: + - name: postgredb + persistentVolumeClaim: + claimName: postgres-pv-claim diff --git a/charts/postgresql13-external/pv_pvc.yaml b/charts/postgresql-external/templates/postgres-storage.yaml similarity index 57% rename from charts/postgresql13-external/pv_pvc.yaml rename to charts/postgresql-external/templates/postgres-storage.yaml index 4be6471c12..4961724632 100644 --- a/charts/postgresql13-external/pv_pvc.yaml +++ b/charts/postgresql-external/templates/postgres-storage.yaml @@ -1,28 +1,29 @@ -apiVersion: v1 kind: PersistentVolume +apiVersion: v1 metadata: - name: postgresql-pv + name: postgres-pv-volume labels: type: local + app: postgres spec: storageClassName: manual capacity: - storage: 10Gi + storage: {{ .Values.storageSize }} accessModes: - - ReadWriteOnce + - ReadWriteMany hostPath: path: "/mnt/data" - --- - -apiVersion: v1 kind: PersistentVolumeClaim +apiVersion: v1 metadata: - name: postgresql-pv-claim + name: postgres-pv-claim + labels: + app: postgres spec: storageClassName: manual accessModes: - - ReadWriteOnce + - ReadWriteMany resources: requests: - storage: 10Gi + storage: {{ .Values.storageSize }} diff --git a/charts/postgresql-external/values.yaml b/charts/postgresql-external/values.yaml new file mode 100644 index 0000000000..e10db40e94 --- /dev/null +++ b/charts/postgresql-external/values.yaml @@ -0,0 +1,6 @@ +replicas: 3 +postgresImage: postgres:13 +storageSize: 15Gi +postgresDb: externalPostgresql +postgresUser: externalPostgresql +postgresPassword: externalPostgresql diff --git a/charts/postgresql13-external/README.md b/charts/postgresql13-external/README.md deleted file mode 100644 index 8c5ef8f738..0000000000 --- a/charts/postgresql13-external/README.md +++ /dev/null @@ -1,19 +0,0 @@ -This is the PostgreSQL 13 chart from Bitnami. - -To deploy the chart, first we need to create a persistent volume and persistent volume claim which will be used by the Postgres deployment. - -To create the pv and pvc, run -``` -kubectl create -f pv_pvc.yaml -``` - -You can edit the storage size in the pv_pvc.yaml file. - -Now configure the values.yaml file to create the database, username, password and other configuration. - -Set of all configuration variables can be found here - https://github.com/bitnami/charts/blob/main/bitnami/postgresql/values.yaml - -Now, deploy the helm chart - -``` -helm install postgresql charts/postgresql13-external --values charts/postgresql13-external/values.yaml -``` diff --git a/charts/postgresql13-external/requirements.yaml b/charts/postgresql13-external/requirements.yaml deleted file mode 100644 index c1d2a1f639..0000000000 --- a/charts/postgresql13-external/requirements.yaml +++ /dev/null @@ -1,4 +0,0 @@ -dependencies: -- name: postgresql - version: 11.9.8 - repository: https://charts.bitnami.com/bitnami diff --git a/charts/postgresql13-external/values.yaml b/charts/postgresql13-external/values.yaml deleted file mode 100644 index 490278fea8..0000000000 --- a/charts/postgresql13-external/values.yaml +++ /dev/null @@ -1,13 +0,0 @@ -global: - postgresql: - enabled: true - auth: - postgresPassword: externalPostgresql - username: externalPostgresql - password: externalPostgresql - database: externalPostgresql -primary: - persistence: - existingClaim: postgresql-pv-claim -volumePermissions: - enabled: true From f47db8eaeebc6a6c2f34bbdc197284600c9d8147 Mon Sep 17 00:00:00 2001 From: Amit Sagtani Date: Tue, 24 Jan 2023 14:50:26 +0530 Subject: [PATCH 3/7] add volume mount path var in values.yaml --- charts/postgresql-external/templates/postgres-statefulset.yaml | 2 +- charts/postgresql-external/values.yaml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/charts/postgresql-external/templates/postgres-statefulset.yaml b/charts/postgresql-external/templates/postgres-statefulset.yaml index 7beadeff1c..e92bb6120c 100644 --- a/charts/postgresql-external/templates/postgres-statefulset.yaml +++ b/charts/postgresql-external/templates/postgres-statefulset.yaml @@ -23,7 +23,7 @@ spec: - configMapRef: name: postgres-config volumeMounts: - - mountPath: /var/lib/postgresql/data + - mountPath: {{ .Values.containerVolumeMountPath }} name: postgredb volumes: - name: postgredb diff --git a/charts/postgresql-external/values.yaml b/charts/postgresql-external/values.yaml index e10db40e94..4ace97e9ce 100644 --- a/charts/postgresql-external/values.yaml +++ b/charts/postgresql-external/values.yaml @@ -4,3 +4,4 @@ storageSize: 15Gi postgresDb: externalPostgresql postgresUser: externalPostgresql postgresPassword: externalPostgresql +containerVolumeMountPath: /var/lib/postgresql/data From 9c726c4116229b3de987eaf50c85fa5eff2f99b8 Mon Sep 17 00:00:00 2001 From: Amit Sagtani Date: Tue, 14 Feb 2023 13:22:18 +0530 Subject: [PATCH 4/7] replace with bitnami's chart --- charts/postgresql-external/README.md | 8 ---- .../templates/postgres-configmap.yaml | 10 ----- .../templates/postgres-service.yaml | 12 ----- .../templates/postgres-statefulset.yaml | 31 ------------- .../templates/postgres-storage.yaml | 29 ------------ charts/postgresql-external/values.yaml | 7 --- .../Chart.yaml | 0 charts/postgresql/README.md | 44 +++++++++++++++++++ charts/postgresql/requirements.yaml | 4 ++ charts/postgresql/values.yaml | 14 ++++++ 10 files changed, 62 insertions(+), 97 deletions(-) delete mode 100644 charts/postgresql-external/README.md delete mode 100644 charts/postgresql-external/templates/postgres-configmap.yaml delete mode 100644 charts/postgresql-external/templates/postgres-service.yaml delete mode 100644 charts/postgresql-external/templates/postgres-statefulset.yaml delete mode 100644 charts/postgresql-external/templates/postgres-storage.yaml delete mode 100644 charts/postgresql-external/values.yaml rename charts/{postgresql-external => postgresql}/Chart.yaml (100%) create mode 100644 charts/postgresql/README.md create mode 100644 charts/postgresql/requirements.yaml create mode 100644 charts/postgresql/values.yaml diff --git a/charts/postgresql-external/README.md b/charts/postgresql-external/README.md deleted file mode 100644 index 3f4848fdc3..0000000000 --- a/charts/postgresql-external/README.md +++ /dev/null @@ -1,8 +0,0 @@ -This is the PostgreSQL chart. - -Configure the values.yaml file to create the database, username, password and other configuration. - -To deploy the helm chart - -``` -helm install postgresql charts/postgresql-external --values charts/postgresql-external/values.yaml -``` diff --git a/charts/postgresql-external/templates/postgres-configmap.yaml b/charts/postgresql-external/templates/postgres-configmap.yaml deleted file mode 100644 index 0b0e64d66b..0000000000 --- a/charts/postgresql-external/templates/postgres-configmap.yaml +++ /dev/null @@ -1,10 +0,0 @@ -apiVersion: v1 -kind: ConfigMap -metadata: - name: postgres-config - labels: - app: postgres -data: - POSTGRES_DB: {{ .Values.postgresDb }} - POSTGRES_USER: {{ .Values.postgresUser }} - POSTGRES_PASSWORD: {{ .Values.postgresPassword }} diff --git a/charts/postgresql-external/templates/postgres-service.yaml b/charts/postgresql-external/templates/postgres-service.yaml deleted file mode 100644 index 114bdbb3e2..0000000000 --- a/charts/postgresql-external/templates/postgres-service.yaml +++ /dev/null @@ -1,12 +0,0 @@ -apiVersion: v1 -kind: Service -metadata: - name: postgres - labels: - app: postgres -spec: - type: NodePort - ports: - - port: 5432 - selector: - app: postgres diff --git a/charts/postgresql-external/templates/postgres-statefulset.yaml b/charts/postgresql-external/templates/postgres-statefulset.yaml deleted file mode 100644 index e92bb6120c..0000000000 --- a/charts/postgresql-external/templates/postgres-statefulset.yaml +++ /dev/null @@ -1,31 +0,0 @@ -apiVersion: apps/v1 -kind: StatefulSet -metadata: - name: postgres -spec: - replicas: {{ .Values.replicas }} - serviceName: postgres - selector: - matchLabels: - app: postgres - template: - metadata: - labels: - app: postgres - spec: - containers: - - name: postgres - image: {{ .Values.postgresImage }} - imagePullPolicy: "IfNotPresent" - ports: - - containerPort: 5432 - envFrom: - - configMapRef: - name: postgres-config - volumeMounts: - - mountPath: {{ .Values.containerVolumeMountPath }} - name: postgredb - volumes: - - name: postgredb - persistentVolumeClaim: - claimName: postgres-pv-claim diff --git a/charts/postgresql-external/templates/postgres-storage.yaml b/charts/postgresql-external/templates/postgres-storage.yaml deleted file mode 100644 index 4961724632..0000000000 --- a/charts/postgresql-external/templates/postgres-storage.yaml +++ /dev/null @@ -1,29 +0,0 @@ -kind: PersistentVolume -apiVersion: v1 -metadata: - name: postgres-pv-volume - labels: - type: local - app: postgres -spec: - storageClassName: manual - capacity: - storage: {{ .Values.storageSize }} - accessModes: - - ReadWriteMany - hostPath: - path: "/mnt/data" ---- -kind: PersistentVolumeClaim -apiVersion: v1 -metadata: - name: postgres-pv-claim - labels: - app: postgres -spec: - storageClassName: manual - accessModes: - - ReadWriteMany - resources: - requests: - storage: {{ .Values.storageSize }} diff --git a/charts/postgresql-external/values.yaml b/charts/postgresql-external/values.yaml deleted file mode 100644 index 4ace97e9ce..0000000000 --- a/charts/postgresql-external/values.yaml +++ /dev/null @@ -1,7 +0,0 @@ -replicas: 3 -postgresImage: postgres:13 -storageSize: 15Gi -postgresDb: externalPostgresql -postgresUser: externalPostgresql -postgresPassword: externalPostgresql -containerVolumeMountPath: /var/lib/postgresql/data diff --git a/charts/postgresql-external/Chart.yaml b/charts/postgresql/Chart.yaml similarity index 100% rename from charts/postgresql-external/Chart.yaml rename to charts/postgresql/Chart.yaml diff --git a/charts/postgresql/README.md b/charts/postgresql/README.md new file mode 100644 index 0000000000..398f64d95e --- /dev/null +++ b/charts/postgresql/README.md @@ -0,0 +1,44 @@ +This is the PostgreSQL Bitnami chart. + +Configure the values.yaml file to create the database, username, password and other configuration. +List of parameters available - https://artifacthub.io/packages/helm/bitnami/postgresql#parameters + +For persisting data, you can configure your choice of storageClass with your provisioner. + +Or, create a storage class and of PVs based on no. of replicas with no provisioner - +``` +apiVersion: storage.k8s.io/v1 +kind: StorageClass +metadata: + name: local-storage +provisioner: kubernetes.io/no-provisioner +volumeBindingMode: WaitForFirstConsumer +reclaimPolicy: Retain +allowVolumeExpansion: true + +--- + +Prepare volume on host and give right permissions - +mkdir -p /data/local-storage +chmod -R 775 /data/local-storage + +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: local-pv +spec: + capacity: + storage: 10Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + storageClassName: local-storage + hostPath: + path: /data/local-storage +``` + +To deploy the helm chart - +``` +helm install postgresql charts/postgresql --values charts/postgresql/values.yaml +``` diff --git a/charts/postgresql/requirements.yaml b/charts/postgresql/requirements.yaml new file mode 100644 index 0000000000..c1d2a1f639 --- /dev/null +++ b/charts/postgresql/requirements.yaml @@ -0,0 +1,4 @@ +dependencies: +- name: postgresql + version: 11.9.8 + repository: https://charts.bitnami.com/bitnami diff --git a/charts/postgresql/values.yaml b/charts/postgresql/values.yaml new file mode 100644 index 0000000000..c22814c476 --- /dev/null +++ b/charts/postgresql/values.yaml @@ -0,0 +1,14 @@ +architecture: replication +global: + storageClass: local-storage +auth: + replicationPassword: externalPostgresql + postgresPassword: externalPostgresql + username: externalPostgresql + password: externalPostgresql + database: externalPostgresql +readReplicas: + name: read + replicaCount: 2 +replication: + numSynchronousReplicas: 2 From 8e11d4330be41b539fc7aae51d161519a902bc64 Mon Sep 17 00:00:00 2001 From: Amit Sagtani Date: Mon, 20 Feb 2023 14:15:17 +0530 Subject: [PATCH 5/7] update the values.yaml and README --- charts/postgresql/Chart.yaml | 4 ++-- charts/postgresql/README.md | 42 +---------------------------------- charts/postgresql/values.yaml | 19 +++++----------- 3 files changed, 8 insertions(+), 57 deletions(-) diff --git a/charts/postgresql/Chart.yaml b/charts/postgresql/Chart.yaml index e8c74b384b..bff81e0d6f 100644 --- a/charts/postgresql/Chart.yaml +++ b/charts/postgresql/Chart.yaml @@ -1,4 +1,4 @@ apiVersion: v1 -description: A Helm chart for postgresql -name: postgres +description: Wrapper chart for bitnami/postgresql +name: postgresql version: 0.0.42 diff --git a/charts/postgresql/README.md b/charts/postgresql/README.md index 398f64d95e..84f4ee02a5 100644 --- a/charts/postgresql/README.md +++ b/charts/postgresql/README.md @@ -1,44 +1,4 @@ -This is the PostgreSQL Bitnami chart. +This is the wrapper for PostgreSQL Bitnami chart. Configure the values.yaml file to create the database, username, password and other configuration. List of parameters available - https://artifacthub.io/packages/helm/bitnami/postgresql#parameters - -For persisting data, you can configure your choice of storageClass with your provisioner. - -Or, create a storage class and of PVs based on no. of replicas with no provisioner - -``` -apiVersion: storage.k8s.io/v1 -kind: StorageClass -metadata: - name: local-storage -provisioner: kubernetes.io/no-provisioner -volumeBindingMode: WaitForFirstConsumer -reclaimPolicy: Retain -allowVolumeExpansion: true - ---- - -Prepare volume on host and give right permissions - -mkdir -p /data/local-storage -chmod -R 775 /data/local-storage - ---- -apiVersion: v1 -kind: PersistentVolume -metadata: - name: local-pv -spec: - capacity: - storage: 10Gi - accessModes: - - ReadWriteMany - persistentVolumeReclaimPolicy: Retain - storageClassName: local-storage - hostPath: - path: /data/local-storage -``` - -To deploy the helm chart - -``` -helm install postgresql charts/postgresql --values charts/postgresql/values.yaml -``` diff --git a/charts/postgresql/values.yaml b/charts/postgresql/values.yaml index c22814c476..fa2230183f 100644 --- a/charts/postgresql/values.yaml +++ b/charts/postgresql/values.yaml @@ -1,14 +1,5 @@ -architecture: replication -global: - storageClass: local-storage -auth: - replicationPassword: externalPostgresql - postgresPassword: externalPostgresql - username: externalPostgresql - password: externalPostgresql - database: externalPostgresql -readReplicas: - name: read - replicaCount: 2 -replication: - numSynchronousReplicas: 2 +# Configure the parent postgresql chart +postgresql: + fullnameOverride: postgresql + volumePermissions: + enabled: true From 5ca0d4958d45f4b280cc5979c478d5f1f0d63409 Mon Sep 17 00:00:00 2001 From: Amit Sagtani Date: Mon, 20 Feb 2023 14:17:58 +0530 Subject: [PATCH 6/7] add changelog message --- changelog.d/5-internal/pr-3012 | 1 + 1 file changed, 1 insertion(+) create mode 100644 changelog.d/5-internal/pr-3012 diff --git a/changelog.d/5-internal/pr-3012 b/changelog.d/5-internal/pr-3012 new file mode 100644 index 0000000000..f969c52352 --- /dev/null +++ b/changelog.d/5-internal/pr-3012 @@ -0,0 +1 @@ +Add wrapper for bitnami/postgresql chart. From 4ef745e272b6174d4996b79d4b10b9044f6e3e70 Mon Sep 17 00:00:00 2001 From: jschaul Date: Mon, 20 Feb 2023 12:02:28 +0100 Subject: [PATCH 7/7] add chart to makefile so it also gets released --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9b44c21278..510e8bf348 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ fake-aws fake-aws-s3 fake-aws-sqs aws-ingress fluent-bit kibana backoffice \ calling-test demo-smtp elasticsearch-curator elasticsearch-external \ elasticsearch-ephemeral minio-external cassandra-external \ nginx-ingress-controller nginx-ingress-services reaper sftd restund coturn \ -inbucket k8ssandra-test-cluster +inbucket k8ssandra-test-cluster postgresql KIND_CLUSTER_NAME := wire-server package ?= all