34 lines
No EOL
743 B
YAML
34 lines
No EOL
743 B
YAML
instanceURL: https://git.juntekim.com
|
|
|
|
# Registration token from Forgejo:
|
|
# Site Admin → Actions → Runners → Create new runner
|
|
# Store as a k8s secret and reference here, or set directly for bootstrapping
|
|
registrationToken: "RPAjk4Jdc42By5vSxnULPPPrjU0goPLQIiKgwOIo" # TODO: fill in or use existingSecret
|
|
|
|
# Uncomment to use an existing k8s secret instead:
|
|
# existingSecret: forgejo-runner-secret
|
|
# existingSecretKey: token
|
|
|
|
runnerName: mist-runner
|
|
|
|
runnerLabels:
|
|
- self-hosted
|
|
- linux
|
|
- x64
|
|
|
|
replicaCount: 1
|
|
|
|
# Enable DinD if you need to build Docker images in CI
|
|
dind:
|
|
enabled: true
|
|
privileged: true
|
|
|
|
resources:
|
|
requests:
|
|
cpu: 100m
|
|
memory: 256Mi
|
|
limits:
|
|
cpu: 1000m
|
|
memory: 1Gi
|
|
|
|
namespace: forgejo-runners |