You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hetzner-ansible/roles/kubernetes/cloud-controller-manager/tasks/main.yml

44 lines
993 B
YAML

---
### tags:
### ccm
- name: Download Hetzner CCM
ansible.builtin.get_url:
url: https://github.com/hetznercloud/hcloud-cloud-controller-manager/releases/download/v1.12.0/ccm-networks.yaml
dest: /tmp/ccm.yaml
mode: '0664'
when:
- inventory_hostname == groups['kube-master'][0]
tags:
- ccm
- name: Create secret for Hetzner CCM
kubernetes.core.k8s:
definition:
api_version: v1
kind: Secret
metadata:
namespace: kube-system
name: hcloud
label:
app: ccm
provider: hcloud
type: Opaque
data:
network: "{{ stage | string | b64encode }}"
token: "{{ hetzner_authentication_token | string | b64encode }}"
when:
- inventory_hostname == groups['kube-master'][0]
tags:
- ccm
- name: Apply Hetzner CCM manifest to the cluster.
kubernetes.core.k8s:
state: present
src: /tmp/ccm.yaml
when:
- inventory_hostname == groups['kube-master'][0]
tags:
- ccm