Skip to content

Commit

Permalink
OCT-1469 Separate variables for snapshotter and multisigger (#132)
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-code authored Apr 5, 2024
2 parents 298ea01 + cd59130 commit 2089aa1
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/ci-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/tpl-deploy-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 }}
Expand Down
4 changes: 3 additions & 1 deletion ci/argocd/templates/octant-application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 2089aa1

Please sign in to comment.