From cd59130fa10226ce645a9d417aac8b5bc8ec5217 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Kluczek?= Date: Fri, 5 Apr 2024 12:45:50 +0200 Subject: [PATCH] OCT-1469 Separate variables for snapshotter and multisigger --- .github/workflows/ci-run.yml | 3 +++ .github/workflows/tpl-deploy-app.yml | 5 +++++ ci/argocd/templates/octant-application.yaml | 4 +++- 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-run.yml b/.github/workflows/ci-run.yml index ce41dc0ead..d18daf1997 100644 --- a/.github/workflows/ci-run.yml +++ b/.github/workflows/ci-run.yml @@ -186,6 +186,7 @@ jobs: network-name: local chain-name: localhost snapshotter-enabled: false + multisigger-enabled: false scheduler-enabled: true glm-claim-enabled: true vault-confirm-withdrawals-enabled: true @@ -212,6 +213,8 @@ jobs: chain-id: 1337 network-name: local chain-name: localhost + snapshotter-enabled: false + multisigger-enabled: false web-client-replicas: 0 coin-prices-server-replicas: 0 backend-server-replicas: 0 diff --git a/.github/workflows/tpl-deploy-app.yml b/.github/workflows/tpl-deploy-app.yml index e8f7ed9e93..16e3fe3127 100644 --- a/.github/workflows/tpl-deploy-app.yml +++ b/.github/workflows/tpl-deploy-app.yml @@ -50,6 +50,10 @@ on: required: false default: false type: boolean + multisigger-enabled: + required: false + default: true + type: boolean scheduler-enabled: required: false default: false @@ -114,6 +118,7 @@ env: CHAIN_NAME: ${{ inputs.chain-name }} OCTANT_BACKEND_SECRET_KEY: some-random-key SNAPSHOTTER_ENABLED: ${{ inputs.snapshotter-enabled }} + MULTISIGGER_ENABLED: ${{ inputs.multisigger-enabled }} SCHEDULER_ENABLED: ${{ inputs.scheduler-enabled }} GLM_CLAIM_ENABLED: ${{ inputs.glm-claim-enabled }} VAULT_CONFIRM_WITHDRAWALS_ENABLED: ${{ inputs.vault-confirm-withdrawals-enabled }} diff --git a/ci/argocd/templates/octant-application.yaml b/ci/argocd/templates/octant-application.yaml index bcbcee4e95..bd6aa96639 100644 --- a/ci/argocd/templates/octant-application.yaml +++ b/ci/argocd/templates/octant-application.yaml @@ -15,7 +15,7 @@ spec: namespace: $DEPLOYMENT_ID sources: - repoURL: 'https://gitlab.com/api/v4/projects/48137258/packages/helm/devel' - targetRevision: 0.2.43 + targetRevision: 0.2.44 chart: octant helm: parameters: @@ -60,6 +60,8 @@ spec: value: '$GLM_CLAIM_ENABLED' - name: 'backendServer.snapshotter.enabled' value: '$SNAPSHOTTER_ENABLED' + - name: 'backendServer.multisigger.enabled' + value: '$MULTISIGGER_ENABLED' - name: 'backendServer.rpcUrl' value: '$BACKEND_RPC_URL' # Hardcoded in this file