Update ssh keys cleanup
[infra/tools.git] / infra / configure_k8s_admin_config / playbooks / roles / configure-k8s-admin-config / vars / main.yaml
1 ---
2 # ============LICENSE_START=======================================================
3 #  Copyright (C) 2021 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 # -------------------------------------------------------------------------------
21 # Kubernetes: Kubernetes and kubectl versions
22 # -------------------------------------------------------------------------------
23 # Kubernetes version that is supported by the pinned kubespray version
24 kubernetes_version: "v1.18.5"
25 # version of the kubectl should generally match to the version of kubernetes itself
26 # but it would be good to have possibility to override it in case if someone needs it for some reason
27 kubectl_version: "{{ kubernetes_version }}"
28 kubectl_download_url: "https://storage.googleapis.com/kubernetes-release/release/{{ kubectl_version }}/bin/linux/amd64/kubectl"
29
30 # -------------------------------------------------------------------------------
31 # Kubernetes: App versions
32 # -------------------------------------------------------------------------------
33 helm_version: "v3.5.0"
34 helm_client_download_url: "https://get.helm.sh/helm-{{ helm_version }}-linux-amd64.tar.gz"
35
36 # -------------------------------------------------------------------------------
37 # Setup k8s admin config
38 # -------------------------------------------------------------------------------
39 k8s_admin_conf: "/tmp/admin.conf"
40 admin_user: 'nordix'
41 admin_user_kube_dir: "/home/{{ admin_user }}/.kube"