Skip to content

Commit

Permalink
Merge pull request #15 from a3888s/dev
Browse files Browse the repository at this point in the history
v1.0.2-prod
  • Loading branch information
a3888s authored Dec 24, 2024
2 parents 9712ffd + 8f3757a commit e1446b4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
@@ -1 +1 @@
DOCKER_TAG=v1.0.1
DOCKER_TAG=v1.0.2
4 changes: 2 additions & 2 deletions app/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def do_GET(self):
</style>
</head>
<body>
<h1>StepFinalProject v1.0.1</h1>
<h1>StepFinalProject v1.0.2</h1>
</body>
</html>
"""
Expand All @@ -41,6 +41,6 @@ def do_GET(self):
# Основна частина програми
if __name__ == "__main__":
server = HTTPServer(("0.0.0.0", 8080), SimpleHandler) # Ініціалізація сервера на порту 8080
version = "v1.0.1"
version = "v1.0.2"
print(f"StepFinalProject {version}") # Виведення інформації про запуск у консоль
server.serve_forever() # Запуск сервера для обробки запитів
2 changes: 1 addition & 1 deletion app/k8s/dev/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ spec:
spec:
containers:
- name: python-backend
image: a3888s/step-final-project:v1.0.1
image: a3888s/step-final-project:v1.0.2
ports:
- containerPort: 8080 # Відкритий порт контейнера
2 changes: 1 addition & 1 deletion app/k8s/prod/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ spec:
spec:
containers:
- name: python-backend
image: a3888s/step-final-project-prod:v1.0.1
image: a3888s/step-final-project-prod:v1.0.2
ports:
- containerPort: 8080 # Відкритий порт контейнера

0 comments on commit e1446b4

Please sign in to comment.