Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add apps panel variables #8936

Merged
merged 2 commits into from
Nov 4, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,20 @@ spec:
value: {{ .Values.blockscout.web.sourcify.repoUrl | quote }}
- name: CHAIN_ID
value: {{ .Values.blockscout.networkID | quote }}
- name: APPS_MENU
value: {{ .Values.blockscout.web.appsMenu.enabled | quote }}
- name: EXTERNAL_APPS
value: {{ .Values.blockscout.web.appsMenu.externalApps | quote }}
- name: BRIDGES
value: {{ .Values.blockscout.web.appsMenu.bridges | quote }}
- name: OTHER_BRIDGES
value: {{ .Values.blockscout.web.appsMenu.otherBridges | quote }}
- name: BRIDGES_ALM
value: {{ .Values.blockscout.web.appsMenu.bridgesAlm | quote }}
- name: DEFI_MENU_LIST
value: {{ .Values.blockscout.web.appsMenu.defiList | quote }}
- name: NFT_MENU_LIST
value: {{ .Values.blockscout.web.appsMenu.nftList | quote }}
{{ include "celo.blockscout-env-vars" . | indent 8 }}
{{- $data := dict "Values" .Values "Database" .Values.blockscout.web.db }}
{{ include "celo.blockscout-db-sidecar" $data | indent 6 }}
Expand Down
8 changes: 8 additions & 0 deletions packages/helm-charts/blockscout/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,14 @@ blockscout:
memory: 250M
cpu: 500m
erlangNodeName: blockscout-web
appsMenu:
enabled: true
externalApps: '[{"url":"https://ubeswap.org/", "title":"Ubeswap"}, {"url":"https://moola.market/", "title":"Moola"}]'
bridges: '[{"url":"https://optics.xyz/", "title":"Optics"},{"url":"https://bridge.mobius.money/#/", "title": "Mobius"}]'
otherBridges: '[]'
bridgesAlm: '[]'
defiList: '[{"url":"https://thecelo.com/", "title":"The Celo"}, {"url":"https://stats.celo.org/", "title":"Stats"}, {"url":"https://celoreserve.org/", "title":"Celo Reserve"}, {"url":"https://celo.org/validators/explore", "title":"Validators"}]'
nftList: '[{"url":"https://unifty.io/celo/market.html ", "Unifty"}]'
image:
repository: gcr.io/celo-testnet/blockscout
tag: v2.0.4-beta-celo
Expand Down