f3477ac102
- external-secrets.yaml: GITEA_INSTANCE_URL changed from cluster-internal URL to https://git.neuralplatform.ai so runner can register externally - gitea.yaml: add GITEA__actions__DEFAULT_ACTIONS_URL=gitea so all actions/* references resolve from gitea.com, not github.com - Dockerfile: track runner image (Python 3.12 + build deps) in repo
26 lines
700 B
YAML
26 lines
700 B
YAML
---
|
|
# gitea-runner-secret — Gitea act-runner registration token
|
|
# GITEA_INSTANCE_URL is static (not a secret); GITEA_RUNNER_REGISTRATION_TOKEN comes from Vault
|
|
apiVersion: external-secrets.io/v1beta1
|
|
kind: ExternalSecret
|
|
metadata:
|
|
name: gitea-runner-secret
|
|
namespace: ci
|
|
spec:
|
|
refreshInterval: 1h
|
|
secretStoreRef:
|
|
name: vault
|
|
kind: ClusterSecretStore
|
|
target:
|
|
name: gitea-runner-secret
|
|
creationPolicy: Owner
|
|
template:
|
|
data:
|
|
GITEA_INSTANCE_URL: "https://git.neuralplatform.ai"
|
|
GITEA_RUNNER_REGISTRATION_TOKEN: "{{ .runner_token }}"
|
|
data:
|
|
- secretKey: runner_token
|
|
remoteRef:
|
|
key: secret/data/gitea
|
|
property: runner_token
|