From f3165a716af0f3c60a768d3f4258fbdc9ca42d04 Mon Sep 17 00:00:00 2001 From: Alexander Chumakov Date: Tue, 11 Jul 2017 12:46:19 +0300 Subject: [PATCH] Add more config to README.md Add resolvconf_mode and cloud_provider config description to README.md --- contrib/terraform/openstack/README.md | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/contrib/terraform/openstack/README.md b/contrib/terraform/openstack/README.md index 70666058f..dcc3ddec1 100644 --- a/contrib/terraform/openstack/README.md +++ b/contrib/terraform/openstack/README.md @@ -109,7 +109,7 @@ Edit `inventory/group_vars/all.yml`: # Valid bootstrap options (required): ubuntu, coreos, centos, none bootstrap_os: coreos ``` -- And **bin_dir** +- **bin_dir** ``` # Directory where the binaries will be installed # Default: @@ -117,6 +117,10 @@ bootstrap_os: coreos # For Container Linux by CoreOS: bin_dir: /opt/bin ``` +- and **cloud_provider** +``` +cloud_provider: openstack +``` Edit `inventory/group_vars/k8s-cluster.yml`: - Set variable **kube_network_plugin** according selected networking ``` @@ -127,9 +131,16 @@ kube_network_plugin: flannel > flannel works out-of-the-box > calico requires allowing service's and pod's subnets on according OpenStack Neutron ports +- Set variable **resolvconf_mode** +``` +# Can be docker_dns, host_resolvconf or none +# Default: +# resolvconf_mode: docker_dns +# For Container Linux by CoreOS: +resolvconf_mode: host_resolvconf +``` -Configure OpenStack Neutron ports: -[OpenStack](/docs/openstack.md) +For calico configure OpenStack Neutron ports: [OpenStack](/docs/openstack.md) # Provision a Kubernetes Cluster on OpenStack