From 3fb98effae236be06bd96151f65331849604b8cd Mon Sep 17 00:00:00 2001 From: Janis Date: Thu, 30 Apr 2026 08:20:33 +0200 Subject: [PATCH] feat: update tunnel container image to ghcr.io/16janis12/ssh-client-docker and adjust memory requests --- postgres-tunnel/eu-central-1/deployment.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/postgres-tunnel/eu-central-1/deployment.yaml b/postgres-tunnel/eu-central-1/deployment.yaml index 21f7efc..0735c03 100644 --- a/postgres-tunnel/eu-central-1/deployment.yaml +++ b/postgres-tunnel/eu-central-1/deployment.yaml @@ -15,11 +15,11 @@ spec: spec: containers: - name: tunnel - image: alpine:3.21 + image: ghcr.io/16janis12/ssh-client-docker:main + imagePullPolicy: Always command: [/bin/sh, -c] args: - | - apk add --no-cache openssh-client exec ssh -N \ -o StrictHostKeyChecking=no \ -o ServerAliveInterval=30 \ @@ -42,7 +42,7 @@ spec: resources: requests: cpu: 10m - memory: 16Mi + memory: 8Mi limits: cpu: 50m memory: 32Mi