From 7d9af5fb28070484f003905e28b00c2eb2d37db1 Mon Sep 17 00:00:00 2001 From: Schnitz <12687466+CptSchnitz@users.noreply.github.com> Date: Thu, 23 Jul 2026 11:27:23 +0300 Subject: [PATCH 1/2] fix(global): updated chart lock and changed value to int64 --- helm/Chart.lock | 12 ++++++------ helm/charts/opa/config/opa.yaml | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/helm/Chart.lock b/helm/Chart.lock index 6f75c9f..e1dfb42 100644 --- a/helm/Chart.lock +++ b/helm/Chart.lock @@ -1,24 +1,24 @@ dependencies: - name: opa repository: file://charts/opa - version: 1.12.0 + version: 2.0.0 - name: auth-cron repository: file://../apps/auth-cron/helm - version: 1.12.0 + version: 2.0.0 - name: auth-manager repository: file://../apps/auth-manager/helm - version: 1.12.0 + version: 2.0.0 - name: nginx repository: oci://acrarolibotnonprod.azurecr.io/helm/common version: 2.1.6 - name: token-kiosk repository: file://../apps/token-kiosk/helm - version: 1.12.0 + version: 2.0.0 - name: nginx repository: oci://acrarolibotnonprod.azurecr.io/helm/common version: 2.1.6 - name: grafana-datasources repository: oci://acrarolibotnonprod.azurecr.io/helm/infra version: 1.0.0 -digest: sha256:0797bfd08fb9ee79413ee32bc2944d1052ed7e250c9140e5a310cbfa4cbf1e73 -generated: "2026-07-22T09:52:31.741378493+03:00" +digest: sha256:c03e1cf81dd8bcadcf3eebdc5de47a005b1502d98cd022c2cb3dbbfcb7ccfdc3 +generated: "2026-07-23T11:03:52.432924958+03:00" diff --git a/helm/charts/opa/config/opa.yaml b/helm/charts/opa/config/opa.yaml index 525685c..9feba9a 100644 --- a/helm/charts/opa/config/opa.yaml +++ b/helm/charts/opa/config/opa.yaml @@ -31,7 +31,7 @@ decision_logs: reporting: buffer_type: event buffer_size_limit_events: {{ .Values.decisionLogs.maxBufferEvents }} - upload_size_limit_bytes: {{ .Values.decisionLogs.maxUploadSizeBytes }} + upload_size_limit_bytes: {{ .Values.decisionLogs.maxUploadSizeBytes | int64 }} min_delay_seconds: {{ .Values.decisionLogs.minDelaySeconds }} max_delay_seconds: {{ .Values.decisionLogs.maxDelaySeconds }} From a6ff5b70e97f987e133c5e90279ebc55f86627e4 Mon Sep 17 00:00:00 2001 From: Schnitz <12687466+CptSchnitz@users.noreply.github.com> Date: Thu, 23 Jul 2026 14:04:26 +0300 Subject: [PATCH 2/2] ci(global): added v to tag --- .github/workflows/build-and-push.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-and-push.yaml b/.github/workflows/build-and-push.yaml index bc99b42..d3d52fe 100644 --- a/.github/workflows/build-and-push.yaml +++ b/.github/workflows/build-and-push.yaml @@ -73,7 +73,7 @@ jobs: uses: docker/build-push-action@v7 with: context: . - tags: ${{ secrets.ACR_URL }}/infra/${{ matrix.service }}:${{ matrix.version }} + tags: ${{ secrets.ACR_URL }}/infra/${{ matrix.service }}:v${{ matrix.version }} cache-from: type=gha cache-to: type=gha,mode=max file: ${{ matrix.dockerfile }}