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

feat(cli): need to allow the user to pass in the domain name for mirror node, explorer, relay, and node service endpoints #1673

Conversation

instamenta
Copy link
Contributor

@instamenta instamenta commented Mar 18, 2025

Description

Adds new flags:

  • --domain-name - for specifying domain name on:
    • solo mirror-node deploy
    • solo explorer deploy
    • solo relay deploy
  • --domain-names - for specifying deployment names for consensus nodes when genesis-network.yaml and config.txt are being built.

Related Issues

Signed-off-by: Zhan Milenkov <[email protected]>
…y' and 'solo mirror-node deploy'

Signed-off-by: Zhan Milenkov <[email protected]>
…he-user-to-pass-in-the-domain-name-to-use-for-mirror-node-mirror-node-explorer-and-service-endpoints
…ded it to 'solo network deploy' + all the 'solo node commands' where they are used

Signed-off-by: Zhan Milenkov <[email protected]>
…he-user-to-pass-in-the-domain-name-to-use-for-mirror-node-mirror-node-explorer-and-service-endpoints
Copy link
Contributor

github-actions bot commented Mar 18, 2025

Unit Test Results - Linux

  1 files  ±0   74 suites  ±0   1s ⏱️ -3s
308 tests ±0  308 ✅ ±0  0 💤 ±0  0 ❌ ±0 
313 runs  ±0  313 ✅ ±0  0 💤 ±0  0 ❌ ±0 

Results for commit e249259. ± Comparison against base commit 1d51948.

♻️ This comment has been updated with latest results.

Copy link
Contributor

github-actions bot commented Mar 18, 2025

Unit Test Results - Windows

  1 files  ±0   74 suites  ±0   4s ⏱️ -1s
308 tests ±0  308 ✅ ±0  0 💤 ±0  0 ❌ ±0 
313 runs  ±0  313 ✅ ±0  0 💤 ±0  0 ❌ ±0 

Results for commit e249259. ± Comparison against base commit 1d51948.

♻️ This comment has been updated with latest results.

Copy link
Contributor

github-actions bot commented Mar 18, 2025

E2E Test Report

 18 files  ±0  124 suites  ±0   1h 28m 44s ⏱️ - 1m 25s
311 tests ±0  311 ✅ ±0  0 💤 ±0  0 ❌ ±0 
328 runs  ±0  328 ✅ ±0  0 💤 ±0  0 ❌ ±0 

Results for commit e249259. ± Comparison against base commit 1d51948.

♻️ This comment has been updated with latest results.

Copy link

codacy-production bot commented Mar 18, 2025

Coverage summary from Codacy

See diff coverage on Codacy

Coverage variation Diff coverage
-0.02% (target: -1.00%) 90.14%
Coverage variation details
Coverable lines Covered lines Coverage
Common ancestor commit (1d51948) 31307 26700 85.28%
Head commit (e249259) 31371 (+64) 26748 (+48) 85.26% (-0.02%)

Coverage variation is the difference between the coverage for the head and common ancestor commits of the pull request branch: <coverage of head commit> - <coverage of common ancestor commit>

