-
Notifications
You must be signed in to change notification settings - Fork 45
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
CI: Update Helm chart version for dev envs to fix issue with deprecated parameters MGX-808 #637
CI: Update Helm chart version for dev envs to fix issue with deprecated parameters MGX-808 #637
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## develop #637 +/- ##
========================================
Coverage 49.47% 49.47%
========================================
Files 34 34
Lines 6321 6321
========================================
Hits 3127 3127
Misses 3194 3194 ☔ View full report in Codecov by Sentry. |
devops/helmfiles/values.yaml.gotmpl
Outdated
@@ -4,7 +4,7 @@ environment: {{ requiredEnv "ENVIRONMENT" | quote }} | |||
image: | |||
tag: {{ requiredEnv "IMAGE_TAG" | quote }} | |||
customChainspecUrl: {{ .Values | get "nodeCustomChainspecUrl" "" }} | |||
chain: {{ .Values | get "nodeChain" "rococo" }} | |||
chain: {{ .Values | get "nodeChain" "mangata-rococo-local" }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i think this should be just mangata-rococo
?
rococo
previously it was the public testnet
mangata-rococo-local
is a dev net
mangata-rococo
is the public testnet
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
when nodeChain
is configured as mangata-rococo-local
, it at least tries to create blocks, but they are not getting propagated:
namespace pr-637
https://polkadot.js.org/apps/?rpc=wss%3A%2F%2Frelaychain-alice-ws-pr-637.mangata.online#/explorer
https://polkadot.js.org/apps/?rpc=wss%3A%2F%2Fnode-01-ws-pr-637.mangata.online#/explorer
when nodeChain
is configured as mangata-rococo
it doesn't produce any block at all:
namespace pr-6352
https://polkadot.js.org/apps/?rpc=wss%3A%2F%2Frelaychain-alice-ws-pr-6352.mangata.online#/explorer
https://polkadot.js.org/apps/?rpc=wss%3A%2F%2Fnode-01-ws-pr-6352.mangata.online#/explorer
…default config to mangata-rococo-local
MGX-808