mirror of https://git.rancher.io/charts
52 lines
1.8 KiB
YAML
52 lines
1.8 KiB
YAML
|
{{- if and .Values.proxy }}{{ if .Values.proxy.enabled }}
|
||
|
apiVersion: apps/v1
|
||
|
kind: Deployment
|
||
|
metadata:
|
||
|
name: {{ template "pushProxy.proxy.name" . }}
|
||
|
namespace: {{ template "pushprox.namespace" . }}
|
||
|
labels: {{ include "pushProxy.proxy.labels" . | nindent 4 }}
|
||
|
pushprox-exporter: "proxy"
|
||
|
spec:
|
||
|
selector:
|
||
|
matchLabels: {{ include "pushProxy.proxy.labels" . | nindent 6 }}
|
||
|
template:
|
||
|
metadata:
|
||
|
labels: {{ include "pushProxy.proxy.labels" . | nindent 8 }}
|
||
|
spec:
|
||
|
securityContext:
|
||
|
runAsNonRoot: true
|
||
|
runAsUser: 1000
|
||
|
nodeSelector: {{ include "linux-node-selector" . | nindent 8 }}
|
||
|
{{- if .Values.proxy.nodeSelector }}
|
||
|
{{ toYaml .Values.proxy.nodeSelector | indent 8 }}
|
||
|
{{- end }}
|
||
|
tolerations: {{ include "linux-node-tolerations" . | nindent 8 }}
|
||
|
{{- if .Values.proxy.tolerations }}
|
||
|
{{ toYaml .Values.proxy.tolerations | indent 8 }}
|
||
|
{{- end }}
|
||
|
serviceAccountName: {{ template "pushProxy.proxy.name" . }}
|
||
|
containers:
|
||
|
- name: pushprox-proxy
|
||
|
image: {{ template "system_default_registry" . }}{{ .Values.proxy.image.repository }}:{{ .Values.proxy.image.tag }}
|
||
|
command:
|
||
|
{{- range .Values.proxy.command }}
|
||
|
- {{ . | quote }}
|
||
|
{{- end }}
|
||
|
{{- if .Values.proxy.resources }}
|
||
|
resources: {{ toYaml .Values.proxy.resources | nindent 10 }}
|
||
|
{{- end }}
|
||
|
---
|
||
|
apiVersion: v1
|
||
|
kind: Service
|
||
|
metadata:
|
||
|
name: {{ template "pushProxy.proxy.name" . }}
|
||
|
namespace: {{ template "pushprox.namespace" . }}
|
||
|
labels: {{ include "pushProxy.proxy.labels" . | nindent 4 }}
|
||
|
spec:
|
||
|
ports:
|
||
|
- name: pp-proxy
|
||
|
port: {{ required "Need .Values.proxy.port to configure proxy" .Values.proxy.port }}
|
||
|
protocol: TCP
|
||
|
targetPort: {{ .Values.proxy.port }}
|
||
|
selector: {{ include "pushProxy.proxy.labels" . | nindent 4 }}
|
||
|
{{- end }}{{- end }}
|