Skip to content

Commit

Permalink
Add apps panel variables (#8936)
Browse files Browse the repository at this point in the history
* Add apps panel variables

* Add some missing projects
  • Loading branch information
Enrique Ruiz authored Nov 4, 2021
1 parent d55316c commit 26b63eb
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
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"}, {"url":"https://celoterminal.com/", "title":"Celo Terminal"}, {"url":"https://celovote.com/", "title":"Celo Vote"}, {"url":"https://celowallet.app/", "title":"Celo Wallet"}]'
bridges: '[{"url":"https://optics.xyz/", "title":"Optics"},{"url":"https://bridge.mobius.money/#/", "title": "Mobius"}]'
otherBridges: '[]'
bridgesAlm: '[]'
defiList: '[{"url":"https://docs.celo.org/", "title":"Celo Docs"}, {"url":"https://forum.celo.org/", "title":"Celo Forum"}, {"url":"https://thecelo.com/", "title":"The Celo"}, {"url":"https://stats.celo.org/", "title":"Celo Stats"}, {"url":"https://celoreserve.org/", "title":"Celo Reserve"}, {"url":"https://celo.org/validators/explore", "title":"Validators"}, {"url":"https://learn.figment.io/protocols/celo", "title":"Learn Celo"}]'
nftList: '[{"url":"https://unifty.io/celo/market.html ", "title":"Unifty"}]'
image:
repository: gcr.io/celo-testnet/blockscout
tag: v2.0.4-beta-celo
Expand Down

0 comments on commit 26b63eb

Please sign in to comment.