From 744aa5b139ab07a188bf0771c9666f6552867639 Mon Sep 17 00:00:00 2001 From: dominik003 Date: Mon, 16 Oct 2023 17:21:37 +0200 Subject: [PATCH] chore: Disable loki deployment in github action This disables the deployment of the loki helm chart in our install chart action. This is necessary as loki requires too many resources and the main goal of the action is to see whether our own components do start in the cluster. --- .github/workflows/push.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 7769dd744..4760c2dc4 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -110,9 +110,7 @@ jobs: --set docker.images.backend="/backend:$TAG" \ --set docker.images.guacamole.guacamole="ghcr.io/dsd-dbs/capella-collab-manager/guacamole:$TAG" \ --set docker.images.docs="/docs:$TAG" \ - --set loki.loki.read.persistence.size="500Mi" \ - --set loki.loki.write.persistence.size="500Mi" \ - --set loki.minio.persistence.size="500Mi" \ + --set loki.enabled=False \ --set cluster.pvc.storageClassName="standard" \ --set cluster.imagePullSecret="github" \ --set promtail.storageClassName="standard" \