Skip to content

Commit

Permalink
fix: linting, remove appVersion and use image tag instead
Browse files Browse the repository at this point in the history
  • Loading branch information
tjorbo committed Mar 13, 2024
1 parent 8662438 commit 483a9c9
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 10 deletions.
1 change: 0 additions & 1 deletion terminfinder-chart/charts/backend/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ name: terminfinder-backend
description: Web Backend für die Erstellung von Terminumfragen und die Beantwortung dieser.
type: application
version: 0.0.0
appVersion: "1.0.10"

dependencies:
- name: postgresql
Expand Down
5 changes: 3 additions & 2 deletions terminfinder-chart/charts/backend/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ global:
username: terminfinder
database: terminfinder
existingSecret: "" # if not set, default: "{{ Release.Name }}-postgres"
secretKeys:
userPasswordKey: "terminfinder"

service:
name: "" # if not set, default: "{{ Release.Name }}-postgres"
Expand All @@ -19,8 +21,7 @@ replicaCount: 1
image:
repository: registry.opencode.de/dataport/terminfinder/terminfinder-backend
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: ""
tag: "0.1.0"

imagePullSecrets: [ ]
nameOverride: ""
Expand Down
1 change: 0 additions & 1 deletion terminfinder-chart/charts/frontend/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,3 @@ name: terminfinder-frontend
description: Webanwendung für die Erstellung von Terminumfragen und die Beantwortung dieser.
type: application
version: 0.0.0
appVersion: "3.0.2"
8 changes: 4 additions & 4 deletions terminfinder-chart/charts/frontend/templates/configMap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ kind: ConfigMap
metadata:
name: {{ .Release.Name }}-customer-config
data:
Anrede: {{ .Values.customerConfig.ADDRESSING }}
Sprache: {{ .Values.customerConfig.LOCALE }}
Titel: {{ .Values.customerConfig.TITLE }}
email: {{ .Values.customerConfig.EMAIL }}
Anrede: "{{ .Values.customerConfig.ADDRESSING }}"
Sprache: "{{ .Values.customerConfig.LOCALE }}"
Titel: "{{ .Values.customerConfig.TITLE }}"
email: "{{ .Values.customerConfig.EMAIL }}"
3 changes: 1 addition & 2 deletions terminfinder-chart/charts/frontend/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ replicaCount: 1 # Not HA for now!
image:
repository: registry.opencode.de/dataport/terminfinder/terminfinder-frontend
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: ""
tag: "0.1.0"

imagePullSecrets: [ ]
nameOverride: ""
Expand Down

0 comments on commit 483a9c9

Please sign in to comment.