diff options
author | Michal Ptacek <m.ptacek@partner.samsung.com> | 2019-09-26 08:08:49 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-09-26 08:08:49 +0000 |
commit | 0a5a34ffe4b6506663a61372998f43657bf81230 (patch) | |
tree | b312a45cad4dc581ccea9b4cf4a391cb15872253 /ansible | |
parent | ef1aef15d17eae648f9eaf720c85d9c1f3f5e97e (diff) | |
parent | 4df25e7d379b09210810427f20a1da2b531fcc9a (diff) |
Merge changes from topic "OOM-2112"
* changes:
Make cicdansible to set external ip
Use external_ip to populate the node address
Add external_ip variable
Diffstat (limited to 'ansible')
-rw-r--r-- | ansible/inventory/hosts.yml | 6 | ||||
-rw-r--r-- | ansible/roles/rke/templates/cluster.yml.j2 | 4 |
2 files changed, 7 insertions, 3 deletions
diff --git a/ansible/inventory/hosts.yml b/ansible/inventory/hosts.yml index 4a6b68cf..825ee3b2 100644 --- a/ansible/inventory/hosts.yml +++ b/ansible/inventory/hosts.yml @@ -33,6 +33,10 @@ all: ansible_host: 10.8.8.19 #ip of the node that it uses for communication with k8s cluster. cluster_ip: 10.8.8.19 + # External ip of the node, used for access from outside of the cluster. + # Can be set to some kind of floating or public ip. + # If not set, cluster_ip is used for this purpose. + # external_ip: x.x.x.x # Group of hosts containing etcd cluster nodes. # Defaults to infra. @@ -44,7 +48,7 @@ all: # This means they host kubernetes api server, controller manager and scheduler. # This example uses infra for this purpose, however note that any # other host could be used including kubernetes nodes. - # cluster_ip needs to be set for hosts used as control planes. + # cluster_ip needs to be set for hosts used as control planes, external_ip can also be used. kubernetes-control-plane: hosts: infrastructure-server diff --git a/ansible/roles/rke/templates/cluster.yml.j2 b/ansible/roles/rke/templates/cluster.yml.j2 index 737d306f..51f4e28b 100644 --- a/ansible/roles/rke/templates/cluster.yml.j2 +++ b/ansible/roles/rke/templates/cluster.yml.j2 @@ -1,6 +1,6 @@ nodes: {% for node in groups['kubernetes'] %} -- address: "{{ hostvars[node].cluster_ip }}" +- address: "{{ hostvars[node].external_ip | default(hostvars[node].cluster_ip) }}" port: "22" internal_address: "{{ hostvars[node].cluster_ip }}" role: @@ -13,7 +13,7 @@ nodes: {% if node in groups['kubernetes-etcd'] %} - etcd {% endif %} - hostname_override: "" + hostname_override: "{{ node }}" user: "{{ rke_username }}" docker_socket: /var/run/docker.sock ssh_key: "" |