mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-24 01:36:10 +07:00
20 lines
449 B
YAML
20 lines
449 B
YAML
apiVersion: external-secrets.io/v1alpha1
|
|
kind: ExternalSecret
|
|
metadata:
|
|
name: {{ .Values.gitea.gitea.admin.existingSecret }}
|
|
namespace: {{ .Release.Namespace }}
|
|
spec:
|
|
secretStoreRef:
|
|
kind: ClusterSecretStore
|
|
name: vault
|
|
target:
|
|
template:
|
|
data:
|
|
username: gitea_admin
|
|
password: {{ .data.password }}
|
|
data:
|
|
- secretKey: password
|
|
remoteRef:
|
|
key: /gitea/admin-password
|
|
property: value
|