blob: 607d3a2d00ec0280981d0e2dbd3dfb99e6ca3425 [file] [log] [blame]
# ============LICENSE_START=======================================================
# Copyright (C) 2019 The Nordix Foundation. All rights reserved.
# ================================================================================
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# SPDX-License-Identifier: Apache-2.0
# ============LICENSE_END=========================================================
# -------- Ansible managed --------
# kubernetes configuration
kube_version: {{ kubernetes_version }}
kube_feature_gates: {{ kube_feature_gates }}
kubeconfig_localhost: {{ kubeconfig_localhost }}
dashboard_enabled: {{ dashboard_enabled }}
# we handle the installation of docker ourselves in order
# to match online and offline deployments
deploy_container_engine: {{ deploy_container_engine }}
# docker configuration
docker_iptables_enabled: {{ docker_iptables_enabled }}
# helm configuration
helm_version: {{ helm_version }}
helm_enabled: {{ helm_enabled }}
# metrics server configuration
metrics_server_enabled: {{ metrics_server_enabled }}
metrics_server_metric_resolution: {{ metrics_server_metric_resolution }}
metrics_server_kubelet_preferred_address_types: {{ metrics_server_kubelet_preferred_address_types }}
{% if execution_mode == "offline-deployment" %}
# configuration for offline deployments
helm_skip_refresh: {{ helm_skip_refresh }}
gcr_image_repo: {{ gcr_image_repo }}
kube_image_repo: {{ kube_image_repo }}
docker_image_repo: {{ docker_image_repo }}
quay_image_repo: {{ quay_image_repo }}
kubelet_download_url: {{ kubelet_download_url }}
kubectl_download_url: {{ kubectl_download_url }}
kubeadm_download_url: {{ kubeadm_download_url }}
cni_download_url: {{ cni_download_url }}
calicoctl_download_url: {{ calicoctl_download_url }}
{% endif %}
# -------- Ansible managed --------
# vim: set ts=2 sw=2 expandtab: