From 35c3c70b0870c32b0cc979329cf4687cf6c028ef Mon Sep 17 00:00:00 2001 From: Shahab Dogar Date: Sat, 22 Nov 2025 20:28:20 +0500 Subject: [PATCH] chore: delete old gitea runner yaml --- gitea/actions/runner.yaml | 66 --------------------------------------- 1 file changed, 66 deletions(-) delete mode 100644 gitea/actions/runner.yaml diff --git a/gitea/actions/runner.yaml b/gitea/actions/runner.yaml deleted file mode 100644 index a5b34e8..0000000 --- a/gitea/actions/runner.yaml +++ /dev/null @@ -1,66 +0,0 @@ ---- -apiVersion: apps/v1 -kind: Deployment -metadata: - labels: - app: action-runner - name: action-runner - namespace: homelab -spec: - replicas: 3 - selector: - matchLabels: - app: action-runner - strategy: {} - template: - metadata: - creationTimestamp: null - labels: - app: action-runner - spec: - nodeSelector: - nodepool: worker - topologySpreadConstraints: - - maxSkew: 1 - topologyKey: kubernetes.io/hostname - whenUnsatisfiable: DoNotSchedule - labelSelector: - matchLabels: - app: action-runner - 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 - env: - - name: DOCKER_HOST - value: unix:///run/user/1000/docker.sock - - name: GITEA_INSTANCE_URL - value: https://git.dogar.dev - - name: GITEA_RUNNER_REGISTRATION_TOKEN - valueFrom: - secretKeyRef: - name: runner-secret - key: runner-token - securityContext: - privileged: true - volumeMounts: - - name: runner-data - mountPath: /data ---- -apiVersion: policy/v1 -kind: PodDisruptionBudget -metadata: - name: action-runner-pdb - namespace: homelab -spec: - minAvailable: 6 - selector: - matchLabels: - app: action-runner