X-Git-Url: https://gerrit.nordix.org/gitweb?p=infra%2Fstack%2Fkubernetes.git;a=blobdiff_plain;f=vars%2Fkubernetes.yaml;h=fa13a643d7c3d9f9d2f522a3134c677b6476ec74;hp=5accc0140efce8e7a35efd662147af7612389293;hb=36ddcc0adba0817757815ed8ca663b3b7f776c1b;hpb=20d34e772e021fabdee0aa9b50e9804a80d5108a diff --git a/vars/kubernetes.yaml b/vars/kubernetes.yaml index 5accc01..fa13a64 100644 --- a/vars/kubernetes.yaml +++ b/vars/kubernetes.yaml @@ -36,32 +36,33 @@ installers: kubespray: scm: git src: https://gerrit.nordix.org/infra/installer/kubespray.git - version: "{{ lookup('env', 'NORDIX_KUBESPRAY_VERSION') | default('master', true) }}" + version: "{{ lookup('env', 'NORDIX_KUBESPRAY_VERSION') | default('1.15', true) }}" refspec: "{{ lookup('env', 'NORDIX_KUBESPRAY_REFSPEC') | default(omit) }}" -# NOTE (fdegir): this is only the list of scenarios implemented within -# installer repository and does not list what apps are for curated for -# them as it is self documented within the scenario playbook in installer -# repository. Curated apps are not listed separately either as they are -# similar to scenarios; they are available in installer repository. +# NOTE (fdegir): this is only the list of scenarios supported by this version of the stack scenarios: - - k8-calico-istio - k8-calico-nofeature - - k8-calico-spinnaker - - k8-canal-nofeature - - k8-cilium-nofeature - - k8-flannel-nofeature - - k8-multus-nofeature - - k8-multus-plugins - - k8-weave-nofeature + +# NOTE (fdegir): set default deploy scenario for the stack +deploy_scenario: "{{ lookup('env', 'DEPLOY_SCENARIO') | default('k8-calico-nofeature', true) }}" + +# ------------------------------------------------------------------------------- +# Nordix: Docker version +# ------------------------------------------------------------------------------- +# NOTE (fdegir): versions of docker as of 13.02.2020 matching to what Kubespray uses +# Please note that docker-ce version is configured to be overrideable since some scenarios +# require different docker versions +docker_ce_version: "{{ lookup('env', 'DOCKER_CE_VERSION') | default('5:18.09.9~3-0~ubuntu-bionic', true) }}" +docker_ce_cli_version: "{{ docker_ce_version }}" +docker_registry_version: "2.7.1" +containerd_io_version: "1.2.6-3" # ------------------------------------------------------------------------------- # Kubernetes: Kubernetes and kubectl versions # ------------------------------------------------------------------------------- # Kubernetes version that is supported by the pinned kubespray version -kubernetes_version: "v1.17.0" +kubernetes_version: "v1.15.9" # version of the kubectl should generally match to the version of kubernetes itself -# but it would be good to have possibility to override it in case if someone needs it for some reason kubectl_version: "{{ kubernetes_version }}" # -------------------------------------------------------------------------------