feat: add instructions for setting a dashboard password and create secret.yaml template

This commit is contained in:
Lorenzo Venerandi
2026-03-06 22:40:27 +01:00
parent 5553559ea6
commit 28a62f9ea1
3 changed files with 26 additions and 1 deletions

View File

@@ -33,6 +33,12 @@ spec:
env:
- name: CONFIG_LOCATION
value: "config.yaml"
# Uncomment to use dashboard password from secret
# - name: KRAWL_DASHBOARD_PASSWORD
# valueFrom:
# secretKeyRef:
# name: krawl-dashboard
# key: dashboard-password
volumeMounts:
- name: config
mountPath: /app/config.yaml

View File

@@ -0,0 +1,15 @@
# Source: krawl-chart/templates/secret.yaml
# Uncomment and set your dashboard password below.
# If not created, the password will be auto-generated and printed in the pod logs.
#
# apiVersion: v1
# kind: Secret
# metadata:
# name: krawl-dashboard
# namespace: krawl-system
# labels:
# app.kubernetes.io/name: krawl
# app.kubernetes.io/instance: krawl
# type: Opaque
# stringData:
# dashboard-password: "your-secret-password"