datahaven/deploy/charts/node/templates/keys.yaml
Steve Degosserie c3e6f1258b
feat: Deployment improvements & environmental overrides (#103)
This PR contains improvements to the DataHaven deployment
infrastructure:
1. Directory restructure: Moved from `deployment/` to `deploy/` (more
common for K8s / Helm -based deployment configs).
2. Added **local environment** support: updated CLI to support deploying
to a local K8s cluster.
3. Manual deployment script: `deploy/scripts/deploy.sh` for manual
deployments.
4. Environment-specific configurations: Structured values files for each
environment.
5. Chart organization: Renamed bridges-common-relay to relay for
clarity.

---------

Co-authored-by: Gonza Montiel <gon.montiel@gmail.com>
Co-authored-by: Gonza Montiel <gonzamontiel@users.noreply.github.com>
2025-06-26 13:48:33 +02:00

12 lines
No EOL
271 B
YAML

{{ $fullname := include "node.fullname" . }}
{{- range $keys := .Values.node.keys }}
---
apiVersion: v1
kind: Secret
metadata:
name: {{ $fullname }}-{{ .type }}
data:
type: {{ .type | b64enc }}
scheme: {{ .scheme | b64enc }}
seed: {{ .seed | b64enc }}
{{- end }}