2017-09-18 20:30:57 +08:00
|
|
|
---
|
|
|
|
- name: Set external kube-apiserver endpoint
|
|
|
|
set_fact:
|
|
|
|
external_apiserver_endpoint: >-
|
|
|
|
{%- if loadbalancer_apiserver is defined and loadbalancer_apiserver.port is defined -%}
|
2017-11-24 00:15:48 +08:00
|
|
|
https://{{ apiserver_loadbalancer_domain_name }}:{{ loadbalancer_apiserver.port|default(kube_apiserver_port) }}
|
2017-09-18 20:30:57 +08:00
|
|
|
{%- else -%}
|
2018-05-31 22:34:02 +08:00
|
|
|
https://{{ kube_apiserver_access_address }}:{{ kube_apiserver_port }}
|
2017-09-18 20:30:57 +08:00
|
|
|
{%- endif -%}
|
2017-10-05 15:43:04 +08:00
|
|
|
tags:
|
|
|
|
- facts
|
2017-09-18 20:30:57 +08:00
|
|
|
|
|
|
|
- name: Create kube config dir
|
|
|
|
file:
|
|
|
|
path: "/root/.kube"
|
|
|
|
mode: "0700"
|
|
|
|
state: directory
|
|
|
|
|
|
|
|
- name: Copy admin kubeconfig to root user home
|
|
|
|
copy:
|
|
|
|
src: "{{ kube_config_dir }}/admin.conf"
|
|
|
|
dest: "/root/.kube/config"
|
|
|
|
remote_src: yes
|
2018-05-14 17:29:48 +08:00
|
|
|
mode: "0600"
|
2017-09-18 20:30:57 +08:00
|
|
|
backup: yes
|
|
|
|
|
|
|
|
- name: Copy admin kubeconfig to ansible host
|
|
|
|
fetch:
|
|
|
|
src: "{{ kube_config_dir }}/admin.conf"
|
|
|
|
dest: "{{ artifacts_dir }}/admin.conf"
|
|
|
|
flat: yes
|
|
|
|
validate_checksum: no
|
|
|
|
run_once: yes
|
|
|
|
when: kubeconfig_localhost|default(false)
|
|
|
|
|
|
|
|
- name: Copy kubectl binary to ansible host
|
|
|
|
fetch:
|
|
|
|
src: "{{ bin_dir }}/kubectl"
|
2018-04-09 18:19:26 +08:00
|
|
|
dest: "{{ artifacts_dir }}/kubectl"
|
2017-09-18 20:30:57 +08:00
|
|
|
flat: yes
|
|
|
|
validate_checksum: no
|
|
|
|
become: no
|
|
|
|
run_once: yes
|
|
|
|
when: kubectl_localhost|default(false)
|
2018-02-16 20:53:35 +08:00
|
|
|
|
|
|
|
- name: create helper script kubectl.sh on ansible host
|
|
|
|
copy:
|
|
|
|
content: |
|
|
|
|
#!/bin/bash
|
2018-11-20 10:28:51 +08:00
|
|
|
kubectl --kubeconfig=${BASH_SOURCE%/*}/admin.conf $@
|
2018-02-16 20:53:35 +08:00
|
|
|
dest: "{{ artifacts_dir }}/kubectl.sh"
|
|
|
|
mode: 0755
|
|
|
|
become: no
|
|
|
|
run_once: yes
|
|
|
|
delegate_to: localhost
|
|
|
|
when: kubectl_localhost|default(false) and kubeconfig_localhost|default(false)
|