Skip to content

Commit

Permalink
Pinning template Postgres version
Browse files Browse the repository at this point in the history
  • Loading branch information
NotChristianGarcia authored Jan 25, 2024
1 parent 4b94f74 commit 1673e65
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions service/kubernetes_templates.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def start_postgres_pod(pod, revision: int):
container = {
"name": pod.k8_name,
"revision": revision,
"image": "postgres",
"image": "postgres:15",
"command": ["docker-entrypoint.sh"],
"args": [
"-c", "ssl=on",
Expand Down Expand Up @@ -240,4 +240,4 @@ def start_generic_pod(pod, image, revision: int):

# Create init_container, container, and service.
create_pod(**container)
create_service(name = pod.k8_name, ports_dict = ports_dict)
create_service(name = pod.k8_name, ports_dict = ports_dict)

0 comments on commit 1673e65

Please sign in to comment.