Merge pull request #2750 from w-leads/feature/add-vmname-to-vcp-config

Add vm_name option to vsphere cloud provider config
pull/2893/head
Andreas Krüger 2018-06-14 22:22:34 +02:00 committed by GitHub
commit 3a569c9dcb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -14,6 +14,9 @@ server = "{{ vsphere_vcenter_ip }}"
{% if vsphere_vm_uuid is defined and vsphere_vm_uuid != "" %} {% if vsphere_vm_uuid is defined and vsphere_vm_uuid != "" %}
vm-uuid = "{{ vsphere_vm_uuid }}" vm-uuid = "{{ vsphere_vm_uuid }}"
{% endif %} {% endif %}
{% if vsphere_vm_name is defined and vsphere_vm_name != "" %}
vm-name = "{{ vsphere_vm_name }}"
{% endif %}
{% endif %} {% endif %}
{% if kube_version | version_compare('v1.9.2', '>=') %} {% if kube_version | version_compare('v1.9.2', '>=') %}