- Move gitea Application definition to applications repo - Add gitea resources (helm-values, vault secrets, runner deployment) - Update kustomization.yaml to include gitea Application - This enables ArgoCD to manage gitea with proper Helm chart integration
23 lines
493 B
YAML
23 lines
493 B
YAML
apiVersion: external-secrets.io/v1beta1
|
|
kind: ExternalSecret
|
|
metadata:
|
|
name: minio-root-password
|
|
namespace: gitea
|
|
spec:
|
|
refreshInterval: 1h
|
|
secretStoreRef:
|
|
kind: ClusterSecretStore
|
|
name: vault-backend
|
|
target:
|
|
name: minio-root-password
|
|
creationPolicy: Owner
|
|
data:
|
|
- secretKey: root-user
|
|
remoteRef:
|
|
key: gitea/minio
|
|
property: ROOT_USER
|
|
- secretKey: root-password
|
|
remoteRef:
|
|
key: gitea/minio
|
|
property: ROOT_PASSWORD
|