2026-07-08 15:18:20 +02:00
|
|
|
# Non-secret backend structure for issue-core on CoulombCore.
|
|
|
|
|
# Default backend = Forgejo task inbox (Gitea-compatible API). Legacy in-cluster
|
|
|
|
|
# gitea-http was retired; all coulomb/* repos there are archived (issue create 423).
|
|
|
|
|
# Token is injected at startup from GITEA_BACKEND_TOKEN (ExternalSecret) — must be
|
|
|
|
|
# a Forgejo API token with issues:create on the default repo.
|
2026-06-19 21:05:18 +02:00
|
|
|
apiVersion: v1
|
|
|
|
|
kind: ConfigMap
|
|
|
|
|
metadata:
|
|
|
|
|
name: issue-core-backends
|
|
|
|
|
namespace: issue-core
|
|
|
|
|
labels:
|
|
|
|
|
app.kubernetes.io/name: issue-core
|
|
|
|
|
app.kubernetes.io/part-of: railiance-gitops
|
|
|
|
|
data:
|
|
|
|
|
backends.json: |
|
|
|
|
|
{
|
2026-07-08 15:18:20 +02:00
|
|
|
"forgejo-inbox": {
|
2026-06-19 21:05:18 +02:00
|
|
|
"type": "gitea",
|
2026-07-08 15:18:20 +02:00
|
|
|
"base_url": "https://forgejo.coulomb.social",
|
2026-06-19 21:05:18 +02:00
|
|
|
"owner": "coulomb",
|
2026-07-08 15:18:20 +02:00
|
|
|
"repo": "the-custodian",
|
2026-06-19 21:05:18 +02:00
|
|
|
"token": "__FROM_ENV__"
|
|
|
|
|
},
|
2026-07-08 15:18:20 +02:00
|
|
|
"default": "forgejo-inbox"
|
2026-06-19 21:05:18 +02:00
|
|
|
}
|