Diff coverage details
Coverable lines Covered lines Diff coverage
Pull request (#1673) 487 439 90.14%

Diff coverage is the percentage of lines that are covered by tests out of the coverable lines that the pull request added or modified: <covered lines added or modified>/<coverable lines added or modified> * 100%

See your quality gate settings    Change summary preferences

Codacy stopped sending the deprecated coverage status on June 5th, 2024. Learn more

Copy link

codecov bot commented Mar 18, 2025

Codecov Report

Attention: Patch coverage is 89.11704% with 53 lines in your changes missing coverage. Please review.

Project coverage is 84.24%. Comparing base (1d51948) to head (e249259).
Report is 1 commits behind head on main.

Files with missing lines Patch % Lines
src/core/templates.ts 13.33% 13 Missing ⚠️
src/commands/node/configs.ts 57.69% 10 Missing and 1 partial ⚠️
src/commands/relay.ts 91.86% 9 Missing and 1 partial ⚠️
src/commands/explorer.ts 88.05% 7 Missing and 1 partial ⚠️
src/commands/mirror-node.ts 93.85% 6 Missing and 1 partial ⚠️
src/commands/network.ts 97.14% 2 Missing ⚠️
...network-models/genesis-network-data-constructor.ts 85.71% 1 Missing ⚠️
src/core/profile-manager.ts 94.73% 1 Missing ⚠️
Additional details and impacted files

Impacted file tree graph

@@            Coverage Diff             @@
##             main    #1673      +/-   ##
==========================================
- Coverage   84.25%   84.24%   -0.02%     
==========================================
  Files         212      212              
  Lines       31307    31371      +64     
  Branches     2838     2168     -670     
==========================================
+ Hits        26378    26427      +49     
- Misses       4740     4817      +77     
+ Partials      189      127      -62     
Files with missing lines Coverage Δ
src/commands/account.ts 82.11% <100.00%> (-0.09%) ⬇️
src/commands/flags.ts 67.65% <100.00%> (+0.32%) ⬆️
src/commands/node/flags.ts 100.00% <100.00%> (ø)
src/commands/node/handlers.ts 90.52% <100.00%> (-0.06%) ⬇️
src/commands/node/tasks.ts 92.66% <100.00%> (+0.13%) ⬆️
src/core/account-manager.ts 86.65% <100.00%> (-0.06%) ⬇️
...network-models/genesis-network-data-constructor.ts 91.19% <85.71%> (-0.37%) ⬇️
src/core/profile-manager.ts 96.66% <94.73%> (-0.11%) ⬇️
src/commands/network.ts 81.64% <97.14%> (+0.77%) ⬆️
src/commands/mirror-node.ts 74.58% <93.85%> (-1.33%) ⬇️
... and 4 more

... and 69 files with indirect coverage changes

Impacted file tree graph

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

…he-user-to-pass-in-the-domain-name-to-use-for-mirror-node-mirror-node-explorer-and-service-endpoints

# Conflicts:
#	src/commands/mirror-node.ts
Signed-off-by: Zhan Milenkov <[email protected]>
Signed-off-by: instamenta <[email protected]>
Signed-off-by: Zhan Milenkov <[email protected]>
…pass-in-the-domain-name-to-use-for-mirror-node-mirror-node-explorer-and-service-endpoints' into 01040-need-to-allow-the-user-to-pass-in-the-domain-name-to-use-for-mirror-node-mirror-node-explorer-and-service-endpoints
Signed-off-by: Zhan Milenkov <[email protected]>
…he-user-to-pass-in-the-domain-name-to-use-for-mirror-node-mirror-node-explorer-and-service-endpoints

# Conflicts:
#	src/commands/explorer.ts
#	src/commands/mirror-node.ts
#	src/commands/network.ts
#	src/commands/node/flags.ts
…pass-in-the-domain-name-to-use-for-mirror-node-mirror-node-explorer-and-service-endpoints' into 01040-need-to-allow-the-user-to-pass-in-the-domain-name-to-use-for-mirror-node-mirror-node-explorer-and-service-endpoints
… fixed the taskfile solo:explorer:deploy and added new taskfile for testing connection when providing domain names to solo

Signed-off-by: instamenta <[email protected]>
Signed-off-by: instamenta <[email protected]>
@instamenta instamenta marked this pull request as ready for review March 26, 2025 14:23
@instamenta instamenta requested review from a team as code owners March 26, 2025 14:23
Signed-off-by: instamenta <[email protected]>
…he-user-to-pass-in-the-domain-name-to-use-for-mirror-node-mirror-node-explorer-and-service-endpoints

# Conflicts:
#	src/commands/node/configs.ts
#	src/commands/node/node-add-config.ts
@instamenta instamenta changed the title feat(cli): need to allow the user to pass in the domain name to use for mirror node mirror node explorer and service endpoints feat(cli): need to allow the user to pass in the domain name for mirror node, explorer, relay, and node service endpoints Mar 27, 2025
@jeromy-cannon jeromy-cannon added the PR: Ready to Merge A pull request that is ready to merge. label Mar 27, 2025
@instamenta instamenta merged commit c76d64f into main Mar 27, 2025
46 checks passed
@instamenta instamenta deleted the 01040-need-to-allow-the-user-to-pass-in-the-domain-name-to-use-for-mirror-node-mirror-node-explorer-and-service-endpoints branch March 27, 2025 13:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
PR: Ready to Merge A pull request that is ready to merge.
Projects
None yet
2 participants