2020-03-11 12:13:36 +00:00
|
|
|
---
|
2021-04-29 12:20:50 +00:00
|
|
|
- hosts: kube_node:kube_control_plane
|
2020-03-11 12:13:36 +00:00
|
|
|
tasks:
|
|
|
|
- name: Remove old cloud provider config
|
|
|
|
file:
|
|
|
|
path: "{{ item }}"
|
|
|
|
state: absent
|
|
|
|
with_items:
|
|
|
|
- /etc/kubernetes/cloud_config
|
2021-03-24 00:26:05 +00:00
|
|
|
- hosts: kube_control_plane[0]
|
2020-03-11 12:13:36 +00:00
|
|
|
tasks:
|
|
|
|
- name: Include kubespray-default variables
|
|
|
|
include_vars: ../roles/kubespray-defaults/defaults/main.yaml
|
|
|
|
- name: Copy get_cinder_pvs.sh to master
|
|
|
|
copy:
|
|
|
|
src: get_cinder_pvs.sh
|
|
|
|
dest: /tmp
|
|
|
|
mode: u+rwx
|
2020-07-27 13:24:17 +00:00
|
|
|
- name: Get PVs provisioned by in-tree cloud provider # noqa 301
|
2020-03-11 12:13:36 +00:00
|
|
|
command: /tmp/get_cinder_pvs.sh
|
|
|
|
register: pvs
|
|
|
|
- name: Remove get_cinder_pvs.sh
|
|
|
|
file:
|
|
|
|
path: /tmp/get_cinder_pvs.sh
|
|
|
|
state: absent
|
2020-07-27 13:24:17 +00:00
|
|
|
- name: Rewrite the "pv.kubernetes.io/provisioned-by" annotation # noqa 301
|
2020-03-11 12:13:36 +00:00
|
|
|
command: "{{ bin_dir }}/kubectl annotate --overwrite pv {{ item }} pv.kubernetes.io/provisioned-by=cinder.csi.openstack.org"
|
|
|
|
loop: "{{ pvs.stdout_lines | list }}"
|