Files
opendesk/docs/external-secrets.md
Axel Lender 8aac097ebb feat(note): Templating for external secrets
Signed-off-by: Axel Lender <lender@b1-systems.de>
2025-08-14 14:11:37 +02:00

1.2 KiB

External Secrets

This document covers how to utilise external secrets and special requirements.

General

For most components when set the external secret will supersede e.g. a password in a values.yaml file.

The file external_secrets.yaml lists all possible references to external secrets that are currently implemented in openDesk.

Components

This section covers information and special requirements to external secrets that some Helm Charts expect.

Notes

There are some values that consist of more than just one secret part.

backend:
  configuration:
    django:
      superuserEmail:
        value: {{ printf "default.admin@%s" .Values.global.domain | quote }}
    redisUrl:
      value: "redis://default:{{ .Values.cache.notes.password | default .Values.secrets.redis.password }}@{{ .Values.cache.notes.host }}:{{ .Values.cache.notes.port }}/7"