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,7 +1,6 @@
---
- include: credentials-check.yml
tags: oci
- name: "OCI Cloud Controller | Generate Cloud Provider Configuration"
template:
@@ -9,7 +8,6 @@
dest: "{{ kube_config_dir }}/controller-manager-config.yml"
mode: 0644
when: inventory_hostname == groups['kube_control_plane'][0]
tags: oci
- name: "OCI Cloud Controller | Slurp Configuration"
slurp:
@@ -20,7 +18,6 @@
set_fact:
controller_manager_config_base64: "{{ controller_manager_config.content }}"
when: inventory_hostname == groups['kube_control_plane'][0]
tags: oci
- name: "OCI Cloud Controller | Generate Manifests"
template:
@@ -28,7 +25,6 @@
dest: "{{ kube_config_dir }}/oci-cloud-provider.yml"
mode: 0644
when: inventory_hostname == groups['kube_control_plane'][0]
tags: oci
- name: "OCI Cloud Controller | Apply Manifests"
kube:
@@ -36,4 +32,3 @@
filename: "{{ kube_config_dir }}/oci-cloud-provider.yml"
state: latest
when: inventory_hostname == groups['kube_control_plane'][0]
tags: oci