Remove extraneous quote in non-TLS kubeconfig

This single quote is being written as part of the non-TLS
kubeconfig file content. It should not be there.

Change-Id: Icf737b06f8473082f16652f0c434d584809e9dfa
This commit is contained in:
Dale Smith 2024-05-10 10:05:02 +12:00
parent 260925ec64
commit 65430f8efe

@ -192,7 +192,7 @@ def _config_cluster_kubernetes(cluster, cluster_template, cfg_dir,
"kind: Config\n"
"preferences: {}\n"
"users:\n"
"- name: %(name)s'\n"
"- name: %(name)s\n"
% {'name': cluster.name, 'api_address': cluster.api_address})
else:
if not use_keystone: