98aca070bc234297e2cc47951861dabdd5ad36da
[infra/stack/kubernetes.git] / apps / prometheus / kubespray / playbooks / roles / install / tasks / main.yaml
1 ---
2 # ============LICENSE_START=======================================================
3 #  Copyright (C) 2019 The Nordix Foundation. All rights reserved.
4 # ================================================================================
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 #      http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 #
17 # SPDX-License-Identifier: Apache-2.0
18 # ============LICENSE_END=========================================================
19
20 - name: Load execution mode variables
21   include_vars: "{{ execution_mode }}.yaml"
22
23 - block:
24   - name: Create directories for helm repositories
25     file:
26       path: "{{ item.path }}"
27       state: "{{ item.state }}"
28     loop:
29       - {path: "{{ engine_workspace }}/offline/charts/stable", state: absent}
30       - {path: "{{ engine_workspace }}/offline/charts/stable", state: directory}
31       - {path: "{{ engine_workspace }}/offline/charts/local", state: absent}
32       - {path: "{{ engine_workspace }}/offline/charts/local", state: directory}
33
34   - name: Place index.yaml to webserver stable charts repository
35     template:
36       src: "index.yaml.j2"
37       dest: "{{ engine_workspace }}/offline/charts/stable/index.yaml"
38       force: true
39   when: execution_mode == "offline-deployment"
40
41 - name: Initialize Helm
42   command: helm init --client-only --local-repo-url {{ local_repo_url }} --stable-repo-url {{ stable_repo_url }}
43   register: helm_init_result
44   changed_when: true
45   when: helm_version is version('v3', '<')
46
47 - name: Check if stable helm repo exists (helm v3+)
48   command: "helm repo list"
49   changed_when: true
50   failed_when: false
51   register: helm_repo_list_result
52
53 - name: Add stable helm repo (helm v3+)
54   command: "helm repo add stable {{ stable_repo_url }}"
55   register: helm_repo_add_stable_result
56   changed_when: true
57   when: >
58     helm_version is version('v3.0.0', '>=')
59     and execution_mode == "online-deployment"
60     and helm_repo_list_result is not search(stable_repo_url)
61
62 - name: Clone Helm Charts repository
63   git:
64     repo: "{{ helm_charts_git_url }}"
65     dest: "{{ config_path }}/repos/charts"
66     version: "{{ charts_version }}"
67     force: true
68     recursive: true
69   environment:
70     http_proxy: "{{ lookup('env','http_proxy') }}"
71     https_proxy: "{{ lookup('env','https_proxy') }}"
72     no_proxy: "{{ lookup('env','no_proxy') }}"
73
74 - name: Generate values.yaml
75   template:
76     src: "values.yaml.j2"
77     dest: "{{ config_path }}/repos/charts/stable/prometheus/values.yaml"
78     force: true
79
80 - name: Remove previous installations of Prometheus
81   command: >
82     helm delete --purge "{{ prometheus_service }}"
83   changed_when: true
84   ignore_errors: true
85   tags: reset
86
87 - name: Remove Prometheus namespace
88   command: >
89     kubectl delete ns "{{ prometheus_namespace }}"
90   changed_when: true
91   ignore_errors: true
92   tags: reset
93
94 - name: Create Prometheus namespace
95   k8s:
96     state: present
97     definition:
98       apiVersion: v1
99       kind: Namespace
100       metadata:
101         name: "{{ prometheus_namespace }}"
102
103 - name: Install Prometheus using helm
104   command: >
105     helm install
106       {% if helm_version is version('v3.0.0', '<') %} --name {% endif %}"{{ prometheus_service }}"
107       --namespace "{{ prometheus_namespace }}"
108       --timeout "900{% if helm_version is version('v3.0.0', '>=') %}s{% endif %}"
109       {{ config_path }}/repos/charts/stable/prometheus
110   register: prometheus_helm_log
111   changed_when: true
112
113 - name: Log Prometheus helm output to console
114   debug:
115     msg: "{{ prometheus_helm_log.stdout_lines }}"
116
117 - name: Wait until Prometheus pods are available
118   k8s_facts:
119     kind: Pod
120     namespace: "{{ prometheus_namespace }}"
121     label_selectors:
122       - "app = {{ prometheus_service }}"
123     field_selectors:
124       - status.phase=Running
125   register: prometheus_pod_status
126   until:
127     - prometheus_pod_status.resources is defined
128     - prometheus_pod_status.resources
129   retries: 30
130   delay: 10
131
132 - name: Install Prometheus LoadBalancer service
133   k8s:
134     state: present
135     definition: "{{ lookup('template', 'prometheus_service.yaml.j2') }}"
136   register: prometheus_service_status
137
138 - name: Log Prometheus service information to console
139   debug:
140     msg:
141       - "------------------------------"
142       - "Prometheus Service information"
143       - "------------------------------"
144       - "clusterIP:  {{ prometheus_service_status.result.spec.clusterIP }}"
145       - "targetPort: {{ prometheus_service_status.result.spec.ports[0].targetPort }}"
146       - "nodePort:   {{ prometheus_service_status.result.spec.ports[0].nodePort }}"
147       - "------------------------------"
148
149 # vim: set ts=2 sw=2 expandtab: