Skip to content

Commit

Permalink
fix(go): re-generate binding
Browse files Browse the repository at this point in the history
  • Loading branch information
oyyblin committed Dec 23, 2024
1 parent 6657864 commit a45b8f8
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
9 changes: 9 additions & 0 deletions charts/prover-service/templates/configmap.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: {{include "service.fullname" .}}
labels: {{- include "service.labels" . | nindent 4}}
data:
{{- with .Values.configMap }}
{{- toYaml . | nindent 2 }}
{{- end }}
2 changes: 2 additions & 0 deletions charts/prover-service/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ spec:
- containerPort: 4014
name: http-prometheus
envFrom:
- configMapRef:
name: {{ include "service.fullname" . }}
- secretRef:
name: {{ if .Values.useExistingSecrets }}{{ .Values.existingSecretName }}{{ else }}{{ include "service.fullname" . }}{{ end }}
resources:
Expand Down
2 changes: 2 additions & 0 deletions charts/prover-service/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,5 @@ existingSecretName: ""
# Only used if useExistingSecrets is false
secrets:
privateKey: ""

configMap: {}

0 comments on commit a45b8f8

Please sign in to comment.