Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
K
Kubespray
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Mirror
Kubespray
Commits
aaa27d0a
Commit
aaa27d0a
authored
7 years ago
by
Brad Beam
Committed by
Matthew Mosesohn
7 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Adding quotes around parameters in cloud_config (#1664)
This is to help support escapes and special characters
parent
9302ce00
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
roles/kubernetes/preinstall/templates/openstack-cloud-config.j2
+6
-6
6 additions, 6 deletions
...kubernetes/preinstall/templates/openstack-cloud-config.j2
roles/kubernetes/preinstall/templates/vsphere-cloud-config.j2
+6
-6
6 additions, 6 deletions
...s/kubernetes/preinstall/templates/vsphere-cloud-config.j2
with
12 additions
and
12 deletions
roles/kubernetes/preinstall/templates/openstack-cloud-config.j2
+
6
−
6
View file @
aaa27d0a
[Global]
auth-url={{ openstack_auth_url }}
username={{ openstack_username }}
password={{ openstack_password }}
region={{ openstack_region }}
tenant-id={{ openstack_tenant_id }}
auth-url=
"
{{ openstack_auth_url }}
"
username=
"
{{ openstack_username }}
"
password=
"
{{ openstack_password }}
"
region=
"
{{ openstack_region }}
"
tenant-id=
"
{{ openstack_tenant_id }}
"
{% if openstack_domain_name is defined and openstack_domain_name != "" %}
domain-name={{ openstack_domain_name }}
domain-name=
"
{{ openstack_domain_name }}
"
{% endif %}
{% if openstack_blockstorage_version is defined %}
...
...
This diff is collapsed.
Click to expand it.
roles/kubernetes/preinstall/templates/vsphere-cloud-config.j2
+
6
−
6
View file @
aaa27d0a
[Global]
datacenter = {{ vsphere_datacenter }}
datastore = {{ vsphere_datastore }}
datacenter =
"
{{ vsphere_datacenter }}
"
datastore =
"
{{ vsphere_datastore }}
"
insecure-flag = {{ vsphere_insecure }}
password = {{ vsphere_password }}
password =
"
{{ vsphere_password }}
"
port = {{ vsphere_vcenter_port }}
server = {{ vsphere_vcenter_ip }}
user = {{ vsphere_user }}
working-dir = {{ vsphere_working_dir }}
server =
"
{{ vsphere_vcenter_ip }}
"
user =
"
{{ vsphere_user }}
"
working-dir =
"
{{ vsphere_working_dir }}
"
{% if vsphere_vm_uuid is defined %}
vm-uuid = {{ vsphere_vm_uuid }}
{% endif %}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment