Skip to content

Commit

Permalink
Merge pull request #18 from cloud-pi-native/fix/console-chart-templates
Browse files Browse the repository at this point in the history
fix: 🐛 console chart templates
  • Loading branch information
this-is-tobi authored May 23, 2024
2 parents 5b28a37 + 378417d commit 4bb6b00
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion charts/dso-console/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: cpn-console
description: A Helm chart to deploy Cloud Pi Native Console
type: application
version: 1.2.0
version: 1.2.1
appVersion: 8.3.0
keywords: []
home: https://cloud-pi-native.fr
Expand Down
2 changes: 1 addition & 1 deletion charts/dso-console/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# cpn-console

![Version: 1.2.0](https://img.shields.io/badge/Version-1.2.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 8.3.0](https://img.shields.io/badge/AppVersion-8.3.0-informational?style=flat-square)
![Version: 1.2.1](https://img.shields.io/badge/Version-1.2.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 8.3.0](https://img.shields.io/badge/AppVersion-8.3.0-informational?style=flat-square)

A Helm chart to deploy Cloud Pi Native Console

Expand Down
4 changes: 2 additions & 2 deletions charts/dso-console/templates/client/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ spec:
{{- toYaml .Values.client.podSecurityContext | nindent 8 }}
{{- if .Values.client.initContainers }}
initContainers:
{{- tpl(toYaml .Values.client.initContainers) . | nindent 8 }}
{{- tpl (toYaml .Values.client.initContainers) . | nindent 8 }}
{{- end }}
containers:
- name: client
Expand Down Expand Up @@ -110,7 +110,7 @@ spec:
mountPath: {{ $volumeMount.mountPath }}
{{- end }}
{{- if .Values.client.extraContainers }}
{{- tpl(toYaml .Values.client.extraContainers) . | nindent 8 }}
{{- tpl (toYaml .Values.client.extraContainers) . | nindent 8 }}
{{- end }}
{{- with .Values.client.nodeSelector }}
nodeSelector:
Expand Down
2 changes: 1 addition & 1 deletion charts/dso-console/templates/cnpg/scheduled-backup.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ metadata:
labels:
{{- include "cpnConsole.common.labels" . | nindent 4 }}
spec:
schedule: "{{ dsc.cnpg.backup.cron }}"
schedule: {{ .Values.cnpg.backup.cron }}
backupOwnerReference: self
cluster:
name: {{ include "cpnConsole.fullname" . }}-pg-cluster
Expand Down
4 changes: 2 additions & 2 deletions charts/dso-console/templates/server/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ spec:
mountPath: /plugins
{{- end }}
{{- if .Values.server.initContainers }}
{{- tpl(toYaml .Values.server.initContainers) . | nindent 8 }}
{{- tpl (toYaml .Values.server.initContainers) . | nindent 8 }}
{{- end }}
{{- end }}
containers:
Expand Down Expand Up @@ -134,7 +134,7 @@ spec:
mountPath: {{ $volumeMount.mountPath }}
{{- end }}
{{- if .Values.server.extraContainers }}
{{- tpl(toYaml .Values.server.extraContainers) . | nindent 8 }}
{{- tpl (toYaml .Values.server.extraContainers) . | nindent 8 }}
{{- end }}
{{- with .Values.server.nodeSelector }}
nodeSelector:
Expand Down

0 comments on commit 4bb6b00

Please sign in to comment.