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

Set blockscout k8s deployments to include erlang node name #8476

Merged
merged 8 commits into from
Aug 6, 2021
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ spec:
- -c
args:
- |
exec mix cmd --app block_scout_web "iex -e 'IEx.configure(default_prompt: \"\", alive_prompt: \"\")' -S mix phx.server"
exec mix cmd --app block_scout_web "iex --name {{ .Values.blockscout.api.nodeName}}@0.0.0.0 -e 'IEx.configure(default_prompt: \"\", alive_prompt: \"\")' -S mix phx.server"
ports:
- name: http
containerPort: {{ .Values.blockscout.api.port }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ spec:
- -c
args:
- |
exec mix cmd --app indexer "iex -e 'IEx.configure(default_prompt: \"\", alive_prompt: \"\")' -S mix"
exec mix cmd --app indexer "iex --name {{ .Values.blockscout.indexer.nodeName}}@0.0.0.0 -e 'IEx.configure(default_prompt: \"\", alive_prompt: \"\")' -S mix"
ports:
- name: health
containerPort: {{ .Values.blockscout.indexer.port }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ spec:
- -c
args:
- |
exec mix cmd --app block_scout_web "iex -e 'IEx.configure(default_prompt: \"\", alive_prompt: \"\")' -S mix phx.server"
exec mix cmd --app block_scout_web "iex --name {{ .Values.blockscout.web.nodeName}}@0.0.0.0 -e 'IEx.configure(default_prompt: \"\", alive_prompt: \"\")' -S mix phx.server"
ports:
- name: http
containerPort: {{ .Values.blockscout.web.port }}
Expand Down
9 changes: 8 additions & 1 deletion packages/helm-charts/blockscout/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ blockscout:
requests:
memory: 1000Mi
cpu: 2
nodeName: blockscout-indexer
api:
port: 4000
strategy:
Expand Down Expand Up @@ -98,6 +99,7 @@ blockscout:
requests:
memory: 500Mi
cpu: 500m
nodeName: blockscout-api
web:
port: 4000
strategy:
Expand Down Expand Up @@ -131,6 +133,10 @@ blockscout:
memory: 500Mi
cpu: 700m
pool_size: 10
sourcify:
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think that link is broken, it just redirects to this pull request changes page

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, it's not broken, actually, it's just github's navigation. There is a sourcify section in this file on line 154. I think in yaml, it will take precedence.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ah ok, I guess this is merge damage. I originally needed to add this to get helm to deploy.

enabled: false
serverUrl: ""
repoUrl: ""
readinessProbe:
enabled: true
initialDelaySeconds: 10
Expand All @@ -153,6 +159,7 @@ blockscout:
requests:
memory: 250M
cpu: 500m
nodeName: blockscout-web
image:
repository: gcr.io/celo-testnet/blockscout
tag: v2.0.4-beta-celo
Expand All @@ -165,7 +172,7 @@ blockscout:
name: blockscout
drop: "false"
jsonrpc_http_url: http://tx-nodes-private:8545
jsonrpc_ws_url: ws://tx-nodes-private:8546
jsonrpc_ws_url: ws://tx-nodes-private:8545
metadata_crawler:
schedule: "*/30 * * * *"
image:
Expand Down