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=========================================================
23 # NOTE (fdegir): versions point to poc branch
27 src: ssh://localhost:47821/home/fdegir/repos/poc-nordix/bifrost
28 version: "{{ lookup('env', 'NORDIX_BIFROST_VERSION') | default('poc', true) }}"
29 refspec: "{{ lookup('env', 'NORDIX_BIFROST_REFSPEC') | default(omit) }}"
32 src: ssh://localhost:47821/home/fdegir/repos/poc-nordix/heat
33 version: "{{ lookup('env', 'NORDIX_HEAT_VERSION') | default('poc', true) }}"
34 refspec: "{{ lookup('env', 'NORDIX_HEAT_REFSPEC') | default(omit) }}"
39 src: ssh://localhost:47821/home/fdegir/repos/poc-nordix/kubespray
40 version: "{{ lookup('env', 'NORDIX_KUBESPRAY_VERSION') | default('poc', true) }}"
41 refspec: "{{ lookup('env', 'NORDIX_KUBESPRAY_REFSPEC') | default(omit) }}"
43 # NOTE (fdegir): this is only the list of scenarios implemented within
44 # installer repository and does not list what apps are for curated for
45 # them as it is self documented within the scenario playbook in installer
46 # repository. Curated apps are not listed separately either as they are
47 # similar to scenarios; they are available in installer repository.
54 - k8-flannel-nofeature
59 # -------------------------------------------------------------------------------
60 # Kubernetes: Kubernetes and kubectl versions
61 # -------------------------------------------------------------------------------
62 # Kubernetes version that is supported by the pinned kubespray version
63 kubernetes_version: "v1.17.0"
64 # version of the kubectl should generally match to the version of kubernetes itself
65 # but it would be good to have possibility to override it in case if someone needs it for some reason
66 kubectl_version: "{{ kubernetes_version }}"
68 # -------------------------------------------------------------------------------
69 # Kubernetes: Versions of rook, ceph and their dependencies
70 # -------------------------------------------------------------------------------
71 rook_version: "v1.1.2"
72 ceph_version: "v14.2.4-20190917"
73 cephcsi_version: "v1.2.1"
74 csi_node_driver_registrar_version: "v1.1.0"
75 csi_attacher_version: "v1.2.0"
76 csi_provisioner_version: "v1.3.0"
77 csi_snapshotter_version: "v1.2.0"
79 # -------------------------------------------------------------------------------
80 # Kubernetes: Versions of prometheus and its dependencies
81 # -------------------------------------------------------------------------------
82 # TODO (fdegir): prometheus version of what? helm chart?
83 prometheus_version: "1.3.1"
84 prom_alertmanager_version: "v0.20.0"
85 prom_node_exporter_version: "v0.18.1"
86 prom_prometheus_version: "v2.16.0"
87 prom_push_gateway_version: "v1.0.1"
89 # -------------------------------------------------------------------------------
90 # Kubernetes: Versions of spinnaker and its dependencies
91 # -------------------------------------------------------------------------------
92 # Helm chart and docker version
93 spinnaker_version: "1.23.2"
94 spinnaker_app_version: "1.16.2"
96 # -------------------------------------------------------------------------------
97 # Kubernetes: App versions
98 # -------------------------------------------------------------------------------
99 helm_version: "v2.16.1"
100 charts_version: "0b64349aeb537d0fd038df0e1d40ec5cf1206609"
101 istio_version: "1.3.1"
103 # -------------------------------------------------------------------------------
104 # Misc: Versions of other components
105 # -------------------------------------------------------------------------------
106 configmap_reload_version: "v0.3.0"
107 kube_state_metrics_version: "v1.9.5"
109 # vim: set ts=2 sw=2 expandtab: