80 lines
2.1 KiB
YAML
80 lines
2.1 KiB
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
annotations:
|
|
deployment.kubernetes.io/revision: "4"
|
|
labels:
|
|
app: act-runner
|
|
name: act-runner
|
|
namespace: gitea-runner
|
|
spec:
|
|
progressDeadlineSeconds: 600
|
|
replicas: 1
|
|
revisionHistoryLimit: 10
|
|
selector:
|
|
matchLabels:
|
|
app: act-runner
|
|
strategy:
|
|
rollingUpdate:
|
|
maxSurge: 25%
|
|
maxUnavailable: 25%
|
|
type: RollingUpdate
|
|
template:
|
|
metadata:
|
|
creationTimestamp: null
|
|
labels:
|
|
app: act-runner
|
|
spec:
|
|
containers:
|
|
- command:
|
|
- sh
|
|
- -c
|
|
- while ! nc -z localhost 2376 </dev/null; do echo 'waiting for docker daemon...';
|
|
sleep 5; done; /sbin/tini -- run.sh
|
|
env:
|
|
- name: DOCKER_HOST
|
|
value: tcp://localhost:2376
|
|
- name: DOCKER_CERT_PATH
|
|
value: /certs/client
|
|
- name: DOCKER_TLS_VERIFY
|
|
value: "1"
|
|
- name: GITEA_INSTANCE_URL
|
|
value: https://git.dubyatp.xyz
|
|
- name: GITEA_RUNNER_REGISTRATION_TOKEN
|
|
valueFrom:
|
|
secretKeyRef:
|
|
key: token
|
|
name: runner-secret
|
|
image: gitea/act_runner:nightly
|
|
imagePullPolicy: Always
|
|
name: runner
|
|
terminationMessagePath: /dev/termination-log
|
|
terminationMessagePolicy: File
|
|
volumeMounts:
|
|
- mountPath: /certs
|
|
name: docker-certs
|
|
- mountPath: /data
|
|
name: runner-data
|
|
- env:
|
|
- name: DOCKER_TLS_CERTDIR
|
|
value: /certs
|
|
image: docker:23.0.6-dind
|
|
imagePullPolicy: IfNotPresent
|
|
name: daemon
|
|
securityContext:
|
|
privileged: true
|
|
terminationMessagePath: /dev/termination-log
|
|
terminationMessagePolicy: File
|
|
volumeMounts:
|
|
- mountPath: /certs
|
|
name: docker-certs
|
|
dnsPolicy: ClusterFirst
|
|
restartPolicy: Always
|
|
schedulerName: default-scheduler
|
|
terminationGracePeriodSeconds: 30
|
|
volumes:
|
|
- name: docker-certs
|
|
- name: runner-data
|
|
persistentVolumeClaim:
|
|
claimName: act-runner-vol
|