e30fb82a5d2a22eddcbd9fa5f3377a04b345139a
[infra/stack/kubernetes.git] / vars / kubernetes.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 distros:
21   - ubuntu1804
22
23 # NOTE (fdegir): versions point to poc branch
24 provisioners:
25   bifrost:
26     scm: git
27     src: ssh://localhost:47821/home/fdegir/repos/poc-nordix/bifrost
28     version: "{{ lookup('env', 'NORDIX_BIFROST_VERSION') | default('poc', true) }}"
29   heat:
30     scm: git
31     src: ssh://localhost:47821/home/fdegir/repos/poc-nordix/heat
32     version: "{{ lookup('env', 'NORDIX_HEAT_VERSION') | default('poc', true) }}"
33
34 installers:
35   kubespray:
36     scm: git
37     src: ssh://localhost:47821/home/fdegir/repos/poc-nordix/kubespray
38     version: "{{ lookup('env', 'NORDIX_KUBESPRAY_VERSION') | default('poc', true) }}"
39
40 # NOTE (fdegir): this is only the list of scenarios implemented within
41 # installer repository and does not list what apps are for curated for
42 # them as it is self documented within the scenario playbook in installer
43 # repository. Curated apps are not listed separately either as they are
44 # similar to scenarios; they are available in installer repository.
45 scenarios:
46   - k8-calico-istio
47   - k8-calico-nofeature
48   - k8-calico-spinnaker
49   - k8-canal-nofeature
50   - k8-cilium-nofeature
51   - k8-flannel-nofeature
52   - k8-multus-nofeature
53   - k8-multus-plugins
54   - k8-weave-nofeature
55
56 # vim: set ts=2 sw=2 expandtab: