Skip to content

Commit

Permalink
Merge pull request #13 from kkirara/switch-port
Browse files Browse the repository at this point in the history
8080
  • Loading branch information
brainfair authored Oct 16, 2022
2 parents 480d2da + d244793 commit 9b88f16
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"--host",
"0.0.0.0",
"--port",
"80"
"8080"
],
"module": "flask"
}
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ RUN adduser -u 5678 --disabled-password --gecos "" appuser && chown -R appuser /
USER appuser

# During debugging, this entry point will be overridden. For more information, please refer to https://aka.ms/vscode-docker-python-debug
CMD ["gunicorn", "--bind", "0.0.0.0:80", "kubelinks_app.__init__:create_app()"]
CMD ["gunicorn", "--bind", "0.0.0.0:8080", "kubelinks_app.__init__:create_app()"]
2 changes: 1 addition & 1 deletion charts/kubelinks/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ spec:
imagePullPolicy: {{ .Values.image.pullPolicy }}
ports:
- name: http
containerPort: 80
containerPort: 8080
protocol: TCP
livenessProbe:
httpGet:
Expand Down

0 comments on commit 9b88f16

Please sign in to comment.