From b9ea102375208f2ed8afd3001133a9512aae234d Mon Sep 17 00:00:00 2001 From: gitea-admin Date: Fri, 15 May 2026 01:59:57 +0000 Subject: [PATCH] chore: remove duplicate tailscale-operator dir, consolidated into deployments/tailscale/operator/ --- .../tailscale-operator/deployment.yaml | 45 ------------------- 1 file changed, 45 deletions(-) delete mode 100644 deployments/tailscale-operator/deployment.yaml diff --git a/deployments/tailscale-operator/deployment.yaml b/deployments/tailscale-operator/deployment.yaml deleted file mode 100644 index 146aac1..0000000 --- a/deployments/tailscale-operator/deployment.yaml +++ /dev/null @@ -1,45 +0,0 @@ -apiVersion: apps/v1 -kind: Deployment -metadata: - name: tailscale-operator - namespace: tailscale - labels: - app: tailscale-operator -spec: - replicas: 1 - selector: - matchLabels: - app: tailscale-operator - template: - metadata: - labels: - app: tailscale-operator - spec: - serviceAccountName: tailscale-operator - containers: - - name: operator - image: ghcr.io/tailscale/k8s-operator:v1.78.0 - env: - - name: TS_AUTHKEY - valueFrom: - secretKeyRef: - name: tailscale-auth - key: TS_AUTH_KEY - - name: DEPLOYMENT_TYPE - value: "k8s" - ports: - - containerPort: 8080 - name: http-metrics - readinessProbe: - httpGet: - path: /metrics - port: http-metrics - initialDelaySeconds: 10 - periodSeconds: 15 - resources: - requests: - cpu: 50m - memory: 64Mi - limits: - cpu: 200m - memory: 256Mi