From 73badf08f871a01b3292b65fc481d145e267bb43 Mon Sep 17 00:00:00 2001 From: sichinos Date: Sat, 1 Jul 2023 12:57:50 +0900 Subject: [PATCH 1/3] Update app.py --- vote/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vote/app.py b/vote/app.py index 596546612a..9dfdeb6fb3 100644 --- a/vote/app.py +++ b/vote/app.py @@ -48,4 +48,4 @@ def hello(): if __name__ == "__main__": - app.run(host='0.0.0.0', port=80, debug=True, threaded=True) + app.run(host='0.0.0.0', port=8080, debug=True, threaded=True) From e849c7e7cbe90394d2a44f77d4ef3ec8ac05b599 Mon Sep 17 00:00:00 2001 From: sichinos Date: Sat, 1 Jul 2023 13:11:25 +0900 Subject: [PATCH 2/3] Update app.py --- vote/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vote/app.py b/vote/app.py index 9dfdeb6fb3..596546612a 100644 --- a/vote/app.py +++ b/vote/app.py @@ -48,4 +48,4 @@ def hello(): if __name__ == "__main__": - app.run(host='0.0.0.0', port=8080, debug=True, threaded=True) + app.run(host='0.0.0.0', port=80, debug=True, threaded=True) From cd8e55a4c6b5cedd26a957b4bbbb1b867d64cc8b Mon Sep 17 00:00:00 2001 From: sichinos Date: Wed, 5 Jul 2023 22:56:59 +0900 Subject: [PATCH 3/3] Update vote-deployment.yaml --- k8s-specifications/vote-deployment.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/k8s-specifications/vote-deployment.yaml b/k8s-specifications/vote-deployment.yaml index 165a9478f8..f84a98a55e 100644 --- a/k8s-specifications/vote-deployment.yaml +++ b/k8s-specifications/vote-deployment.yaml @@ -5,7 +5,7 @@ metadata: app: vote name: vote spec: - replicas: 1 + replicas: 2 selector: matchLabels: app: vote