diff --git a/deployments/tailscale/tailscale/deployment.yaml b/deployments/tailscale/tailscale/deployment.yaml new file mode 100644 index 0000000..a9bad8f --- /dev/null +++ b/deployments/tailscale/tailscale/deployment.yaml @@ -0,0 +1,31 @@ +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/operator:v1.70.0 + env: + - name: DEPLOY_TYPE + value: k8s + volumeMounts: + - name: config + mountPath: /config + volumes: + - name: config + secret: + secretName: tailscale-operator-config \ No newline at end of file