mirror of https://github.com/tailscale/tailscale/
docs/k8s: add example about setting up a subnet router
Signed-off-by: Robert <rspier@pobox.com> Co-authored-by: Maisem Ali <3953239+maisem@users.noreply.github.com>pull/3027/head
parent
53199738fb
commit
cb030a0bb4
@ -0,0 +1,32 @@
|
|||||||
|
# Copyright (c) 2021 Tailscale Inc & AUTHORS All rights reserved.
|
||||||
|
# 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: subnet-router
|
||||||
|
labels:
|
||||||
|
app: tailscale
|
||||||
|
spec:
|
||||||
|
serviceAccountName: "{{SA_NAME}}"
|
||||||
|
containers:
|
||||||
|
- name: tailscale
|
||||||
|
imagePullPolicy: Always
|
||||||
|
image: "{{IMAGE_TAG}}"
|
||||||
|
env:
|
||||||
|
# Store the state in a k8s secret
|
||||||
|
- name: KUBE_SECRET
|
||||||
|
value: "{{KUBE_SECRET}}"
|
||||||
|
- name: USERSPACE
|
||||||
|
value: "true"
|
||||||
|
- name: AUTH_KEY
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: tailscale-auth
|
||||||
|
key: AUTH_KEY
|
||||||
|
optional: true
|
||||||
|
- name: ROUTES
|
||||||
|
value: "{{ROUTES}}"
|
||||||
|
securityContext:
|
||||||
|
runAsUser: 1000
|
||||||
|
runAsGroup: 1000
|
Loading…
Reference in New Issue