2023-01-27 21:37:20 +00:00
|
|
|
# Copyright (c) Tailscale Inc & AUTHORS
|
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
2021-10-12 21:24:07 +00:00
|
|
|
apiVersion: v1
|
|
|
|
kind: Pod
|
|
|
|
metadata:
|
|
|
|
name: nginx
|
|
|
|
spec:
|
|
|
|
serviceAccountName: "{{SA_NAME}}"
|
|
|
|
containers:
|
|
|
|
- name: nginx
|
|
|
|
image: nginx
|
|
|
|
- name: ts-sidecar
|
|
|
|
imagePullPolicy: Always
|
2022-06-06 19:43:23 +00:00
|
|
|
image: "ghcr.io/tailscale/tailscale:latest"
|
2021-10-12 21:24:07 +00:00
|
|
|
env:
|
|
|
|
# Store the state in a k8s secret
|
2022-06-06 19:43:23 +00:00
|
|
|
- name: TS_KUBE_SECRET
|
|
|
|
value: "{{TS_KUBE_SECRET}}"
|
|
|
|
- name: TS_USERSPACE
|
2021-10-12 21:24:07 +00:00
|
|
|
value: "false"
|
2024-03-04 14:59:51 +00:00
|
|
|
- name: TS_DEBUG_FIREWALL_MODE
|
|
|
|
value: auto
|
2023-01-27 23:05:03 +00:00
|
|
|
- name: TS_AUTHKEY
|
2021-10-12 21:24:07 +00:00
|
|
|
valueFrom:
|
|
|
|
secretKeyRef:
|
|
|
|
name: tailscale-auth
|
2023-01-27 23:05:03 +00:00
|
|
|
key: TS_AUTHKEY
|
2021-10-12 21:24:07 +00:00
|
|
|
optional: true
|
|
|
|
securityContext:
|
|
|
|
capabilities:
|
|
|
|
add:
|
|
|
|
- NET_ADMIN
|