63 lines
1.8 KiB
YAML
63 lines
1.8 KiB
YAML
|
apiVersion: apps/v1beta2
|
||
|
kind: Deployment
|
||
|
metadata:
|
||
|
name: {{ include "passbook.fullname" . }}-appgw
|
||
|
labels:
|
||
|
app.kubernetes.io/name: {{ include "passbook.name" . }}
|
||
|
helm.sh/chart: {{ include "passbook.chart" . }}
|
||
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
||
|
app.kubernetes.io/managed-by: {{ .Release.Service }}
|
||
|
spec:
|
||
|
replicas: {{ .Values.replicaCount }}
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
app.kubernetes.io/name: {{ include "passbook.name" . }}
|
||
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
||
|
template:
|
||
|
metadata:
|
||
|
labels:
|
||
|
app.kubernetes.io/name: {{ include "passbook.name" . }}
|
||
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
||
|
passbook.io/component: appgw
|
||
|
spec:
|
||
|
volumes:
|
||
|
- name: config-volume
|
||
|
configMap:
|
||
|
name: {{ include "passbook.fullname" . }}-config
|
||
|
containers:
|
||
|
- name: {{ .Chart.Name }}
|
||
|
image: "docker.beryju.org/passbook/server:{{ .Values.image.tag }}"
|
||
|
imagePullPolicy: IfNotPresent
|
||
|
command:
|
||
|
- ./manage.py
|
||
|
args:
|
||
|
- app_gw_web
|
||
|
ports:
|
||
|
- name: http
|
||
|
containerPort: 8000
|
||
|
protocol: TCP
|
||
|
volumeMounts:
|
||
|
- mountPath: /etc/passbook
|
||
|
name: config-volume
|
||
|
livenessProbe:
|
||
|
httpGet:
|
||
|
path: /
|
||
|
port: http
|
||
|
httpHeaders:
|
||
|
- name: Host
|
||
|
value: kubernetes-healthcheck-host
|
||
|
readinessProbe:
|
||
|
httpGet:
|
||
|
path: /
|
||
|
port: http
|
||
|
httpHeaders:
|
||
|
- name: Host
|
||
|
value: kubernetes-healthcheck-host
|
||
|
resources:
|
||
|
requests:
|
||
|
cpu: 150m
|
||
|
memory: 300M
|
||
|
limits:
|
||
|
cpu: 500m
|
||
|
memory: 500M
|