feat: SOPS + age encrypted secrets structure
- .sops.yaml with 3 age keys (admin, dev, prod) - infra/gitea/values/*.enc.yaml — per-env encrypted Helm values - infra/kargo/values/*.enc.yaml — per-env encrypted Kargo admin secrets - kargo/credentials/*.enc.yaml — per-env encrypted git credentials (ksops) - infra/kargo-credentials/ — ArgoCD app for deploying Kargo creds via ksops - All repoURLs point to deploy-app-kargo-private Structure from deploy-app-kargo (reference), adapted for SOPS workflow
This commit is contained in:
10
infra/gitea-custom/config.yaml
Normal file
10
infra/gitea-custom/config.yaml
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"name": "gitea-custom",
|
||||
"namespace": "gitea",
|
||||
"step": "6",
|
||||
"source": {
|
||||
"repoURL": "https://github.com/Kargones/deploy-app-kargo-private.git",
|
||||
"path": "infra/gitea-custom/manifests",
|
||||
"targetRevision": "main"
|
||||
}
|
||||
}
|
||||
16
infra/gitea-custom/manifests/disable-cache.yaml
Normal file
16
infra/gitea-custom/manifests/disable-cache.yaml
Normal file
@@ -0,0 +1,16 @@
|
||||
# Override Gitea cache/session to use memory (no redis/valkey)
|
||||
# Mount this ConfigMap as /data/gitea/conf/app.ini override
|
||||
apiVersion: v1
|
||||
kind: ConfigMap
|
||||
metadata:
|
||||
name: gitea-disable-cache
|
||||
namespace: gitea
|
||||
data:
|
||||
_10-cache.ini: |
|
||||
[cache]
|
||||
ENABLED = false
|
||||
ADAPTER = memory
|
||||
INTERVAL = 0
|
||||
|
||||
[session]
|
||||
PROVIDER = memory
|
||||
Reference in New Issue
Block a user