12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- apiVersion: {{ template "common.capabilities.deployment.apiVersion" . }}
- kind: Deployment
- metadata:
- name: {{ template "common.names.fullname" . }}
- labels: {{ include "common.labels" . | nindent 4 }}
- annotations:
- rollme: {{ randAlphaNum 5 | quote }}
- spec:
- strategy:
- type: {{ .Values.updateStrategy }}
- selector:
- matchLabels: {{ include "common.labels.selectorLabels" . | nindent 6 }}
- template:
- metadata:
- name: {{ template "common.names.fullname" . }}
- labels: {{ include "common.labels.selectorLabels" . | nindent 8 }}
- spec:
- # FIXME: Let's please remove hostnetwork when upstream hostport issue is sorted out with kube-router
- hostNetwork: {{ include "hostNetworkingEnabled" . }}
- containers:
- - name: {{ .Chart.Name }}
- {{ include "common.containers.imageConfig" .Values.image | nindent 10 }}
- volumeMounts: {{ include "common.storage.configureAppVolumeMountsInContainer" .Values | nindent 12 }}
- {{ range $index, $hostPathConfiguration := .Values.extraAppVolumeMounts }}
- - name: extrappvolume-{{ $index }}
- mountPath: {{ $hostPathConfiguration.mountPath }}
- {{ end }}
- ports:
- - name: chia-network
- protocol: TCP
- containerPort: 8444
- hostPort: null
- - name: chia-farmer
- protocol: TCP
- containerPort: 8447
- hostPort: null
- {{ $envList := (default list .Values.environmentVariables) }}
- {{ $envList = mustAppend $envList (dict "name" "keys" "value" "/plots/keyfile") }}
- {{ $envList = mustAppend $envList (dict "name" "farmr" "value" $.Values.farmr_env) }}
- {{ include "common.containers.allEnvironmentVariables" (dict "environmentVariables" $envList) | nindent 10 }}
- volumes: {{ include "common.storage.configureAppVolumes" .Values | nindent 8 }}
- {{ range $index, $hostPathConfiguration := .Values.extraAppVolumeMounts }}
- - name: extrappvolume-{{ $index }}
- hostPath:
- path: {{ $hostPathConfiguration.hostPath }}
- {{ end }}
|