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

Upgrade Helm Operator Chart Version Default #75

Merged
merged 1 commit into from
Aug 31, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions src/k8s-configuration/azext_k8s_configuration/_help.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
--cluster-type connectedClusters --name MyGitConfig --operator-instance-name OperatorInst01 \\
--operator-namespace OperatorNamespace01 --operator-type flux --operator-params "'--git-readonly'" \\
--repository-url git://github.com/fluxHowTo/flux-get-started --enable-helm-operator \\
--helm-operator-chart-version 1.2.0 --scope namespace --helm-operator-params '--set helm.versions=v3' \\
--helm-operator-chart-version 1.4.0 --scope namespace --helm-operator-params '--set helm.versions=v3' \\
--ssh-private-key '' --ssh-private-key-file '' --https-user '' --https-key '' \\
--ssh-known-hosts '' --ssh-known-hosts-file ''
"""
Expand Down Expand Up @@ -66,5 +66,5 @@
az k8s-configuration update --resource-group MyResourceGroup --cluster-name MyClusterName \\
--cluster-type connectedClusters --name MyConfigurationName --enable-helm-operator \\
--repository-url git://github.com/fluxHowTo/flux-get-started --operator-params "'--git-readonly'" \\
--helm-operator-chart-version 1.2.0 --helm-operator-params '--set helm.versions=v3'
--helm-operator-chart-version 1.4.0 --helm-operator-params '--set helm.versions=v3'
"""
2 changes: 1 addition & 1 deletion src/k8s-configuration/azext_k8s_configuration/custom.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def show_k8s_configuration(client, resource_group_name, cluster_name, name, clus
# pylint: disable=too-many-locals
jonathan-innis marked this conversation as resolved.
Show resolved Hide resolved
def create_k8s_configuration(cmd, client, resource_group_name, cluster_name, name, repository_url, scope, cluster_type,
operator_instance_name=None, operator_namespace='default',
helm_operator_chart_version='1.2.0', operator_type='flux', operator_params='',
helm_operator_chart_version='1.4.0', operator_type='flux', operator_params='',
ssh_private_key='', ssh_private_key_file='', https_user='', https_key='',
ssh_known_hosts='', ssh_known_hosts_file='', enable_helm_operator=None,
helm_operator_params=''):
Expand Down