diff --git a/charts/prose/Chart.yaml b/charts/prose/Chart.yaml index d7d0ca8d..2cc2f422 100644 --- a/charts/prose/Chart.yaml +++ b/charts/prose/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.0.9 +version: 0.0.10 # 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 diff --git a/charts/prose/templates/opa-deployment.yaml b/charts/prose/templates/opa-deployment.yaml index 9879a82a..c6c9e40e 100644 --- a/charts/prose/templates/opa-deployment.yaml +++ b/charts/prose/templates/opa-deployment.yaml @@ -1,7 +1,7 @@ apiVersion: apps/v1 kind: Deployment metadata: - name: {{ include "charts.fullname" . }} + name: {{ .Values.opa.name }} labels: {{- include "charts.labels" . | nindent 4 }} spec: diff --git a/charts/prose/templates/opa-service.yaml b/charts/prose/templates/opa-service.yaml index 4ab328cb..af206332 100644 --- a/charts/prose/templates/opa-service.yaml +++ b/charts/prose/templates/opa-service.yaml @@ -1,7 +1,7 @@ apiVersion: v1 kind: Service metadata: - name: {{ include "charts.fullname" . }} + name: {{ .Values.opa.name }} labels: {{- include "charts.labels" . | nindent 4 }} spec: diff --git a/charts/prose/templates/presidio-deployment.yaml b/charts/prose/templates/presidio-deployment.yaml index 79b162ca..15a613a7 100644 --- a/charts/prose/templates/presidio-deployment.yaml +++ b/charts/prose/templates/presidio-deployment.yaml @@ -1,7 +1,7 @@ apiVersion: apps/v1 kind: Deployment metadata: - name: {{ include "charts.fullname" . }} + name: {{ .Values.presidio.name }} labels: {{- include "charts.labels" . | nindent 4 }} spec: diff --git a/charts/prose/templates/presidio-service.yaml b/charts/prose/templates/presidio-service.yaml index aa545fa2..e4846541 100644 --- a/charts/prose/templates/presidio-service.yaml +++ b/charts/prose/templates/presidio-service.yaml @@ -1,7 +1,7 @@ apiVersion: v1 kind: Service metadata: - name: {{ include "charts.fullname" . }} + name: {{ .Values.presidio.name }} labels: {{- include "charts.labels" . | nindent 4 }} spec: diff --git a/charts/prose/values.yaml b/charts/prose/values.yaml index 4c3c2d1e..524aaafb 100644 --- a/charts/prose/values.yaml +++ b/charts/prose/values.yaml @@ -5,6 +5,7 @@ replicaCount: 1 opa: + name: opa image: repository: ghcr.io/dettanym/prose-opa pullPolicy: IfNotPresent @@ -15,6 +16,7 @@ opa: port: 8080 presidio: + name: presidio image: repository: ghcr.io/dettanym/prose-presidio pullPolicy: IfNotPresent