diff options
author | Michal Zegan <m.zegan@samsung.com> | 2019-01-04 14:20:03 +0100 |
---|---|---|
committer | Michal Zegan <m.zegan@samsung.com> | 2019-01-17 15:19:21 +0100 |
commit | b5cd82b2ec6f4fe69eae27f70eb3b5eda52da368 (patch) | |
tree | 060acfd9bd4241bb1755fbde9c2ad1a7150f39b0 /ansible/inventory | |
parent | cde2f33dfcd9728240d37c80383534a5b6af5caf (diff) |
Fix docker config handling in offline installer
This fixes adding of dns address to
/etc/docker/daemon.json to always use infra's ip address
instead of possibly using it's hostname.
Also similar change is done in handling of
/etc/resolv.conf in infrastructure.yml.
Ip address is specified by the "cluster_ip" variable placed on a host.
Inventory specifies ip for everything except resource server (just for consistency).
Change-Id: I2baa3f4c7d69b8dff109b5f8ae984134caf2af7d
Issue-ID: OOM-1573
Signed-off-by: Michal Zegan <m.zegan@samsung.com>
Diffstat (limited to 'ansible/inventory')
-rw-r--r-- | ansible/inventory/hosts.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ansible/inventory/hosts.yml b/ansible/inventory/hosts.yml index f11ef7b1..a29072c5 100644 --- a/ansible/inventory/hosts.yml +++ b/ansible/inventory/hosts.yml @@ -20,12 +20,16 @@ all: hosts: infrastructure-server: ansible_host: 10.8.8.13 + #IP used for communication between infra and kubernetes nodes, must be specified. + cluster_ip: 10.8.8.13 # This is group of hosts which are/will be part of Kubernetes cluster. kubernetes: hosts: kubernetes-node-1: ansible_host: 10.8.8.19 + #ip of the node that it uses for communication with k8s cluster. + cluster_ip: 10.8.8.19 nfs-server: hosts: |