2018-09-29 09:06:19 +08:00
|
|
|
# [optional] to set up a HARBOR, and to integrate the HARBOR with k8s cluster
|
|
|
|
# read the guide: 'guide/harbor.md'
|
|
|
|
|
2017-12-25 15:05:21 +08:00
|
|
|
- hosts: harbor
|
|
|
|
roles:
|
2018-08-26 10:58:27 +08:00
|
|
|
- { role: chrony, when: "hostvars[groups.deploy[0]]['NTP_ENABLED'] == 'yes' and NEW_INSTALL == 'yes'" }
|
|
|
|
- { role: prepare, when: "NEW_INSTALL == 'yes'" }
|
|
|
|
- { role: docker, when: "NEW_INSTALL == 'yes'" }
|
|
|
|
- { role: harbor, when: "NEW_INSTALL == 'yes'" }
|
|
|
|
tasks:
|
2018-09-29 09:06:19 +08:00
|
|
|
- name: Fetching the HARBOR SERVER's CA cert
|
2018-08-26 10:58:27 +08:00
|
|
|
fetch:
|
|
|
|
src: "{{ ca_dir }}/ca.pem"
|
|
|
|
dest: "{{ base_dir }}/down/"
|
|
|
|
flat: yes
|
2017-12-25 15:05:21 +08:00
|
|
|
|
2018-02-26 20:45:17 +08:00
|
|
|
- hosts:
|
2018-03-16 18:23:34 +08:00
|
|
|
- kube-master
|
2018-05-04 22:11:08 +08:00
|
|
|
- new-master
|
2018-02-26 20:45:17 +08:00
|
|
|
- kube-node
|
|
|
|
- new-node
|
2017-12-25 15:05:21 +08:00
|
|
|
tasks:
|
2019-02-05 12:32:52 +08:00
|
|
|
- name: Define 'harbor_host', a domain
|
|
|
|
set_fact: harbor_host="{{ hostvars[groups.harbor[0]]['HARBOR_DOMAIN'] }}"
|
|
|
|
|
|
|
|
- name: Define 'harbor_host', an IP Addr
|
|
|
|
set_fact: harbor_host="{{ groups['harbor'][0] }}"
|
|
|
|
when: "hostvars[groups.harbor[0]]['HARBOR_DOMAIN'] == ''"
|
|
|
|
|
2018-09-29 09:06:19 +08:00
|
|
|
- name: Creating cert dir of the HARBOR SERVER for the docker daemon
|
2019-02-05 12:32:52 +08:00
|
|
|
file: name=/etc/docker/certs.d/{{ harbor_host }} state=directory
|
2018-08-26 10:58:27 +08:00
|
|
|
|
2018-09-29 09:06:19 +08:00
|
|
|
- name: Installing the HARBOR SERVER's cert on k8s nodes
|
2019-02-05 12:32:52 +08:00
|
|
|
copy: src={{ base_dir }}/down/ca.pem dest=/etc/docker/certs.d/{{ harbor_host }}/ca.crt
|
2017-12-25 15:05:21 +08:00
|
|
|
|
2018-09-29 09:06:19 +08:00
|
|
|
# [optional] if you have a DNS server, add an 'A record' instead
|
|
|
|
- name: Adding an '/etc/hosts' entry for the HARBOR DOMAIN
|
2018-05-04 22:11:08 +08:00
|
|
|
lineinfile:
|
|
|
|
dest: /etc/hosts
|
|
|
|
state: present
|
2019-02-05 12:32:52 +08:00
|
|
|
regexp: '{{ harbor_host }}'
|
|
|
|
line: "{{ groups['harbor'][0] }} {{ harbor_host }}"
|
|
|
|
when: "hostvars[groups.harbor[0]]['HARBOR_DOMAIN'] != ''"
|