Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Joatin committed Jan 9, 2025
1 parent 580dbba commit 7f631a9
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charts/ocpp-csms-server/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,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.1.32
version: 0.1.33

# 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
Expand Down
7 changes: 7 additions & 0 deletions charts/ocpp-csms-server/templates/ocpp-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,13 @@ spec:
fieldPath: status.podIP
- name: "NODE_ADDRESS"
value: "http://$(MY_POD_IP):{{ .Values.ocpp.service.apiPort }}"
{{- if .Values.ocpp.easee.masterPasswordSecret }}
- name: "EASEE_MASTER_PASSWORD"
valueFrom:
secretKeyRef:
name: {{ .Values.ocpp.easee.masterPasswordSecret }}
key: {{ .Values.ocpp.easee.masterPasswordSecretKey }}
{{- end }}
livenessProbe:
grpc:
port: {{ .Values.ocpp.service.apiPort }}
Expand Down
4 changes: 4 additions & 0 deletions charts/ocpp-csms-server/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ serviceAccount:

ocpp:

easee:
masterPasswordSecret: ""
masterPasswordSecretKey: "easee-master-password"

logLevel: info

postgres:
Expand Down

0 comments on commit 7f631a9

Please sign in to comment.