From 350f78d69bfc4647dc06a52bde94ee69979f8caa Mon Sep 17 00:00:00 2001 From: David Okulski <32730627+DavidOkulski@users.noreply.github.com> Date: Tue, 7 Jan 2025 16:07:03 -0800 Subject: [PATCH] debugging app pod --- .github/workflows/deployment-dev.yml | 2 +- helm/templates/deployment.yaml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deployment-dev.yml b/.github/workflows/deployment-dev.yml index 79c5321..d53c998 100644 --- a/.github/workflows/deployment-dev.yml +++ b/.github/workflows/deployment-dev.yml @@ -72,7 +72,7 @@ jobs: --set app.image.repository=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} \ --set app.image.tag=${{ needs.build_and_push.outputs.image_tag }} \ --set postgresql.image.repository=postgres \ - --set postgresql.image.tag=13 + --set postgresql.image.tag=12 - name: Trigger OpenShift Rollout run: | diff --git a/helm/templates/deployment.yaml b/helm/templates/deployment.yaml index d5a95e3..fd3f43f 100644 --- a/helm/templates/deployment.yaml +++ b/helm/templates/deployment.yaml @@ -16,6 +16,7 @@ spec: spec: containers: - name: app + command: [ "sleep", "3600" ] image: "{{ .Values.app.repository }}:{{ .Values.app.tag }}" ports: - containerPort: {{ .Values.env.APP_PORT }}