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

feature: update starship context to include timeout, update tests #562

Merged
merged 3 commits into from
Oct 3, 2024
Merged
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
Prev Previous commit
Next Next commit
add timeout to params
  • Loading branch information
Anmol1696 committed Oct 3, 2024
commit 0d03fde4f517d778a665236b50bad791c49ccec9
5 changes: 4 additions & 1 deletion clients/js/packages/cli/src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ export const params: string[] = [
'repo',
'repoUrl',
'chart',
'namespace'
'namespace',
'timeout',
];

export const loadConfig = (argv: any): Config => {
Expand Down Expand Up @@ -89,6 +90,8 @@ Command-line Options:
Will overide config file settings for name.
--version <ver> Specify the version of the Helm chart, default: v0.2.6.
Will overide config file settings for version.
--timeout <time> Specify the timeout for the Helm operations, default: 10m.
Will overide config file settings for timeout.

Examples:
$ starship start --config ./config/two-chain.yaml
Expand Down