GHP publish
This commit is contained in:
82
openfaas/templates/nats-dep.yaml
Normal file
82
openfaas/templates/nats-dep.yaml
Normal file
@ -0,0 +1,82 @@
|
||||
{{- if and .Values.async (not .Values.nats.external.enabled) }}
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
labels:
|
||||
app: {{ template "openfaas.name" . }}
|
||||
chart: {{ .Chart.Name }}-{{ .Chart.Version }}
|
||||
component: nats
|
||||
heritage: {{ .Release.Service }}
|
||||
release: {{ .Release.Name }}
|
||||
name: nats
|
||||
namespace: {{ .Release.Namespace | quote }}
|
||||
spec:
|
||||
replicas: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
app: nats
|
||||
template:
|
||||
metadata:
|
||||
annotations:
|
||||
sidecar.istio.io/inject: "false"
|
||||
prometheus.io.scrape: {{ .Values.nats.metrics.enabled | quote }}
|
||||
{{- if .Values.nats.metrics.enabled }}
|
||||
prometheus.io.port: "7777"
|
||||
{{- end }}
|
||||
labels:
|
||||
app: nats
|
||||
spec:
|
||||
containers:
|
||||
- name: nats
|
||||
resources:
|
||||
{{- .Values.nats.resources | toYaml | nindent 12 }}
|
||||
image: {{ .Values.nats.image }}
|
||||
imagePullPolicy: {{ .Values.openfaasImagePullPolicy }}
|
||||
ports:
|
||||
- containerPort: 4222
|
||||
protocol: TCP
|
||||
{{- if .Values.nats.enableMonitoring }}
|
||||
- containerPort: 8222
|
||||
protocol: TCP
|
||||
{{- end }}
|
||||
command: ["/nats-streaming-server"]
|
||||
args:
|
||||
- --store
|
||||
- memory
|
||||
- --cluster_id
|
||||
- faas-cluster
|
||||
{{- if or .Values.nats.enableMonitoring .Values.nats.metrics.enabled }}
|
||||
- -m
|
||||
- "8222"
|
||||
{{- end }}
|
||||
{{- if .Values.nats.metrics.enabled }}
|
||||
- name: metrics
|
||||
image: {{ .Values.nats.metrics.image }}
|
||||
imagePullPolicy: {{ .Values.openfaasImagePullPolicy }}
|
||||
ports:
|
||||
- containerPort: 7777
|
||||
protocol: TCP
|
||||
args:
|
||||
- -port
|
||||
- "7777"
|
||||
- -connz
|
||||
- -routez
|
||||
- -subz
|
||||
- -varz
|
||||
- -channelz
|
||||
- -serverz
|
||||
- http://localhost:8222
|
||||
{{- end }}
|
||||
{{- with .Values.nodeSelector }}
|
||||
nodeSelector:
|
||||
{{ toYaml . | indent 8 }}
|
||||
{{- end }}
|
||||
{{- with .Values.affinity }}
|
||||
affinity:
|
||||
{{ toYaml . | indent 8 }}
|
||||
{{- end }}
|
||||
{{- with .Values.tolerations }}
|
||||
tolerations:
|
||||
{{ toYaml . | indent 8 }}
|
||||
{{- end }}
|
||||
{{- end }}
|
Reference in New Issue
Block a user