9d2ce19ecb
Signed-off-by: Bogdan Dobrelya <bdobrelia@mirantis.com>
39 lines
1.3 KiB
YAML
39 lines
1.3 KiB
YAML
---
|
|
run_gitinfos: false
|
|
|
|
epel_rpm_download_url: "https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm"
|
|
|
|
common_required_pkgs:
|
|
- python-httplib2
|
|
- openssl
|
|
- curl
|
|
- rsync
|
|
- bash-completion
|
|
- socat
|
|
|
|
# Set to true if your network does not support IPv6
|
|
# This maybe necessary for pulling Docker images from
|
|
# GCE docker repository
|
|
disable_ipv6_dns: false
|
|
|
|
|
|
# For the openstack integration kubelet will need credentials to access
|
|
# openstack apis like nova and cinder. Per default this values will be
|
|
# read from the environment.
|
|
openstack_auth_url: "{{ lookup('env','OS_AUTH_URL') }}"
|
|
openstack_username: "{{ lookup('env','OS_USERNAME') }}"
|
|
openstack_password: "{{ lookup('env','OS_PASSWORD') }}"
|
|
openstack_region: "{{ lookup('env','OS_REGION_NAME') }}"
|
|
openstack_tenant_id: "{{ lookup('env','OS_TENANT_ID') }}"
|
|
|
|
# All clients access each node individually, instead of using a load balancer.
|
|
etcd_multiaccess: true
|
|
|
|
# External etcd cluster certs for network plugins, if network_plugin_etcd_access_endpoint is defined
|
|
etcd_config_dir: /etc/ssl/etcd
|
|
etcd_cert_dir: "{{ etcd_config_dir }}/ssl"
|
|
network_plugin_etcd_cert_dir: "{{ etcd_cert_dir }}/networking_plugins"
|
|
|
|
# CoreOS cloud init config file to define /etc/resolv.conf content
|
|
# for hostnet pods and infra needs
|
|
resolveconf_cloud_init_conf: /etc/resolveconf_cloud_init.conf
|