From 5ea85531ec762930e6f34dc4240776e43e2b88e7 Mon Sep 17 00:00:00 2001 From: Rado Chmiel Date: Thu, 27 Jan 2022 12:54:54 +0100 Subject: noheat: improvements for infra setup and Helm push plugin * set remote_src in helm installation * add umount to clean up nfs mountpoint * fix pip executable error for Ubuntu 20.04 * make separate volume usage for instances optional * add ability to set public DNS servers to network creation * change installation method to command since current stable release of kubernetes.core doesnt support versioning * hardcode helm push plugin version to 0.9.0 Issue-ID: INT-1601 Signed-off-by: Maciej Wereski Change-Id: I5d374db779f6fc1f165eb5efe9b69b8a05c9f388 --- .../noheat/infra-openstack/ansible/group_vars/all.yml.sample | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'deployment/noheat/infra-openstack/ansible/group_vars/all.yml.sample') diff --git a/deployment/noheat/infra-openstack/ansible/group_vars/all.yml.sample b/deployment/noheat/infra-openstack/ansible/group_vars/all.yml.sample index f0e1b0037..1b03b06d5 100644 --- a/deployment/noheat/infra-openstack/ansible/group_vars/all.yml.sample +++ b/deployment/noheat/infra-openstack/ansible/group_vars/all.yml.sample @@ -2,6 +2,9 @@ network: name: &network_name "onap_ci_lab" cidr: "192.168.1.0/24" + dns_servers: + # - x.x.x.x + # - y.y.y.y keypair: name: &keypair_name "onap_ci_lab" @@ -28,6 +31,8 @@ operation: keypair: *keypair_name network: *network_name securitygroup: *securitygroup_name + boot_from_volume: true + terminate_volume: true volume_size: 5 cluster: @@ -39,4 +44,6 @@ cluster: keypair: *keypair_name network: *network_name securitygroup: *securitygroup_name + boot_from_volume: true + terminate_volume: true volume_size: 5 -- cgit 1.2.3-korg