Skip to content

Commit

Permalink
🐛(richie) nginx container should listen to configured port
Browse files Browse the repository at this point in the history
Nginx container for Richie's application was configured to open the 80
port while it was listening to "richie_nginx_port". There is no big deal
as the port is opened when the container is deployed, but this is more
consistent.
  • Loading branch information
jmaupetit committed Mar 18, 2019
1 parent 17b76c2 commit f1a8df6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/richie/templates/nginx/dc.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ spec:
- image: "{{ richie_nginx_image_name }}:{{ richie_nginx_image_tag }}"
name: nginx
ports:
- containerPort: 80
- containerPort: {{ richie_nginx_port }}
protocol: TCP
volumeMounts:
- mountPath: /etc/nginx/conf.d
Expand Down

0 comments on commit f1a8df6

Please sign in to comment.