46 lines
1.1 KiB
YAML
46 lines
1.1 KiB
YAML
|
apiVersion: apps/v1
|
||
|
kind: Deployment
|
||
|
metadata:
|
||
|
labels:
|
||
|
app: act-runner
|
||
|
name: act-runner
|
||
|
namespace: gitea
|
||
|
spec:
|
||
|
replicas: 1
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
app: act-runner
|
||
|
strategy: {}
|
||
|
template:
|
||
|
metadata:
|
||
|
creationTimestamp: null
|
||
|
labels:
|
||
|
app: act-runner
|
||
|
spec:
|
||
|
restartPolicy: Always
|
||
|
volumes:
|
||
|
- name: runner-data
|
||
|
persistentVolumeClaim:
|
||
|
claimName: act-runner-vol
|
||
|
securityContext:
|
||
|
fsGroup: 1001
|
||
|
containers:
|
||
|
- name: runner
|
||
|
image: gitea/act_runner:nightly-dind-rootless
|
||
|
imagePullPolicy: Always
|
||
|
env:
|
||
|
- name: DOCKER_HOST
|
||
|
value: unix:///var/run/user/1000/docker.sock
|
||
|
- name: GITEA_INSTANCE_URL
|
||
|
value: http://gitea-http.gitea.svc.cluster.local:3000
|
||
|
- name: GITEA_RUNNER_REGISTRATION_TOKEN
|
||
|
valueFrom:
|
||
|
secretKeyRef:
|
||
|
name: runner-secret
|
||
|
key: token
|
||
|
securityContext:
|
||
|
privileged: true
|
||
|
volumeMounts:
|
||
|
- name: runner-data
|
||
|
mountPath: /data
|