Hi all, I am trying to build AiaB Dev_Minimal and it is NOT running behind proxy. In genesis stage, when it is downloading kube-adm packages, it loses DNS resolution and then it is not able to download anything and script ultimately fails. It is consistently reproducible. So need help from the experts here… Console out of deploy-site.sh is attached. Other details are pasted below: =========================================updates in dev-configurables.yaml and set-env.sh====================================== root@AIAB:~/deploy/airship-in-a-bottle# git diff diff --git a/deployment_files/site/dev/deployment/dev-configurables.yaml b/deployment_files/site/dev/deployment/dev-configurables.yaml index ad6da40..f5cb03b 100644 --- a/deployment_files/site/dev/deployment/dev-configurables.yaml +++ b/deployment_files/site/dev/deployment/dev-configurables.yaml @@ -8,3 +8,14 @@ metadata: layer: site storagePolicy: cleartext # Data section provided by deploy_ucp.sh script +data: + hostname: AIAB + hostip: 192.168.56.151 + hostcidr: 192.168.56.0/24 + interface: enp0s3 +data: + hostname: AIAB + hostip: 192.168.56.151 + hostcidr: 192.168.56.0/24 + interface: enp0s3 + maas-ingress: '192.169.1.5/32' diff --git a/manifests/dev_minimal/set-env.sh b/manifests/dev_minimal/set-env.sh index 27daa77..bcc3b9d 100644 --- a/manifests/dev_minimal/set-env.sh +++ b/manifests/dev_minimal/set-env.sh @@ -24,13 +24,13 @@ # frequently changed # The hostname for the genesis node -export SHORT_HOSTNAME=testvm1 +export SHORT_HOSTNAME=AIAB # The IP address of the genesis node -export HOSTIP=10.0.0.9 +export HOSTIP=192.168.56.151 # The CIDR of the network for the genesis node -export HOSTCIDR=10.0.0.0/24 +export HOSTCIDR=192.168.56.0/24 # The network interface on the genesis node -export NODE_NET_IFACE=ens3 +export NODE_NET_IFACE=enp0s3 # Repositories # export AIRSHIP_IN_A_BOTTLE_REPO="https://git.openstack.org/openstack/airship-in-a-bottle" ================================================================================================================= ============================================/etc/hosts and /etc/resolv.conf before running deploy-airship.sh========================================= root@AIAB:~# cat /etc/hosts && cat /etc/resolv.conf 127.0.0.1 localhost 192.168.56.151 AIAB #127.0.1.1 AIAB # The following lines are desirable for IPv6 capable hosts ::1 ip6-localhost ip6-loopback fe00::0 ip6-localnet ff00::0 ip6-mcastprefix ff02::1 ip6-allnodes ff02::2 ip6-allrouters # Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8) # DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN nameserver 127.0.1.1 search ITServices.sbc.com ===================================================================================================================================================== ============================================/etc/hosts and /etc/resolv.conf after running deploy-airship.sh========================================= root@AIAB:~# cat /etc/hosts /etc/resolv.conf # This file is controlled by Promenade. Do not modify. # 127.0.0.1 AIAB.gate.local AIAB 127.0.0.1 localhostoptions timeout:1 attempts:1 domain gate.local nameserver 10.96.0.10 nameserver 8.8.8.8 nameserver 8.8.4.4 ===================================================================================================================================================== Regards, Aniruddha