this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

refactor(forgejo): use Vault secrets

Khue Doan 4b99c7e1 c816a14f

+13 -2
+4 -2
platform/staging/forgejo.yaml
··· 67 67 - name: SSO 68 68 provider: 'openidConnect' 69 69 autoDiscoverUrl: https://dex.cloudlab.khuedoan.com/.well-known/openid-configuration 70 - existingSecret: forgejo-oauth 70 + key: vault:secret/data/forgejo/oauth#key 71 + secret: vault:secret/data/forgejo/oauth#secret 71 72 admin: 72 73 email: admin@cloudlab.khuedoan.com 73 - existingSecret: forgejo-admin 74 + username: forgejo_admin 75 + password: vault:secret/data/forgejo/admin#password 74 76 podAnnotations: 75 77 "istio.io/dataplane-mode": "ambient" 76 78 ingress:
+9
settings.yaml
··· 12 12 description: | 13 13 Enter Cloudflare API token: 14 14 (Generate it from https://dash.cloudflare.com -> Manage account -> Account API tokens) 15 + secret/forgejo/admin: 16 + password: 17 + type: random 18 + # TODO maybe centralize to Dex 19 + secret/forgejo/oauth: 20 + key: 21 + type: random 22 + secret: 23 + type: random