Skip to content

Commit deedc88

Browse files
kubaracekJonathan S. Katz
authored andcommitted
Several updates to Helm charts
This provides several updates to Helm charts to match commonly accepted conventions. It provide unique names for each of the jobs and wrap the description in quotes. Issue: #2390
1 parent 18f0796 commit deedc88

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

installers/helm/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v2
22
name: postgres-operator
3-
description: PGO: The Postgres Operator from Crunchy Data Helm Chart for Kubernetes
3+
description: 'PGO: The Postgres Operator from Crunchy Data Helm Chart for Kubernetes'
44
type: application
55
version: 0.1.0
66
appVersion: 4.5.2

installers/helm/templates/postgres-operator-install.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
apiVersion: batch/v1
44
kind: Job
55
metadata:
6-
name: pgo-deploy
6+
name: pgo-deploy-install
77
namespace: {{ .Release.Namespace }}
88
labels:
99
{{ include "postgres-operator.labels" . | indent 4 }}

installers/helm/templates/postgres-operator-uninstall.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
apiVersion: batch/v1
44
kind: Job
55
metadata:
6-
name: pgo-deploy
6+
name: pgo-deploy-uninstall
77
namespace: {{ .Release.Namespace }}
88
labels:
99
{{ include "postgres-operator.labels" . | indent 4 }}

installers/helm/templates/postgres-operator-upgrade.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
apiVersion: batch/v1
44
kind: Job
55
metadata:
6-
name: pgo-deploy
6+
name: pgo-deploy-upgrade
77
namespace: {{ .Release.Namespace }}
88
labels:
99
{{ include "postgres-operator.labels" . | indent 4 }}

0 commit comments

Comments
 (0)