2022-06-06 19:43:23 +00:00
|
|
|
# Copyright (c) 2022 Tailscale Inc & AUTHORS All rights reserved.
|
2021-10-12 21:24:07 +00:00
|
|
|
# Use of this source code is governed by a BSD-style
|
|
|
|
# license that can be found in the LICENSE file.
|
|
|
|
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
|
|
|
securityContext:
|
|
|
|
runAsUser: 1000
|
|
|
|
runAsGroup: 1000
|
|
|
|
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: "true"
|
2022-06-06 19:43:23 +00:00
|
|
|
- name: TS_AUTH_KEY
|
2021-10-12 21:24:07 +00:00
|
|
|
valueFrom:
|
|
|
|
secretKeyRef:
|
|
|
|
name: tailscale-auth
|
2022-09-22 03:20:02 +00:00
|
|
|
key: TS_AUTH_KEY
|
2021-10-12 21:24:07 +00:00
|
|
|
optional: true
|