Skip to content

Commit 704b021

Browse files
Merge pull request #54 from CodeForPhilly/develop
Release: v0.1.7
2 parents 47233f2 + 7372df1 commit 704b021

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

helm-chart/templates/deployment.yaml

+4-2
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ spec:
2929
- name: {{ .Chart.Name }}
3030
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
3131
imagePullPolicy: {{ .Values.image.pullPolicy }}
32+
command: [ 'python3', 'manage.py' ]
33+
args: [ 'runserver', '80' ]
3234
env:
3335
- name: PGHOST
3436
value: {{ include "third-places.fullname" . }}-postgresql
@@ -55,11 +57,11 @@ spec:
5557
protocol: TCP
5658
livenessProbe:
5759
httpGet:
58-
path: /
60+
path: /api/
5961
port: http
6062
readinessProbe:
6163
httpGet:
62-
path: /
64+
path: /api/
6365
port: http
6466
resources:
6567
{{- toYaml .Values.resources | nindent 12 }}

0 commit comments

Comments
 (0)