add python compatibility module
[multicloud/k8s.git] / kud / deployment_infra / playbooks / kud-vars.yml
1 ---
2 # SPDX-license-identifier: Apache-2.0
3 ##############################################################################
4 # Copyright (c) 2018
5 # All rights reserved. This program and the accompanying materials
6 # are made available under the terms of the Apache License, Version 2.0
7 # which accompanies this distribution, and is available at
8 # http://www.apache.org/licenses/LICENSE-2.0
9 ##############################################################################
10
11 base_dest: /tmp
12
13 ovn_kubernetes_dest: "{{ base_dest }}/ovn-kubernetes"
14 ovn_kubernetes_source_type: "tarball"
15 ovn_kubernetes_version: 0.3.0
16 ovn_kubernetes_url: "https://github.com/openvswitch/ovn-kubernetes/archive/v{{ ovn_kubernetes_version }}.tar.gz"
17 #ovn_kubernetes_source_type: "source"
18 #ovn_kubernetes_version: 456a0857956988f968bb08644c650ba826592ec1
19 #ovn_kubernetes_url: "https://github.com/openvswitch/ovn-kubernetes"
20
21 criproxy_dest: "/usr/local/bin"
22 criproxy_source_type: "binary"
23 criproxy_version: 0.14.0
24 criproxy_url: "https://github.com/Mirantis/criproxy/releases/download/v{{ criproxy_version }}/criproxy"
25 #criproxy_dest: "{{ base_dest }}/criproxy"
26 #criproxy_source_type: "source"
27 #criproxy_version: b5ca5a6cec278e2054dface4f7a3e111fb9ab84b
28 #criproxy_url: "https://github.com/Mirantis/criproxy"
29 virtlet_dest: "{{ base_dest }}/virtlet"
30 virtlet_source_type: "binary"
31 virtlet_version: 1.4.4
32 virtlet_url: "https://github.com/Mirantis/virtlet/releases/download/v{{ virtlet_version }}/virtletctl"
33 #virtlet_source_type: "source"
34 #virtlet_version: 68e11b8f1db2c78b063126899f0e60910700975d
35 #virtlet_url: "https://github.com/Mirantis/virtlet"
36
37
38 istio_dest: "{{ base_dest }}/istio"
39 istio_source_type: "tarball"
40 istio_version: 1.0.3
41 istio_url: "https://github.com/istio/istio/releases/download/{{ istio_version }}/istio-{{ istio_version }}-linux.tar.gz"
42
43 # Intel CPU Manager for Kubernetes
44 cmk_namespace: kube-system
45 cmk_use_all_hosts: false # 'true' will deploy CMK on the master nodes too
46 cmk_shared_num_cores: 1 # number of CPU cores to be assigned to the "shared" pool on each of the nodes
47 cmk_exclusive_num_cores: 2 # number of CPU cores to be assigned to the "exclusive" pool on each of the nodes
48 cmk_git_url: "https://github.com/intel/CPU-Manager-for-Kubernetes.git"
49 cmk_version: "v1.4.1"
50 cmk_dir: "/tmp/cmk"
51 registry_local_address: "localhost:5000"
52 cmk_pkgs: make,jq
53 cmk_untaint_required: true
54
55 go_version: '1.14.15'
56 # kud playbooks not compatible with 2.8.0 - see MULTICLOUD-634
57 ansible_version: 2.9.7
58
59 sriov_pkgs: make,gcc
60 sriov_dest: "{{ base_dest }}/sriov_driver"
61 sriov_driver_source_type: "tarball"
62 sriov_driver_version: 3.7.34
63 sriov_driver_url: "https://downloadmirror.intel.com/28943/eng/iavf-{{ sriov_driver_version }}.tar.gz"
64 sriov_package: iavf-3.7.34
65
66 qat_dest: "{{ base_dest }}/qat_driver"
67 qat_driver_source_type: "tarball"
68 qat_driver_version: 1.7.l.4.6.0-00025
69 qat_driver_url: "https://01.org/sites/default/files/downloads/{{ qat_package }}.tar.gz"
70 qat_package: qat1.7.l.4.6.0-00025
71
72 optane_dest: "{{ base_dest }}/optane"
73 optane_ipmctl_source_type: "tarball"
74 optane_ipmctl_version: 02.00.00.3474
75 optane_ipmctl_url: "https://launchpad.net/ubuntu/+archive/primary/+sourcefiles/ipmctl/{{ optane_package }}.tar.xz"
76 optane_ipmctl_package: ipmctl_02.00.00.3474+really01.00.00.3469.orig
77
78 emco_git_url: "https://github.com/open-ness/EMCO.git"
79 emco_repository: "integratedcloudnative/"
80 emco_version: "openness-21.03.06"
81 emco_dir: "/opt/emco"
82 emco_values:
83   global:
84     repository: "{{ emco_repository }}"
85     pullPolicy: IfNotPresent
86   emco-services:
87     orchestrator:
88       imageTag: "{{ emco_version }}"
89     ncm:
90       imageTag: "{{ emco_version }}"
91     rsync:
92       imageTag: "{{ emco_version }}"
93     clm:
94       imageTag: "{{ emco_version }}"
95     ovnaction:
96       imageTag: "{{ emco_version }}"
97     dcm:
98       imageTag: "{{ emco_version }}"
99     dtc:
100       imageTag: "{{ emco_version }}"
101     nps:
102       imageTag: "{{ emco_version }}"
103     sds:
104       imageTag: "{{ emco_version }}"
105     gac:
106       imageTag: "{{ emco_version }}"
107     sfc:
108       imageTag: "{{ emco_version }}"
109     sfcclient:
110       imageTag: "{{ emco_version }}"
111 emcoconfig_localhost: true
112 emcoctl_localhost: true
113 emco_roles:
114 - emco
115 - monitor
116
117 kata_version: 2.1.0-rc0
118 kata_rbac_url: "https://raw.githubusercontent.com/kata-containers/kata-containers/{{ kata_version }}/tools/packaging/kata-deploy/kata-rbac/base/kata-rbac.yaml"
119 kata_deploy_url: "https://raw.githubusercontent.com/kata-containers/kata-containers/{{ kata_version }}/tools/packaging/kata-deploy/kata-deploy/base/kata-deploy.yaml"
120 kata_runtimeclass_url: "https://raw.githubusercontent.com/kata-containers/kata-containers/{{ kata_version }}/tools/packaging/kata-deploy/runtimeclasses/kata-runtimeClasses.yaml"
121 kata_webhook_dest: "{{ base_dest }}/kata_webhook"
122 kata_webhook_version: 2.1.0-rc0
123 kata_webhook_script_url: "https://raw.githubusercontent.com/kata-containers/tests/{{ kata_webhook_version }}/kata-webhook/create-certs.sh"
124 kata_webhook_registration_url: "https://raw.githubusercontent.com/kata-containers/tests/{{ kata_webhook_version }}/kata-webhook/deploy/webhook-registration.yaml.tpl"
125 kata_webhook_deployment_url: "https://raw.githubusercontent.com/kata-containers/tests/{{ kata_webhook_version }}/kata-webhook/deploy/webhook.yaml"
126 kata_webhook_runtimeclass: "kata-clh"