mirror of
https://github.com/tailscale/tailscale.git
synced 2025-04-03 06:45:49 +00:00
Merge e0963cb11765f03244fcce47a3abb6edabd3f148 into 156cd53e7734407dc42e30af2f12cf6956cd9e24
This commit is contained in:
commit
13c2be3abd
@ -1,6 +1,5 @@
|
|||||||
# Copyright (c) Tailscale Inc & AUTHORS
|
# Copyright (c) Tailscale Inc & AUTHORS
|
||||||
# SPDX-License-Identifier: BSD-3-Clause
|
# SPDX-License-Identifier: BSD-3-Clause
|
||||||
|
|
||||||
apiVersion: apps/v1
|
apiVersion: apps/v1
|
||||||
kind: Deployment
|
kind: Deployment
|
||||||
metadata:
|
metadata:
|
||||||
@ -25,6 +24,10 @@ spec:
|
|||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
spec:
|
spec:
|
||||||
|
{{- if .Values.operatorConfig.hostNetwork.enabled }}
|
||||||
|
hostNetwork: true
|
||||||
|
dnsPolicy: ClusterFirstWithHostNet
|
||||||
|
{{- end }}
|
||||||
{{- with .Values.imagePullSecrets }}
|
{{- with .Values.imagePullSecrets }}
|
||||||
imagePullSecrets:
|
imagePullSecrets:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
@ -48,6 +51,11 @@ spec:
|
|||||||
securityContext:
|
securityContext:
|
||||||
{{- toYaml . | nindent 12 }}
|
{{- toYaml . | nindent 12 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{- if .Values.operatorConfig.port.enabled }}
|
||||||
|
ports:
|
||||||
|
- containerPort: {{ .Values.operatorConfig.port.containerPort }}
|
||||||
|
protocol: UDP
|
||||||
|
{{- end }}
|
||||||
{{- with .Values.operatorConfig.resources }}
|
{{- with .Values.operatorConfig.resources }}
|
||||||
resources:
|
resources:
|
||||||
{{- toYaml . | nindent 12 }}
|
{{- toYaml . | nindent 12 }}
|
||||||
@ -72,6 +80,10 @@ spec:
|
|||||||
value: /oauth/client_id
|
value: /oauth/client_id
|
||||||
- name: CLIENT_SECRET_FILE
|
- name: CLIENT_SECRET_FILE
|
||||||
value: /oauth/client_secret
|
value: /oauth/client_secret
|
||||||
|
{{- if .Values.operatorConfig.port.enabled }}
|
||||||
|
- name: TS_PORT
|
||||||
|
value: {{ .Values.operatorConfig.port.containerPort | quote }}
|
||||||
|
{{- end }}
|
||||||
{{- $proxyTag := printf ":%s" ( .Values.proxyConfig.image.tag | default .Chart.AppVersion )}}
|
{{- $proxyTag := printf ":%s" ( .Values.proxyConfig.image.tag | default .Chart.AppVersion )}}
|
||||||
- name: PROXY_IMAGE
|
- name: PROXY_IMAGE
|
||||||
value: {{ coalesce .Values.proxyConfig.image.repo .Values.proxyConfig.image.repository }}{{- if .Values.proxyConfig.image.digest -}}{{ printf "@%s" .Values.proxyConfig.image.digest}}{{- else -}}{{ printf "%s" $proxyTag }}{{- end }}
|
value: {{ coalesce .Values.proxyConfig.image.repo .Values.proxyConfig.image.repository }}{{- if .Values.proxyConfig.image.digest -}}{{ printf "@%s" .Values.proxyConfig.image.digest}}{{- else -}}{{ printf "%s" $proxyTag }}{{- end }}
|
||||||
|
@ -37,6 +37,15 @@ operatorConfig:
|
|||||||
defaultTags:
|
defaultTags:
|
||||||
- "tag:k8s-operator"
|
- "tag:k8s-operator"
|
||||||
|
|
||||||
|
# Manual configuration of tsnet port. If unset, a random port is selected.
|
||||||
|
port:
|
||||||
|
enabled: false
|
||||||
|
containerPort: 8080
|
||||||
|
|
||||||
|
# Optional host network configuration. Likely only needed for public Kubernetes nodes
|
||||||
|
hostNetwork:
|
||||||
|
enabled: false
|
||||||
|
|
||||||
image:
|
image:
|
||||||
# Repository defaults to DockerHub, but images are also synced to ghcr.io/tailscale/k8s-operator.
|
# Repository defaults to DockerHub, but images are also synced to ghcr.io/tailscale/k8s-operator.
|
||||||
repository: tailscale/k8s-operator
|
repository: tailscale/k8s-operator
|
||||||
|
Loading…
x
Reference in New Issue
Block a user