Updating vsphere cloud provider support
This commit is contained in:
parent
df476b0088
commit
dbf13290f5
6 changed files with 64 additions and 73 deletions
|
@ -32,7 +32,7 @@ spec:
|
|||
- --node-monitor-period={{ kube_controller_node_monitor_period }}
|
||||
- --pod-eviction-timeout={{ kube_controller_pod_eviction_timeout }}
|
||||
- --v={{ kube_log_level }}
|
||||
{% if cloud_provider is defined and cloud_provider in ["openstack", "azure"] %}
|
||||
{% if cloud_provider is defined and cloud_provider in ["openstack", "azure", "vsphere"] %}
|
||||
- --cloud-provider={{cloud_provider}}
|
||||
- --cloud-config={{ kube_config_dir }}/cloud_config
|
||||
{% elif cloud_provider is defined and cloud_provider == "aws" %}
|
||||
|
@ -54,7 +54,7 @@ spec:
|
|||
- mountPath: {{ kube_cert_dir }}
|
||||
name: ssl-certs-kubernetes
|
||||
readOnly: true
|
||||
{% if cloud_provider is defined and cloud_provider in ["openstack", "azure"] %}
|
||||
{% if cloud_provider is defined and cloud_provider in ["openstack", "azure", "vsphere" ] %}
|
||||
- mountPath: {{ kube_config_dir }}/cloud_config
|
||||
name: cloudconfig
|
||||
readOnly: true
|
||||
|
@ -63,7 +63,7 @@ spec:
|
|||
- hostPath:
|
||||
path: {{ kube_cert_dir }}
|
||||
name: ssl-certs-kubernetes
|
||||
{% if cloud_provider is defined and cloud_provider in ["openstack", "azure"] %}
|
||||
{% if cloud_provider is defined and cloud_provider in ["openstack", "azure", "vsphere"] %}
|
||||
- hostPath:
|
||||
path: {{ kube_config_dir }}/cloud_config
|
||||
name: cloudconfig
|
||||
|
|
|
@ -42,7 +42,7 @@ KUBELET_NETWORK_PLUGIN="--hairpin-mode=promiscuous-bridge --network-plugin=kuben
|
|||
{% endif %}
|
||||
# Should this cluster be allowed to run privileged docker containers
|
||||
KUBE_ALLOW_PRIV="--allow-privileged=true"
|
||||
{% if cloud_provider is defined and cloud_provider in ["openstack", "azure", "vsphere" ] %}
|
||||
{% if cloud_provider is defined and cloud_provider in ["openstack", "azure", "vsphere"] %}
|
||||
KUBELET_CLOUDPROVIDER="--cloud-provider={{ cloud_provider }} --cloud-config={{ kube_config_dir }}/cloud_config"
|
||||
{% elif cloud_provider is defined and cloud_provider == "aws" %}
|
||||
KUBELET_CLOUDPROVIDER="--cloud-provider={{ cloud_provider }}"
|
||||
|
|
|
@ -29,16 +29,22 @@ openstack_password: "{{ lookup('env','OS_PASSWORD') }}"
|
|||
openstack_region: "{{ lookup('env','OS_REGION_NAME') }}"
|
||||
openstack_tenant_id: "{{ lookup('env','OS_TENANT_ID')|default(lookup('env','OS_PROJECT_ID'),true) }}"
|
||||
|
||||
# For the vsphere integration, kubelet will need credentials to access
|
||||
# vsphere apis
|
||||
# Documentation regarting these values can be found
|
||||
# https://github.com/kubernetes/kubernetes/blob/master/pkg/cloudprovider/providers/vsphere/vsphere.go#L105
|
||||
vsphere_vcenter_ip: "{{ lookup('env', 'VSPHERE_VCENTER') }}"
|
||||
vsphere_vcenter_port: "{{ lookup('env', 'VSPHERE_VCENTER_PORT') }}"
|
||||
vsphere_user: "{{ lookup('env', 'VSPHERE_USER') }}"
|
||||
vsphere_password: "{{ lookup('env', 'VSPHERE_PASSWORD') }}"
|
||||
vsphere_datacenter: "{{ lookup('env', 'VSPHERE_DATACENTER') }}"
|
||||
vsphere_datastore: "{{ lookup('env', 'VSPHERE_DATASTORE') }}"
|
||||
vsphere_working_dir: "{{ lookup('env', 'VSPHERE_WORKING_DIR') }}"
|
||||
vsphere_insecure: "{{ lookup('env', 'VSPHERE_INSECURE') }}"
|
||||
vsphere_scsi_controller_type: pvscsi
|
||||
# vsphere_public_network is name of the network the VMs are joined to
|
||||
vsphere_public_network: "{{ lookup('env', 'VSPHERE_PUBLIC_NETWORK')|default('') }}"
|
||||
|
||||
# Container Linux by CoreOS cloud init config file to define /etc/resolv.conf content
|
||||
# for hostnet pods and infra needs
|
||||
resolveconf_cloud_init_conf: /etc/resolveconf_cloud_init.conf
|
||||
|
||||
# For the vSphere integration kubelet will need credentials to access
|
||||
# the api. Per default this values will be
|
||||
# read from the environment.
|
||||
vsphere_username: "{{ lookup('env', VSPHERE_USERNAME ) }}"
|
||||
vsphere_password: "{{ lookup('env', VSPHERE_PASSWORD ) }}"
|
||||
vsphere_server: "{{ lookup('env', VSPHERE_SERVER ) }}"
|
||||
vsphere_datacenter: "{{ lookup('env', VSPHERE_DATACENTER ) }}"
|
||||
vsphere_datastore: "{{ lookup('env', VSPHERE_DATASTORE ) }}"
|
||||
vsphere_working_dir: "{{ lookup('env', VSPHERE_WORKING_DIR ) }}"
|
||||
|
|
|
@ -64,21 +64,13 @@
|
|||
|
||||
- name: check cloud_provider value
|
||||
fail:
|
||||
msg: "If set the 'cloud_provider' var must be set either to 'generic', 'gce', 'aws', 'azure', 'vsphere', or 'openstack'"
|
||||
when: cloud_provider is defined and cloud_provider not in ['generic', 'gce', 'aws', 'openstack', 'azure', 'vsphere']
|
||||
msg: "If set the 'cloud_provider' var must be set either to 'generic', 'gce', 'aws', 'azure', 'openstack' or 'vsphere'"
|
||||
when: cloud_provider is defined and cloud_provider not in ['generic', 'gce', 'aws', 'azure', 'openstack', 'vsphere']
|
||||
tags: [cloud-provider, facts]
|
||||
|
||||
- include: openstack-credential-check.yml
|
||||
when: cloud_provider is defined and cloud_provider == 'openstack'
|
||||
tags: [cloud-provider, openstack, facts]
|
||||
|
||||
- include: azure-credential-check.yml
|
||||
when: cloud_provider is defined and cloud_provider == 'azure'
|
||||
tags: [cloud-provider, azure, facts]
|
||||
|
||||
- include: vsphere-credential-check.yml
|
||||
when: cloud_provider is defined and cloud_provider == 'vsphere'
|
||||
tags: [cloud-provider, vsphere, facts]
|
||||
- include: "{{ cloud_provider }}-credential-check.yml"
|
||||
when: cloud_provider is defined and cloud_provider in [ 'openstack', 'azure', 'vsphere' ]
|
||||
tags: [cloud-provider, "{{ cloud_provider }}", facts]
|
||||
|
||||
- name: Create cni directories
|
||||
file:
|
||||
|
@ -183,23 +175,14 @@
|
|||
state: present
|
||||
tags: bootstrap-os
|
||||
|
||||
- name: "Write {{ cloud_provider}} cloud-config"
|
||||
- name: Write cloud-config
|
||||
template:
|
||||
src: "{{ cloud_provider }}-cloud-config.j2"
|
||||
dest: "{{ kube_config_dir }}/cloud_config"
|
||||
group: "{{ kube_cert_group }}"
|
||||
mode: 0640
|
||||
when: inventory_hostname in groups['k8s-cluster'] and cloud_provider is defined and cloud_provider in [ "openstack", "vsphere" ]
|
||||
tags: [cloud-provider, openstack, vsphere]
|
||||
|
||||
- name: Write azure cloud-config
|
||||
template:
|
||||
src: azure-cloud-config.j2
|
||||
dest: "{{ kube_config_dir }}/cloud_config"
|
||||
group: "{{ kube_cert_group }}"
|
||||
mode: 0640
|
||||
when: inventory_hostname in groups['k8s-cluster'] and cloud_provider is defined and cloud_provider == "azure"
|
||||
tags: [cloud-provider, azure]
|
||||
when: inventory_hostname in groups['k8s-cluster'] and cloud_provider is defined and cloud_provider in [ 'openstack', 'azure', 'vsphere' ]
|
||||
tags: [cloud-provider, "{{ cloud_provider }}"]
|
||||
|
||||
- include: etchosts.yml
|
||||
tags: [bootstrap-os, etchosts]
|
||||
|
|
|
@ -1,30 +1,21 @@
|
|||
---
|
||||
- name: check vsphere_username value
|
||||
- name: check vsphere environment variables
|
||||
fail:
|
||||
msg: "vsphere_username is missing"
|
||||
when: vsphere_username is not defined or vsphere_username == ""
|
||||
|
||||
- name: check vsphere_password value
|
||||
fail:
|
||||
msg: "vsphere_password is missing"
|
||||
when: vsphere_password is not defined or vsphere_password == ""
|
||||
|
||||
- name: check vsphere_server value
|
||||
fail:
|
||||
msg: "vsphere_server is missing"
|
||||
when: vsphere_server is not defined or vsphere_server == ""
|
||||
|
||||
- name: check vsphere_datacenter value
|
||||
fail:
|
||||
msg: "vsphere_datacenter is missing"
|
||||
when: vsphere_datacenter is not defined or vsphere_datacenter == ""
|
||||
|
||||
- name: check vsphere_datastore value
|
||||
fail:
|
||||
msg: "vsphere_datastore is missing"
|
||||
when: vsphere_datastore is not defined or vsphere_datastore == ""
|
||||
|
||||
- name: check vsphere_working_dir value
|
||||
fail:
|
||||
msg: "vsphere_working_dir is missing"
|
||||
when: vsphere_working_dir is not defined or vsphere_working_dir == ""
|
||||
msg: "{{ item.name }} is missing"
|
||||
when: item.value is not defined or item.value == ''
|
||||
with_items:
|
||||
- name: vsphere_vcenter_ip
|
||||
value: "{{ vsphere_vcenter_ip }}"
|
||||
- name: vsphere_vcenter_port
|
||||
value: "{{ vsphere_vcenter_port }}"
|
||||
- name: vsphere_user
|
||||
value: "{{ vsphere_user }}"
|
||||
- name: vsphere_password
|
||||
value: "{{ vsphere_password }}"
|
||||
- name: vsphere_datacenter
|
||||
value: "{{ vsphere_datacenter }}"
|
||||
- name: vsphere_datastore
|
||||
value: "{{ vsphere_datastore }}"
|
||||
- name: vsphere_working_dir
|
||||
value: "{{ vsphere_working_dir }}"
|
||||
- name: vsphere_insecure
|
||||
value: "{{ vsphere_insecure }}"
|
||||
|
|
|
@ -1,9 +1,20 @@
|
|||
[Global]
|
||||
user = {{ vsphere_username }}
|
||||
password = {{ vsphere_password }}
|
||||
server = {{ vsphere_server }}
|
||||
port = 443
|
||||
insecure-flag = true
|
||||
datacenter = {{ vsphere_datacenter }}
|
||||
datastore = {{ vsphere_datastore }}
|
||||
insecure-flag = {{ vsphere_insecure }}
|
||||
password = {{ vsphere_password }}
|
||||
port = {{ vsphere_vcenter_port }}
|
||||
server = {{ vsphere_vcenter_ip }}
|
||||
user = {{ vsphere_user }}
|
||||
working-dir = {{ vsphere_working_dir }}
|
||||
{% if vsphere_vm_uuid is defined %}
|
||||
vm-uuid = {{ vsphere_vm_uuid }}
|
||||
{% endif %}
|
||||
|
||||
[Disk]
|
||||
scsicontrollertype = {{ vsphere_scsi_controller_type }}
|
||||
|
||||
{% if vsphere_public_network is defined and vsphere_public_network != "" %}
|
||||
[Network]
|
||||
public-network = {{ vsphere_public_network }}
|
||||
{% endif %}
|
||||
|
|
Loading…
Reference in a new issue