kind: PersistentVolumeClaim apiVersion: v1 metadata: name: action-runner namespace: gitea-system spec: accessModes: - ReadWriteMany resources: requests: storage: 10Gi storageClassName: longhorn --- apiVersion: apps/v1 kind: Deployment metadata: labels: app: action-runner name: action-runner namespace: gitea-system spec: replicas: 3 selector: matchLabels: app: action-runner strategy: {} template: metadata: creationTimestamp: null labels: app: action-runner spec: restartPolicy: Always volumes: - name: runner-data persistentVolumeClaim: claimName: action-runner securityContext: fsGroup: 1000 containers: - name: runner image: gitea/act_runner:nightly-dind-rootless imagePullPolicy: Always # command: ["sh", "-c", "while ! nc -z localhost 2376