Ingress Nginx Integration
[infra/stack/kubernetes.git] / playbooks / roles / package / tasks / binaries.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: Create directory to store k8s binaries
21   file:
22     path: "{{ binaries_folder }}"
23     state: "{{ item }}"
24   with_items:
25     - absent
26     - directory
27
28 - name: Set versions of k8s components in Kubespray downloads role
29   lineinfile:
30     path: "{{ git_folder }}/kubespray/roles/download/defaults/main.yml"
31     regexp: "{{ item.regexp }}"
32     line: "{{ item.line }}"
33   with_items:
34     - {regexp: "^kube_version:.*", line: "kube_version: {{ kubernetes_version }}"}
35     - {regexp: "^helm_version:.*", line: "helm_version: {{ helm_version }}"}
36
37 # NOTE (fdegir): order of vars files is significant
38 - name: Include kubespray vars files
39   include_vars: "{{ item }}"
40   with_items:
41     - "{{ git_folder }}/kubespray/roles/kubespray-defaults/defaults/main.yaml"
42     - "{{ git_folder }}/kubespray/roles/download/defaults/main.yml"
43
44 - name: Download k8s binaries
45   get_url:
46     url: "{{ downloads[item].url }}"
47     dest: "{{ binaries_folder }}/{{ item }}"
48     mode: 0755
49     force: true
50   loop: "{{ k8s_binaries }}"
51
52 - name: Download helm binary
53   get_url:
54     url: "{{ helm_download_url }}"
55     dest: "{{ binaries_folder }}"
56     mode: 0755
57     force: true
58
59 # vim: set ts=2 sw=2 expandtab: