summaryrefslogtreecommitdiffstats
path: root/ansible/rancher_kubernetes.yml
diff options
context:
space:
mode:
authorPetr Ospalý <p.ospaly@partner.samsung.com>2018-12-19 14:57:05 +0100
committerPetr Ospalý <p.ospaly@partner.samsung.com>2018-12-19 14:57:05 +0100
commit1ae03932c7000a2830c556730406c774f6d3a783 (patch)
treee567b1f81ef26c01ac8c99482026f6ea1558d964 /ansible/rancher_kubernetes.yml
parentb8f3d733e03045b0484acee786e3e095cc1b4d92 (diff)
Add the playbook for deploying the kubernetes
As the orchestration manager is used the rancher project Change-Id: I178bfc8edc7f381dd735e3b19ac34f3cf6efdf53 Issue-ID: OOM-1551 Signed-off-by: Petr Ospalý <p.ospaly@partner.samsung.com>
Diffstat (limited to 'ansible/rancher_kubernetes.yml')
-rw-r--r--ansible/rancher_kubernetes.yml31
1 files changed, 31 insertions, 0 deletions
diff --git a/ansible/rancher_kubernetes.yml b/ansible/rancher_kubernetes.yml
new file mode 100644
index 00000000..196f1fc2
--- /dev/null
+++ b/ansible/rancher_kubernetes.yml
@@ -0,0 +1,31 @@
+---
+- name: Install binaries for controlling deployment
+ hosts: infrastructure
+ roles:
+ - kubectl
+ - helm
+
+- name: Deploy rancher server and create k8s env
+ hosts: infrastructure
+ roles:
+ - rancher
+ vars:
+ rancher_role: server
+
+- name: Deploy rancher agents
+ hosts: kubernetes
+ roles:
+ - rancher
+ vars:
+ rancher_role: agent
+
+- name: Wait for Kubernetes environment to be healthy
+ hosts: infrastructure
+ tasks:
+ - name: Check cluster health
+ uri:
+ url: "{{ rancher_server_url }}/v2-beta/projects/{{ k8s_env_id }}"
+ register: env_info
+ retries: 30
+ delay: 15
+ until: "env_info.json.healthState == 'healthy'"