mirror of
https://github.com/datahaven-xyz/datahaven
synced 2026-05-24 01:38:32 +00:00
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>
12 lines
No EOL
271 B
YAML
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 }} |