mirror of
https://code.forgejo.org/forgejo/runner.git
synced 2024-11-21 20:27:17 +03:00
Merge pull request 'docs: update kubernetes dind example' (#123) from xyhhx/runner:main into main
Reviewed-on: https://code.forgejo.org/forgejo/runner/pulls/123 Reviewed-by: earl-warren <earl-warren@noreply.code.forgejo.org>
This commit is contained in:
commit
77ce39c2d3
1 changed files with 23 additions and 14 deletions
|
@ -1,4 +1,5 @@
|
||||||
# Secret data.
|
# Secret data.
|
||||||
|
# You will need to retrive this from the web UI, and your Forgejo instance must be running v1.21+
|
||||||
# Alternatively, create this with
|
# Alternatively, create this with
|
||||||
# kubectl create secret generic runner-secret --from-literal=token=your_offline_token_here
|
# kubectl create secret generic runner-secret --from-literal=token=your_offline_token_here
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
|
@ -36,17 +37,25 @@ spec:
|
||||||
# Initialise our configuration file using offline registration
|
# Initialise our configuration file using offline registration
|
||||||
# https://forgejo.org/docs/v1.21/admin/actions/#offline-registration
|
# https://forgejo.org/docs/v1.21/admin/actions/#offline-registration
|
||||||
initContainers:
|
initContainers:
|
||||||
- name: runner-config-generation
|
- name: runner-register
|
||||||
image: code.forgejo.org/forgejo/runner:3.0.0
|
image: code.forgejo.org/forgejo/runner:3.2.0
|
||||||
command: [ "forgejo-runner create-runner-file --instance $FORGEJO_INSTANCE_URL --secret $RUNNER_SECRET --connect" ]
|
command: ["forgejo-runner", "register", "--no-interactive", "--token", $(RUNNER_SECRET), "--name", $(RUNNER_NAME), "--instance", $(FORGEJO_INSTANCE_URL)]
|
||||||
env:
|
env:
|
||||||
|
- name: RUNNER_NAME
|
||||||
|
valueFrom:
|
||||||
|
fieldRef:
|
||||||
|
fieldPath: metadata.name
|
||||||
- name: RUNNER_SECRET
|
- name: RUNNER_SECRET
|
||||||
valueFrom:
|
valueFrom:
|
||||||
secretKeyRef:
|
secretKeyRef:
|
||||||
name: runner-secret
|
name: forgejo-runner-secret
|
||||||
key: token
|
key: token
|
||||||
- name: FORGEJO_INSTANCE_URL
|
- name: FORGEJO_INSTANCE_URL
|
||||||
value: http://gitea-http.gitea.svc.cluster.local:3000
|
value: http://forgejo-http.forgejo.svc.cluster.local:3000
|
||||||
|
resources:
|
||||||
|
limits:
|
||||||
|
cpu: "0.50"
|
||||||
|
memory: "64Mi"
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
- name: runner-data
|
- name: runner-data
|
||||||
mountPath: /data
|
mountPath: /data
|
||||||
|
|
Loading…
Reference in a new issue