clean up tags (#8880)

This commit is contained in:
Samuel Liu
2022-05-31 22:52:53 +08:00
committed by GitHub
parent 14acd124bc
commit 1600fd9082
10 changed files with 0 additions and 42 deletions

View File

@@ -1,6 +1,5 @@
---
- include_tasks: vsphere-credentials-check.yml
tags: vsphere-csi-driver
- name: vSphere CSI Driver | Generate CSI cloud-config
template:
@@ -10,7 +9,6 @@
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:
@@ -27,14 +25,12 @@
- 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: "{{ 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:
@@ -42,7 +38,6 @@
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:
@@ -56,4 +51,3 @@
- not item is skipped
loop_control:
label: "{{ item.item }}"
tags: vsphere-csi-driver