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
9 # http://www.apache.org/licenses/LICENSE-2.0
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.
17 # SPDX-License-Identifier: Apache-2.0
18 # ============LICENSE_END=========================================================
20 - name: Load execution mode variables
21 include_vars: "{{ execution_mode }}.yaml"
24 - name: Create directories for helm repositories
26 path: "{{ item.path }}"
27 state: "{{ item.state }}"
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}
34 - name: Place index.yaml to webserver stable charts repository
37 dest: "{{ engine_workspace }}/offline/charts/stable/index.yaml"
39 when: execution_mode == "offline-deployment"
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
46 - name: Clone Helm Charts repository
48 repo: "{{ helm_charts_git_url }}"
49 dest: "{{ engine_cache }}/repos/charts"
50 version: "{{ charts_version }}"
54 http_proxy: "{{ lookup('env','http_proxy') }}"
55 https_proxy: "{{ lookup('env','https_proxy') }}"
56 no_proxy: "{{ lookup('env','no_proxy') }}"
58 - name: Generate values.yaml
61 dest: "{{ engine_cache }}/repos/charts/stable/spinnaker/values.yaml"
64 - name: Remove previous installations of Spinnaker
66 helm delete --purge "{{ spinnaker_service }}"
71 - name: Remove Spinnaker namespace
73 kubectl delete ns "{{ spinnaker_namespace }}"
78 - name: Create Spinnaker namespace
85 name: "{{ spinnaker_namespace }}"
87 - name: Verify Spinnaker Helm charts are available to be deployed
88 command: helm search spinnaker -l
92 - name: Log Helm chart list to console
94 msg: "{{ helm_search.stdout_lines }}"
96 - name: Inform user about Spinnaker deployment
99 Spinnaker deployment is about to start!
100 This takes a while and nothing will be logged to console until the process is completed.
102 - name: Fetch all helm dependencies for Spinnaker
104 helm dependency update
105 {{ engine_cache }}/repos/charts/stable/spinnaker
108 - name: Install Spinnaker using helm
111 --name "{{ spinnaker_service }}"
112 --namespace "{{ spinnaker_namespace }}"
114 {{ engine_cache }}/repos/charts/stable/spinnaker
115 register: spinnaker_helm_log
118 - name: Log Spinnaker helm output to console
120 msg: "{{ spinnaker_helm_log.stdout_lines }}"
122 # wait 10 minutes for all containers to be started
123 - name: Wait for all containers to be started
126 kubectl get po -n spinnaker | grep ContainerCreating | wc -l
135 # wait 20 minutes for all containers to be initialized
137 - name: Wait for all containers to be initialized
140 kubectl get po -n spinnaker | grep Init | grep -v Error | wc -l
149 - name: Get POD status
150 command: kubectl get po -n spinnaker
154 - name: Log POD status to console
156 msg: "{{ kube.stdout_lines }}"
158 - name: Get summary of Spinnaker deployment
159 script: log-spinnaker-status.sh
160 register: spinnaker_status
162 - name: Log Spinnaker status to console
164 msg: "{{ spinnaker_status.stdout_lines }}"
166 # vim: set ts=2 sw=2 expandtab: