We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 47233f2 + 7372df1 commit 704b021Copy full SHA for 704b021
1 file changed
helm-chart/templates/deployment.yaml
@@ -29,6 +29,8 @@ spec:
29
- name: {{ .Chart.Name }}
30
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
31
imagePullPolicy: {{ .Values.image.pullPolicy }}
32
+ command: [ 'python3', 'manage.py' ]
33
+ args: [ 'runserver', '80' ]
34
env:
35
- name: PGHOST
36
value: {{ include "third-places.fullname" . }}-postgresql
@@ -55,11 +57,11 @@ spec:
55
57
protocol: TCP
56
58
livenessProbe:
59
httpGet:
- path: /
60
+ path: /api/
61
port: http
62
readinessProbe:
63
64
65
66
resources:
67
{{- toYaml .Values.resources | nindent 12 }}
0 commit comments