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

Update helm3 command builder to use new repository location instead o… #70

Merged
merged 1 commit into from Nov 24, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/Helm3CommandBuilder.py
Expand Up @@ -13,11 +13,11 @@ def build_helm_upgrade_command(self, release_name, chart_ref):
def build_repo_commands(self, skip_stable, dry_run):
lines = []
if not skip_stable:
add_stable_command = 'helm repo add cf-stable https://kubernetes-charts.storage.googleapis.com/'
add_stable_command = 'helm repo add cf-stable https://charts.helm.sh/stable'
if dry_run:
add_stable_command = 'echo ' + add_stable_command
lines.append(add_stable_command)
return lines

def build_pull_command(self):
return 'helm pull'
return 'helm pull'