486b223e01
This replaces kube-master with kube_control_plane because of [1]: The Kubernetes project is moving away from wording that is considered offensive. A new working group WG Naming was created to track this work, and the word "master" was declared as offensive. A proposal was formalized for replacing the word "master" with "control plane". This means it should be removed from source code, documentation, and user-facing configuration from Kubernetes and its sub-projects. NOTE: The reason why this changes it to kube_control_plane not kube-control-plane is for valid group names on ansible. [1]: https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/kubeadm/2067-rename-master-label-taint/README.md#motivation
54 lines
1.8 KiB
YAML
54 lines
1.8 KiB
YAML
---
|
|
- include_tasks: vsphere-credentials-check.yml
|
|
tags: vsphere-csi-driver
|
|
|
|
- name: vSphere CSI Driver | Generate CSI cloud-config
|
|
template:
|
|
src: "{{ item }}.j2"
|
|
dest: "{{ kube_config_dir }}/{{ item }}"
|
|
mode: 0640
|
|
with_items:
|
|
- vsphere-csi-cloud-config
|
|
when: inventory_hostname == groups['kube_control_plane'][0]
|
|
tags: vsphere-csi-driver
|
|
|
|
- name: vSphere CSI Driver | Generate Manifests
|
|
template:
|
|
src: "{{ item }}.j2"
|
|
dest: "{{ kube_config_dir }}/{{ item }}"
|
|
with_items:
|
|
- vsphere-csi-controller-rbac.yml
|
|
- vsphere-csi-controller-ss.yml
|
|
- vsphere-csi-node.yml
|
|
register: vsphere_csi_manifests
|
|
when: inventory_hostname == groups['kube_control_plane'][0]
|
|
tags: vsphere-csi-driver
|
|
|
|
- name: vSphere CSI Driver | Generate a CSI secret manifest
|
|
command: "{{ bin_dir }}/kubectl create secret generic vsphere-config-secret --from-file=csi-vsphere.conf={{ kube_config_dir }}/vsphere-csi-cloud-config -n kube-system --dry-run --save-config -o yaml"
|
|
register: vsphere_csi_secret_manifest
|
|
when: inventory_hostname == groups['kube_control_plane'][0]
|
|
no_log: true
|
|
tags: vsphere-csi-driver
|
|
|
|
- name: vSphere CSI Driver | Apply a CSI secret manifest
|
|
command:
|
|
cmd: "{{ bin_dir }}/kubectl apply -f -"
|
|
stdin: "{{ vsphere_csi_secret_manifest.stdout }}"
|
|
when: inventory_hostname == groups['kube_control_plane'][0]
|
|
no_log: true
|
|
tags: vsphere-csi-driver
|
|
|
|
- name: vSphere CSI Driver | Apply Manifests
|
|
kube:
|
|
kubectl: "{{ bin_dir }}/kubectl"
|
|
filename: "{{ kube_config_dir }}/{{ item.item }}"
|
|
state: "latest"
|
|
with_items:
|
|
- "{{ vsphere_csi_manifests.results }}"
|
|
when:
|
|
- inventory_hostname == groups['kube_control_plane'][0]
|
|
- not item is skipped
|
|
loop_control:
|
|
label: "{{ item.item }}"
|
|
tags: vsphere-csi-driver
|