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: Create directory to store k8s binaries
22 path: "{{ binaries_folder }}"
28 - name: Set versions of k8s components in Kubespray downloads role
30 path: "{{ git_folder }}/kubespray/roles/download/defaults/main.yml"
31 regexp: "{{ item.regexp }}"
32 line: "{{ item.line }}"
34 - {regexp: "^kube_version:.*", line: "kube_version: {{ kubernetes_version }}"}
35 - {regexp: "^helm_version:.*", line: "helm_version: {{ helm_version }}"}
37 # NOTE (fdegir): order of vars files is significant
38 - name: Include kubespray vars files
39 include_vars: "{{ item }}"
41 - "{{ git_folder }}/kubespray/roles/kubespray-defaults/defaults/main.yaml"
42 - "{{ git_folder }}/kubespray/roles/download/defaults/main.yml"
44 - name: Download k8s binaries
46 url: "{{ downloads[item].url }}"
47 dest: "{{ binaries_folder }}/{{ item }}"
50 loop: "{{ k8s_binaries }}"
52 - name: Download helm binary
54 url: "{{ helm_download_url }}"
55 dest: "{{ binaries_folder }}"
59 # vim: set ts=2 sw=2 expandtab: