Re: [Starlingx-discuss] Need support for starlingX 8 setup bring up.
TCS Confidential Hi Bruno/Team, Tried with different options but still facing issues with ssh to VM, not able to communicate through the Horizon clients also. Kubernetes services also not working in VM. Bruno, Python script was still on when VM is up and login was success, script is not exited, kubelet services configuration is failed. Can you suggest some work around here, we are also trying to resolve the issue. Thanks & Regards, Prashanthi.M From: Bruno Drugowick Muniz <Bruno.Muniz@encora.com> Sent: Thursday, May 4, 2023 7:29 PM To: Chandu Vangala <v.chandu@tcs.com>; Prashanthi Moligi <prashanthi.moligi@tcs.com> Cc: Nidhi Tomar <nidhi.tomar1@tcs.com>; Naga Sushma Gandrothu <g.nagasushma@tcs.com>; Meghana S <s.meghana10@tcs.com> Subject: Re: Need support for starlingX 8 setup bring up. TCS Confidential "External email. Open with Caution" I'm asking this question because I started a VM that I created with the script and it started the Kubelet services just fine. I wonder if this is a step in the middle of the config script where the service is not yet properly configured. [cid:image002.png@01D97F90.2D70DDD0] Regards, Bruno. ________________________________ From: Bruno Drugowick Muniz <Bruno.Muniz@encora.com<mailto:Bruno.Muniz@encora.com>> Sent: Thursday, May 4, 2023 10:56 To: Chandu Vangala <v.chandu@tcs.com<mailto:v.chandu@tcs.com>>; Prashanthi Moligi <prashanthi.moligi@tcs.com<mailto:prashanthi.moligi@tcs.com>> Cc: Nidhi Tomar <nidhi.tomar1@tcs.com<mailto:nidhi.tomar1@tcs.com>>; Naga Sushma Gandrothu <g.nagasushma@tcs.com<mailto:g.nagasushma@tcs.com>>; Meghana S <s.meghana10@tcs.com<mailto:s.meghana10@tcs.com>> Subject: Re: Need support for starlingX 8 setup bring up. Hello, Chandu. At this point, is the Python script already finished? What's its output at the end? Regards, Bruno. ________________________________ From: Chandu Vangala <v.chandu@tcs.com<mailto:v.chandu@tcs.com>> Sent: Thursday, May 4, 2023 09:28 To: Bruno Drugowick Muniz <Bruno.Muniz@encora.com<mailto:Bruno.Muniz@encora.com>>; Prashanthi Moligi <prashanthi.moligi@tcs.com<mailto:prashanthi.moligi@tcs.com>> Cc: Nidhi Tomar <nidhi.tomar1@tcs.com<mailto:nidhi.tomar1@tcs.com>>; Naga Sushma Gandrothu <g.nagasushma@tcs.com<mailto:g.nagasushma@tcs.com>>; Meghana S <s.meghana10@tcs.com<mailto:s.meghana10@tcs.com>> Subject: Re: Need support for starlingX 8 setup bring up. External Mail: Do not click links or open attachments unless you recognize the sender and know the content is safe. TCS Confidential Hi Bruno, We have followed your script https://paste.opendev.org/show/bciA9x0pZbsPmkgT5URs/. and able to create VM VirtualBox. But Kubernet services are not running. Attached the error screenshot below. Could you please check and help on this. [Image] Thanks & Regards, V.Chandu. ________________________________ From: Bruno Drugowick Muniz <Bruno.Muniz@encora.com<mailto:Bruno.Muniz@encora.com>> Sent: Tuesday, May 2, 2023 9:18 PM To: Prashanthi Moligi <prashanthi.moligi@tcs.com<mailto:prashanthi.moligi@tcs.com>> Cc: Nidhi Tomar <nidhi.tomar1@tcs.com<mailto:nidhi.tomar1@tcs.com>>; Naga Sushma Gandrothu <g.nagasushma@tcs.com<mailto:g.nagasushma@tcs.com>>; Meghana S <s.meghana10@tcs.com<mailto:s.meghana10@tcs.com>>; Chandu Vangala <v.chandu@tcs.com<mailto:v.chandu@tcs.com>> Subject: Re: Need support for starlingX 8 setup bring up. TCS Confidential "External email. Open with Caution" Hello, Prashanthi. Answers in red: 1. Do we need to create VMs and then run your script or your script itself will create VMs also? * The script itself creates the VM 1. Do we need to create 3 VMS (storage, control, worker) or only one VM is enough? * Our current under-review version of the script only works for the AIO-SX (All-In-One Simplex) setup. This setup doesn't include storage. * Since what we have so far is still not merged to the main branch, you need to check out the patchset we have under review. I'll send the instructions again (see below). * Again, I reinstate the importance of understanding that this is a WIP effort under review by the community that already got my team several working installations of StarlingX under VirtualBox that developers can use to get to know and do small tests with it. * I only share this because you seem to be having similar problems that I saw recently in my team, so a mostly automated setup can be helpful for the developers that plan to work with the solution. Below are the steps that I sent in another thread. These are for a Debian-based operating system, tested in Ubuntu and Pop!_OS: # Install dependencies sudo apt install virtualbox git rsync sshpass openssh-client python3-pip python3-venv # Set up NAT Network to be used in VirtualBox VBoxManage natnetwork add --netname NatNetwork --network 10.10.10.0/24 --dhcp off --ipv6 on # Creating port forward for 8080 since for 22 it's created by the Python script currently VBoxManage natnetwork modify --netname NatNetwork --port-forward-4 http-8080:tcp:[]:8080:[10.10.10.3]:8080 # Clone /tools repo to help with the installation mkdir -p starlingx cd starlingx git clone --depth 1 https://opendev.org/starlingx/tools.git # Downloads patchset that contains the scripts under review by the community cd tools git fetch https://review.opendev.org/starlingx/tools refs/changes/70/880870/11 && git checkout FETCH_HEAD # Configure Python's virtual environment cd deployment/virtualbox/pybox python3 -m venv venv source ./venv/bin/activate pip install --upgrade pip pip install -r requirements.txt # Download StarlingX ISO wget -N https://mirror.starlingx.cengn.ca/mirror/starlingx/release/latest_release/de... -O ./stx-8.iso # Start the installation python3 ./install_vbox.py --setup-type AIO-SX \ --iso-location "./stx-8.iso" \ --labname Prashanthi --install-mode serial \ --config-files-dir ./configs/aio-sx/ \ --config-controller-ini ./configs/aio-sx/stx_config.ini_centos \ --ansible-controller-config ./configs/aio-sx/localhost.yml \ --vboxnet-type nat \ --vboxnet-name NatNetwork \ --nat-controller0-local-ssh-port 3122 \ --controller0-ip 10.10.10.3 \ --ini-oam-cidr '10.10.10.0/24' Notice on this last command that the --setup-type is equal to AIO-SX. This is the only installation type that our branch/patchset currently supports. Our idea is to bring these scripts back to a working state since people haven't touched then in about 4 years now. In this link, you find the script with all the steps above that you can download and run standalone: https://paste.opendev.org/show/bciA9x0pZbsPmkgT5URs/. But it's important to understand each step above so you can debug eventual problems easier. Regards, Bruno. ________________________________ From: Prashanthi Moligi <prashanthi.moligi@tcs.com<mailto:prashanthi.moligi@tcs.com>> Sent: Tuesday, May 2, 2023 12:09 To: Bruno Drugowick Muniz <Bruno.Muniz@encora.com<mailto:Bruno.Muniz@encora.com>> Cc: Nidhi Tomar <nidhi.tomar1@tcs.com<mailto:nidhi.tomar1@tcs.com>>; Naga Sushma Gandrothu <g.nagasushma@tcs.com<mailto:g.nagasushma@tcs.com>>; Meghana S <s.meghana10@tcs.com<mailto:s.meghana10@tcs.com>>; Chandu Vangala <v.chandu@tcs.com<mailto:v.chandu@tcs.com>> Subject: RE: Need support for starlingX 8 setup bring up. External Mail: Do not click links or open attachments unless you recognize the sender and know the content is safe. TCS Confidential Hi Bruno, Today we started working on VM installation also, but bootimage.iso not cloned with tools.git image and GUI starting step is failing. 1. Do we need to create VMs and then run your script or your script itself will create VMs also? 2. Do we need to create 3 VMS (storage, control, worker) or only one VM is enough? We are done with host machine setup but facing issue with VM setup, if you join tomorrow call , can we discuss VM environment issues also? Thanks&Regards, Prashanthi. From: Prashanthi Moligi Sent: Monday, May 1, 2023 11:22 PM To: Bruno Drugowick Muniz <Bruno.Muniz@encora.com<mailto:Bruno.Muniz@encora.com>> Cc: Nidhi Tomar <nidhi.tomar1@tcs.com<mailto:nidhi.tomar1@tcs.com>>; Naga Sushma Gandrothu <g.nagasushma@tcs.com<mailto:g.nagasushma@tcs.com>>; Meghana S <s.meghana10@tcs.com<mailto:s.meghana10@tcs.com>> Subject: RE: Need support for starlingX 8 setup bring up. Hi Bruno, I agree to continuing with half the installation of Bare metal, so I asked for sync up call with Greg tomorrow. If it doesn’t work tomorrow, then I want to start VM starlingX installation with your automation scripts, we will start that day after tomorrow morning, can you syncup on Wednesday evening, for the issues if we face any. If installation with Greg help is successful, then we do not take it up, I will inform the status tomorrow evening time. Thanks&Regards, Prashanthi.M From: Bruno Drugowick Muniz <Bruno.Muniz@encora.com<mailto:Bruno.Muniz@encora.com>> Sent: Thursday, April 27, 2023 8:35 PM To: Waines, Greg <Greg.Waines@windriver.com<mailto:Greg.Waines@windriver.com>>; Prashanthi Moligi <prashanthi.moligi@tcs.com<mailto:prashanthi.moligi@tcs.com>>; Gao, Litao <Litao.Gao@windriver.com<mailto:Litao.Gao@windriver.com>> Subject: Re: Need support for starlingX 8 setup bring up. TCS Confidential "External email. Open with Caution" Prashanthi, I agree, Litao and Greg are on the right track here. It looks like a problem in the config and if you answer what Greg is asking we should be able to quickly figure out what exactly is wrong. Answers in red for the questions you asked: * Can I use same baremetal ISO for VM environment also * Yes * Will below scripts automate only VM environment, not bare metal? * VM environments (especifically VirtualBox) are what we're working on right now, yes. * I am currently working with latest StarlingX 8 version, is it stable or can we switch starlingX7? * The latest version (8) is stable. You can use it, yes. I don't want to get in the way of "debugging" your current bare metal installation, but I want to give you options and you decide if they make your life easier or not. I made a script for myself that is simultaneously kind of a "short version" of this installation guide<https://docs.starlingx.io/r/stx.8.0/deploy_install_guides/release/virtual/aio_simplex.html> and also something that you can just run on a Debian-based Linux box. I personally tested/used it on 2 different Ubuntu 20.04 boxes several times already. The script is here: https://paste.opendev.org/show/bciA9x0pZbsPmkgT5URs/. Feel free to reach me on IRC (you can find me, brunomuniz, on the StarlingX channel) if you want more synchronous help with it. Regards, Bruno. ________________________________ From: Waines, Greg <Greg.Waines@windriver.com<mailto:Greg.Waines@windriver.com>> Sent: Thursday, April 27, 2023 11:15 To: Prashanthi Moligi <prashanthi.moligi@tcs.com<mailto:prashanthi.moligi@tcs.com>>; Gao, Litao <Litao.Gao@windriver.com<mailto:Litao.Gao@windriver.com>> Cc: Bruno Drugowick Muniz <Bruno.Muniz@encora.com<mailto:Bruno.Muniz@encora.com>> Subject: RE: Need support for starlingX 8 setup bring up. External Mail: Do not click links or open attachments unless you recognize the sender and know the content is safe. Apologies Prashanthi … I was out-of-office for a few days. I suspect Litao is on the right track … it doesn’t seem like 10.10.10.1 is a valid IP Address for your next hop gateway router. Can you provide the following info * AFTER you do the INITIAL USB SOFTWARE INSTALL * AND AFTER YOU login for the first time as sysadmin/sysadmin … and change the password * AND AFTER YOU RUN ‘sudo dhclient <ifname>’ in order to get your initial IP Address * Can you run the following and send me the outputs * ip link * ip addr * ping 8.8.8.8 * can you also send me the contents of the /home/sysadmin/localhost.yml that you are using ? thanks Greg. From: Gao, Litao <Litao.Gao@windriver.com<mailto:Litao.Gao@windriver.com>> Sent: Thursday, April 27, 2023 4:05 AM To: Prashanthi Moligi <prashanthi.moligi@tcs.com<mailto:prashanthi.moligi@tcs.com>>; Bruno Drugowick Muniz <Bruno.Muniz@encora.com<mailto:Bruno.Muniz@encora.com>>; Waines, Greg <Greg.Waines@windriver.com<mailto:Greg.Waines@windriver.com>> Subject: RE: Need support for starlingX 8 setup bring up. Hi Prashanthi, Checked your log. Are you sure ‘10.10.10.1’ is the valid gateway ip address in your environment? Best Regards, Litao ________________________________ [Wind River]<https://www.windriver.com/> From: Prashanthi Moligi <prashanthi.moligi@tcs.com<mailto:prashanthi.moligi@tcs.com>> Sent: Thursday, April 27, 2023 2:39 PM To: Bruno Drugowick Muniz <Bruno.Muniz@encora.com<mailto:Bruno.Muniz@encora.com>>; Waines, Greg <Greg.Waines@windriver.com<mailto:Greg.Waines@windriver.com>>; Gao, Litao <Litao.Gao@windriver.com<mailto:Litao.Gao@windriver.com>> Subject: RE: Need support for starlingX 8 setup bring up. CAUTION: This email comes from a non Wind River email account! Do not click links or open attachments unless you recognize the sender and know the content is safe. TCS Confidential Hi Bruno, FYI I am trying to install “starlingX kubernetes on VM/Bare metal” not for openstack version. Thanks & Regards, Prashanthi.M From: Prashanthi Moligi Sent: Thursday, April 27, 2023 11:28 AM To: Bruno Drugowick Muniz <Bruno.Muniz@encora.com<mailto:Bruno.Muniz@encora.com>>; Waines, Greg <Greg.Waines@windriver.com<mailto:Greg.Waines@windriver.com>>; Gao, Litao <Litao.Gao@windriver.com<mailto:Litao.Gao@windriver.com>>; Schwager, Udi <Udi.Schwager@windriver.com<mailto:Udi.Schwager@windriver.com>>; StarlingX ML <starlingx-discuss@lists.starlingx.io<mailto:starlingx-discuss@lists.starlingx.io>> Cc: Nidhi Tomar <nidhi.tomar1@tcs.com<mailto:nidhi.tomar1@tcs.com>>; Meghana S <s.meghana10@tcs.com<mailto:s.meghana10@tcs.com>>; Naga Sushma Gandrothu <g.nagasushma@tcs.com<mailto:g.nagasushma@tcs.com>>; Khalil, Ghada <Ghada.Khalil@windriver.com<mailto:Ghada.Khalil@windriver.com>>; Thothadri, Ram <Ram.Thothadri@windriver.com<mailto:Ram.Thothadri@windriver.com>>; Subramanian, Ramaswamy <Ramaswamy.Subramanian@windriver.com<mailto:Ramaswamy.Subramanian@windriver.com>>; Geary, Stephen (Steve) <Steve.Geary@windriver.com<mailto:Steve.Geary@windriver.com>> Subject: RE: Need support for starlingX 8 setup bring up. Hi Bruno, I am tyring to install “Virtual All-in-one Simplex Installation<https://urldefense.com/v3/__https:/docs.starlingx.io/r/stx.8.0/deploy_install_guides/release/virtual/aio_simplex.html__;!!AjveYdw8EvQ!amEX-sECO5eIwIskUSBkSiHV3ZPsCyzHs7EEkPD7gj8_8BkILaKk_gMArUfitD4YErIes6r__l64ytqXUL8-MpVQpE8$>” on baremetal, I understood that you are automating installation process for same deployment config on Virtual environment. Can you please help me for below points. * Can I use same baremetal ISO for VM environment also * Will below scripts automate only VM environment, not bare metal? * I am currently working with latest StarlingX 8 version, is it stable or can we switch starlingX7? I want to bring up starlingX setup ASAP either on bare metal or on VM, your automation script helps me for that, please share your script and process to run. Eagerly waiting for your response. Thanks, Prashanthi. From: Bruno Drugowick Muniz <Bruno.Muniz@encora.com<mailto:Bruno.Muniz@encora.com>> Sent: Thursday, April 27, 2023 3:48 AM To: Prashanthi Moligi <prashanthi.moligi@tcs.com<mailto:prashanthi.moligi@tcs.com>>; Waines, Greg <Greg.Waines@windriver.com<mailto:Greg.Waines@windriver.com>>; Gao, Litao <Litao.Gao@windriver.com<mailto:Litao.Gao@windriver.com>>; Schwager, Udi <Udi.Schwager@windriver.com<mailto:Udi.Schwager@windriver.com>>; StarlingX ML <starlingx-discuss@lists.starlingx.io<mailto:starlingx-discuss@lists.starlingx.io>> Cc: Nidhi Tomar <nidhi.tomar1@tcs.com<mailto:nidhi.tomar1@tcs.com>>; Meghana S <s.meghana10@tcs.com<mailto:s.meghana10@tcs.com>>; Naga Sushma Gandrothu <g.nagasushma@tcs.com<mailto:g.nagasushma@tcs.com>>; Khalil, Ghada <Ghada.Khalil@windriver.com<mailto:Ghada.Khalil@windriver.com>>; Thothadri, Ram <Ram.Thothadri@windriver.com<mailto:Ram.Thothadri@windriver.com>>; Subramanian, Ramaswamy <Ramaswamy.Subramanian@windriver.com<mailto:Ramaswamy.Subramanian@windriver.com>>; Geary, Stephen (Steve) <Steve.Geary@windriver.com<mailto:Steve.Geary@windriver.com>> Subject: Re: Need support for starlingX 8 setup bring up. TCS Confidential "External email. Open with Caution" Hi, Prashanthi. Currently, my team is working on changing some existing Python/Shell scripts, and with our changes so far you can get an installation of StarlingX AIO-SX in VirtualBox from a Debian box without too much trouble (almost 100% automated). For reference: * AIO: Al-In-One, means that the same machine (vm) will have more than one responsibility (controller and worker in this case) * SX: Simplex, means that only a single controller will be used. I don't know if this is enough for the PoC that you want to do, but in case this helps, our changes are currently under review here: https://review.opendev.org/c/starlingx/tools/+/880870<https://urldefense.com/v3/__https:/review.opendev.org/c/starlingx/tools/*/880870__;Kw!!AjveYdw8EvQ!amEX-sECO5eIwIskUSBkSiHV3ZPsCyzHs7EEkPD7gj8_8BkILaKk_gMArUfitD4YErIes6r__l64ytqXUL8-PJhoWUw$>. Let me know if this is helpful and I can put a quick Shell script together that will get you the code with our changes and perform the installation for you. Regards, Bruno. ________________________________ From: Prashanthi Moligi <prashanthi.moligi@tcs.com<mailto:prashanthi.moligi@tcs.com>> Sent: Wednesday, April 26, 2023 14:53 To: Waines, Greg <Greg.Waines@windriver.com<mailto:Greg.Waines@windriver.com>>; Gao, Litao <Litao.Gao@windriver.com<mailto:Litao.Gao@windriver.com>>; Schwager, Udi <Udi.Schwager@windriver.com<mailto:Udi.Schwager@windriver.com>>; StarlingX ML <starlingx-discuss@lists.starlingx.io<mailto:starlingx-discuss@lists.starlingx.io>> Cc: Nidhi Tomar <nidhi.tomar1@tcs.com<mailto:nidhi.tomar1@tcs.com>>; Meghana S <s.meghana10@tcs.com<mailto:s.meghana10@tcs.com>>; Naga Sushma Gandrothu <g.nagasushma@tcs.com<mailto:g.nagasushma@tcs.com>>; Khalil, Ghada <Ghada.Khalil@windriver.com<mailto:Ghada.Khalil@windriver.com>>; Thothadri, Ram <Ram.Thothadri@windriver.com<mailto:Ram.Thothadri@windriver.com>>; Subramanian, Ramaswamy <Ramaswamy.Subramanian@windriver.com<mailto:Ramaswamy.Subramanian@windriver.com>>; Geary, Stephen (Steve) <Steve.Geary@windriver.com<mailto:Steve.Geary@windriver.com>> Subject: Re: [Starlingx-discuss] Need support for starlingX 8 setup bring up. You don't often get email from prashanthi.moligi@tcs.com<mailto:prashanthi.moligi@tcs.com>. Learn why this is important<https://urldefense.com/v3/__https:/aka.ms/LearnAboutSenderIdentification__;!!AjveYdw8EvQ!amEX-sECO5eIwIskUSBkSiHV3ZPsCyzHs7EEkPD7gj8_8BkILaKk_gMArUfitD4YErIes6r__l64ytqXUL8-GGF0nNs$> External Mail: Do not click links or open attachments unless you recognize the sender and know the content is safe. TCS Confidential Hi Greg/Litao, We could able to proceed further in ansible playbook execution, but some of the steps failing and also we have doubts in parameter configuration of localhost.yml file, Attaching ansible log can please verify and guide us to bring up the starlingX controller. Greg, As we discussed in last meeting can you please give one Point of contact, who can help us in setup bring up, it will be great help if you provide some POC ASAP. Thanks & Regards, Prashanthi.M From: Waines, Greg <Greg.Waines@windriver.com<mailto:Greg.Waines@windriver.com>> Sent: Wednesday, April 19, 2023 8:29 PM To: Gao, Litao <Litao.Gao@windriver.com<mailto:Litao.Gao@windriver.com>>; Prashanthi Moligi <prashanthi.moligi@tcs.com<mailto:prashanthi.moligi@tcs.com>>; Schwager, Udi <Udi.Schwager@windriver.com<mailto:Udi.Schwager@windriver.com>>; StarlingX ML <starlingx-discuss@lists.starlingx.io<mailto:starlingx-discuss@lists.starlingx.io>> Cc: Nidhi Tomar <nidhi.tomar1@tcs.com<mailto:nidhi.tomar1@tcs.com>>; Meghana S <s.meghana10@tcs.com<mailto:s.meghana10@tcs.com>>; Naga Sushma Gandrothu <g.nagasushma@tcs.com<mailto:g.nagasushma@tcs.com>>; Khalil, Ghada <Ghada.Khalil@windriver.com<mailto:Ghada.Khalil@windriver.com>>; Thothadri, Ram <Ram.Thothadri@windriver.com<mailto:Ram.Thothadri@windriver.com>>; Subramanian, Ramaswamy <Ramaswamy.Subramanian@windriver.com<mailto:Ramaswamy.Subramanian@windriver.com>>; Geary, Stephen (Steve) <Steve.Geary@windriver.com<mailto:Steve.Geary@windriver.com>> Subject: RE: Need support for starlingX 8 setup bring up. TCS Confidential "External email. Open with Caution" + starlingx-discuss From: Gao, Litao <Litao.Gao@windriver.com<mailto:Litao.Gao@windriver.com>> Sent: Wednesday, April 19, 2023 5:25 AM To: Waines, Greg <Greg.Waines@windriver.com<mailto:Greg.Waines@windriver.com>>; Prashanthi Moligi <prashanthi.moligi@tcs.com<mailto:prashanthi.moligi@tcs.com>>; Schwager, Udi <Udi.Schwager@windriver.com<mailto:Udi.Schwager@windriver.com>> Cc: Nidhi Tomar <nidhi.tomar1@tcs.com<mailto:nidhi.tomar1@tcs.com>>; Meghana S <s.meghana10@tcs.com<mailto:s.meghana10@tcs.com>>; Naga Sushma Gandrothu <g.nagasushma@tcs.com<mailto:g.nagasushma@tcs.com>>; Khalil, Ghada <Ghada.Khalil@windriver.com<mailto:Ghada.Khalil@windriver.com>>; Thothadri, Ram <Ram.Thothadri@windriver.com<mailto:Ram.Thothadri@windriver.com>>; Subramanian, Ramaswamy <Ramaswamy.Subramanian@windriver.com<mailto:Ramaswamy.Subramanian@windriver.com>>; Geary, Stephen (Steve) <Steve.Geary@windriver.com<mailto:Steve.Geary@windriver.com>> Subject: RE: Need support for starlingX 8 setup bring up. Hi Prashanthi, MEC services/app is supposed to be run as a standard k8s workload in pod (deployment, service, etc), you can launch your via kubectl, helmchart, or other ways available on k8s. And the GPU, High speed NIC, or accelerator support are available in StarlingX which may be used by MEC application. As I know, there is no publicly announced MEC applications running on StarlingX, but as I can see it is capable to carry the MEC workload you mentioned. And as Greg pointed, we have many commercial solutions for 5G vRAN solutions. Best Regards, Litao ________________________________ [Wind River]<https://www.windriver.com/> From: Waines, Greg <Greg.Waines@windriver.com<mailto:Greg.Waines@windriver.com>> Sent: Tuesday, April 18, 2023 7:03 PM To: Prashanthi Moligi <prashanthi.moligi@tcs.com<mailto:prashanthi.moligi@tcs.com>>; Gao, Litao <Litao.Gao@windriver.com<mailto:Litao.Gao@windriver.com>>; Schwager, Udi <Udi.Schwager@windriver.com<mailto:Udi.Schwager@windriver.com>> Cc: Nidhi Tomar <nidhi.tomar1@tcs.com<mailto:nidhi.tomar1@tcs.com>>; Meghana S <s.meghana10@tcs.com<mailto:s.meghana10@tcs.com>>; Naga Sushma Gandrothu <g.nagasushma@tcs.com<mailto:g.nagasushma@tcs.com>>; Khalil, Ghada <Ghada.Khalil@windriver.com<mailto:Ghada.Khalil@windriver.com>>; Thothadri, Ram <Ram.Thothadri@windriver.com<mailto:Ram.Thothadri@windriver.com>>; Subramanian, Ramaswamy <Ramaswamy.Subramanian@windriver.com<mailto:Ramaswamy.Subramanian@windriver.com>>; Geary, Stephen (Steve) <Steve.Geary@windriver.com<mailto:Steve.Geary@windriver.com>> Subject: RE: Need support for starlingX 8 setup bring up. + Udi as well … he might be the proper contact for ORAN on StarlingX. Greg. From: Waines, Greg Sent: Tuesday, April 18, 2023 7:03 AM To: Prashanthi Moligi <prashanthi.moligi@tcs.com<mailto:prashanthi.moligi@tcs.com>>; Gao, Litao <Litao.Gao@windriver.com<mailto:Litao.Gao@windriver.com>> Cc: Nidhi Tomar <nidhi.tomar1@tcs.com<mailto:nidhi.tomar1@tcs.com>>; Meghana S <s.meghana10@tcs.com<mailto:s.meghana10@tcs.com>>; Naga Sushma Gandrothu <g.nagasushma@tcs.com<mailto:g.nagasushma@tcs.com>>; Khalil, Ghada <Ghada.Khalil@windriver.com<mailto:Ghada.Khalil@windriver.com>>; Thothadri, Ram <Ram.Thothadri@windriver.com<mailto:Ram.Thothadri@windriver.com>>; Subramanian, Ramaswamy <Ramaswamy.Subramanian@windriver.com<mailto:Ramaswamy.Subramanian@windriver.com>>; Geary, Stephen (Steve) <Steve.Geary@windriver.com<mailto:Steve.Geary@windriver.com>> Subject: RE: Need support for starlingX 8 setup bring up. There are commercial solutions for 5G RAN solutions from companies like Samsung that can run on StarlingX. There is also work on open ran ORAN solutions running on StarlingX. I have added Litao Gao to TO list. He may be able to provide pointers to you on how to get and run ORAN on StarlingX. Greg. From: Prashanthi Moligi <prashanthi.moligi@tcs.com<mailto:prashanthi.moligi@tcs.com>> Sent: Tuesday, April 18, 2023 12:03 AM To: Waines, Greg <Greg.Waines@windriver.com<mailto:Greg.Waines@windriver.com>>; Subramanian, Ramaswamy <Ramaswamy.Subramanian@windriver.com<mailto:Ramaswamy.Subramanian@windriver.com>> Cc: Nidhi Tomar <nidhi.tomar1@tcs.com<mailto:nidhi.tomar1@tcs.com>>; Meghana S <s.meghana10@tcs.com<mailto:s.meghana10@tcs.com>>; Naga Sushma Gandrothu <g.nagasushma@tcs.com<mailto:g.nagasushma@tcs.com>>; Khalil, Ghada <Ghada.Khalil@windriver.com<mailto:Ghada.Khalil@windriver.com>>; Thothadri, Ram <Ram.Thothadri@windriver.com<mailto:Ram.Thothadri@windriver.com>> Subject: RE: Need support for starlingX 8 setup bring up. CAUTION: This email comes from a non Wind River email account! Do not click links or open attachments unless you recognize the sender and know the content is safe. TCS Confidential Hi Greg, Thanks for quick reply. Yes Greg, MEC I meant “computing capabilities at the edge of the mobile network, within the Radio Access Network (RAN) and in close proximity to mobile subscribers.” Dose starlingX platform supports to run MEC services or applications? Do we have any MEC applications available with starlingX, like we have in Akarino blueprints (Ex: 5G cloud Gaming, HD video, Live broadcasting)? If yes, I want to bring up starlingX platform ASAP, for that I need your support, if possible can we have one teams call and discuss about bring up issues. Thanks, Prashanthi. From: Waines, Greg <Greg.Waines@windriver.com<mailto:Greg.Waines@windriver.com>> Sent: Monday, April 17, 2023 4:25 PM To: Prashanthi Moligi <prashanthi.moligi@tcs.com<mailto:prashanthi.moligi@tcs.com>>; Subramanian, Ramaswamy <Ramaswamy.Subramanian@windriver.com<mailto:Ramaswamy.Subramanian@windriver.com>> Cc: Nidhi Tomar <nidhi.tomar1@tcs.com<mailto:nidhi.tomar1@tcs.com>>; Meghana S <s.meghana10@tcs.com<mailto:s.meghana10@tcs.com>>; Naga Sushma Gandrothu <g.nagasushma@tcs.com<mailto:g.nagasushma@tcs.com>>; Khalil, Ghada <Ghada.Khalil@windriver.com<mailto:Ghada.Khalil@windriver.com>>; Thothadri, Ram <Ram.Thothadri@windriver.com<mailto:Ram.Thothadri@windriver.com>> Subject: RE: Need support for starlingX 8 setup bring up. TCS Confidential "External email. Open with Caution" See in-lined responses below, Greg. From: Prashanthi Moligi <prashanthi.moligi@tcs.com<mailto:prashanthi.moligi@tcs.com>> Sent: Monday, April 17, 2023 1:57 AM To: Waines, Greg <Greg.Waines@windriver.com<mailto:Greg.Waines@windriver.com>>; Subramanian, Ramaswamy <Ramaswamy.Subramanian@windriver.com<mailto:Ramaswamy.Subramanian@windriver.com>> Cc: Nidhi Tomar <nidhi.tomar1@tcs.com<mailto:nidhi.tomar1@tcs.com>>; Meghana S <s.meghana10@tcs.com<mailto:s.meghana10@tcs.com>>; Naga Sushma Gandrothu <g.nagasushma@tcs.com<mailto:g.nagasushma@tcs.com>>; Khalil, Ghada <Ghada.Khalil@windriver.com<mailto:Ghada.Khalil@windriver.com>>; Thothadri, Ram <Ram.Thothadri@windriver.com<mailto:Ram.Thothadri@windriver.com>> Subject: RE: Need support for starlingX 8 setup bring up. CAUTION: This email comes from a non Wind River email account! Do not click links or open attachments unless you recognize the sender and know the content is safe. TCS Confidential Hi Greg, Yes, we were able to get internet connectivity by running DHCP client command, IP is also getting allocate. Thanks for your support and working on further configurations. Have few doubts about that: 1. Are all the configurations mandatory, For example I want to run my containers on Kubernetes, is openstack configurations has to be done or optional?? [Greg] OpenStack is optional. There are many users of StarlingX that only use the base StarlingX Kubernetes Platform. 2. After completing all setting, if I want run MEC services/applications how to run those containers in this server, do you have any applications available along with starlingX? 3. Please share document, if you have any to configure MEC. [Greg] Are you referring to ? … “MEC or Mobile edge Computing provides an IT service environment and cloud-computing capabilities at the edge of the mobile network, within the Radio Access Network (RAN) and in close proximity to mobile subscribers.” Greg. Thanks, Prashanthi.M From: Waines, Greg <Greg.Waines@windriver.com<mailto:Greg.Waines@windriver.com>> Sent: Sunday, April 16, 2023 6:25 PM To: Prashanthi Moligi <prashanthi.moligi@tcs.com<mailto:prashanthi.moligi@tcs.com>>; Subramanian, Ramaswamy <Ramaswamy.Subramanian@windriver.com<mailto:Ramaswamy.Subramanian@windriver.com>> Cc: Nidhi Tomar <nidhi.tomar1@tcs.com<mailto:nidhi.tomar1@tcs.com>>; Meghana S <s.meghana10@tcs.com<mailto:s.meghana10@tcs.com>>; Naga Sushma Gandrothu <g.nagasushma@tcs.com<mailto:g.nagasushma@tcs.com>>; Khalil, Ghada <Ghada.Khalil@windriver.com<mailto:Ghada.Khalil@windriver.com>>; Thothadri, Ram <Ram.Thothadri@windriver.com<mailto:Ram.Thothadri@windriver.com>> Subject: RE: Need support for starlingX 8 setup bring up. TCS Confidential "External email. Open with Caution" Any luck ? Greg. From: Waines, Greg Sent: Thursday, April 13, 2023 9:07 AM To: Prashanthi Moligi <prashanthi.moligi@tcs.com<mailto:prashanthi.moligi@tcs.com>>; Subramanian, Ramaswamy <Ramaswamy.Subramanian@windriver.com<mailto:Ramaswamy.Subramanian@windriver.com>> Cc: Nidhi Tomar <nidhi.tomar1@tcs.com<mailto:nidhi.tomar1@tcs.com>>; Meghana S <s.meghana10@tcs.com<mailto:s.meghana10@tcs.com>>; Naga Sushma Gandrothu <g.nagasushma@tcs.com<mailto:g.nagasushma@tcs.com>>; Khalil, Ghada <Ghada.Khalil@windriver.com<mailto:Ghada.Khalil@windriver.com>>; Thothadri, Ram <Ram.Thothadri@windriver.com<mailto:Ram.Thothadri@windriver.com>> Subject: RE: Need support for starlingX 8 setup bring up. Hey Prashanthi, Before I try to find someone to work closely with you on this … can you try the following solutions. So, you say that your ISO install completes and you are able to login as ‘sysadmin’ (initial password is ‘sysadmin’ and you are forced to change it). But then you have no IP connectivity. So I learned that automatic DHCP does not seem to be working with our DEBIAN loads (STX 8.0) So two options for you to try: * Run ‘dhclient’ manually * RUN THE FOLLOWING: * sudo dhclient <ifname> * * WHERE <ifname> is the linux interface name of the interface that is physically cabled to a router that gives you internet access * OR * Configure IP Address and Default IP Route manually * RUN THE FOLLOWING: * sudo ip address add <IP-ADDRESS>/<SUBNET-LENGTH> dev <PORT> * sudo ip link set up dev <PORT> * sudo ip route add default via <GATEWAY-IP-ADDRESS> dev <PORT> * ping 8.8.8.8<https://urldefense.com/v3/__http:/8.8.8.8__;!!AjveYdw8EvQ!c2QTPp_0Xx4jJQ1vaQ0zzS8EoV_lMJC1vDYkQX4A_lu1YDlpSl_QVoY9Qy8jDH-37W-Z8mDaiGu_C-FhzVo5tRvJvIxZ$> * * WHERE <PORT> is the linux interface name of the interface that is physically cabled to a router that gives you internet accdess <IP-ADDRESS>/<SUBNET-LENGTH> is the IP ADDRESS for your server (i.e. StarlingX controller-0) based on your local addressing plan <GATEWAY-IP-ADDRESS> is the IP ADDRESS of your adjacent router. Let me know if that works first, Greg. From: Prashanthi Moligi <prashanthi.moligi@tcs.com<mailto:prashanthi.moligi@tcs.com>> Sent: Thursday, April 13, 2023 2:17 AM To: Waines, Greg <Greg.Waines@windriver.com<mailto:Greg.Waines@windriver.com>>; Subramanian, Ramaswamy <Ramaswamy.Subramanian@windriver.com<mailto:Ramaswamy.Subramanian@windriver.com>> Cc: Nidhi Tomar <nidhi.tomar1@tcs.com<mailto:nidhi.tomar1@tcs.com>>; Meghana S <s.meghana10@tcs.com<mailto:s.meghana10@tcs.com>>; Naga Sushma Gandrothu <g.nagasushma@tcs.com<mailto:g.nagasushma@tcs.com>> Subject: Need support for starlingX 8 setup bring up. CAUTION: This email comes from a non Wind River email account! Do not click links or open attachments unless you recognize the sender and know the content is safe. TCS Confidential Hi Greg, Thanks for your suggestion in yesterday’s meeting. As we discussed in meeting can you please give me one POC name who can help me to bring up StarlingX 8 in my internal PC. I got struck at IP assignment part from long time, I want to bring this up setup ASAP, so your quick support will be helpful. Thanks & Regards, Prashanthi. TCS Confidential =====-----=====-----===== Notice: The information contained in this e-mail message and/or attachments to it may contain confidential or privileged information. If you are not the intended recipient, any dissemination, use, review, distribution, printing or copying of the information contained in this e-mail message and/or attachments to it are strictly prohibited. If you have received this communication in error, please notify us by reply e-mail or telephone and immediately and permanently delete the message and any attachments. Thank you TCS Confidential TCS Confidential TCS Confidential TCS Confidential TCS Confidential TCS Confidential TCS Confidential TCS Confidential TCS Confidential TCS Confidential TCS Confidential TCS Confidential TCS Confidential TCS Confidential
Hello, Prashanthi.
Bruno, Python script was still on when VM is up and login was success, script is not exited
What was the last output from the script that you were able to see? Did you let the script run until the end or did you interrupt it? Logging in to the VM is not necessary before the script finishes and might even be a problem depending on what you do while the script is running. For future versions, we are planning to default to a headless installation where the VM never shows up to avoid confusing the user into thinking that the VM is ready to be used. And, of course, make this clear in the docs to-be-written about this installation method. Thanks for taking the time to try these WIP scripts, by the way. The feedback you're providing is already being considered in our future work. If you want more synchronous help, I'm usually available on the #starlingx IRC channel from around 12 to 9 PM UTC on weekdays. I'm brunomuniz there. Regards, Bruno. ________________________________ From: Prashanthi Moligi <prashanthi.moligi@tcs.com> Sent: Friday, May 5, 2023 14:45 To: Bruno Drugowick Muniz <Bruno.Muniz@encora.com>; StarlingX ML <starlingx-discuss@lists.starlingx.io> Cc: Nidhi Tomar <nidhi.tomar1@tcs.com>; Naga Sushma Gandrothu <g.nagasushma@tcs.com>; Meghana S <s.meghana10@tcs.com>; Chandu Vangala <v.chandu@tcs.com> Subject: RE: Need support for starlingX 8 setup bring up. External Mail: Do not click links or open attachments unless you recognize the sender and know the content is safe. TCS Confidential Hi Bruno/Team, Tried with different options but still facing issues with ssh to VM, not able to communicate through the Horizon clients also. Kubernetes services also not working in VM. Bruno, Python script was still on when VM is up and login was success, script is not exited, kubelet services configuration is failed. Can you suggest some work around here, we are also trying to resolve the issue. Thanks & Regards, Prashanthi.M From: Bruno Drugowick Muniz <Bruno.Muniz@encora.com> Sent: Thursday, May 4, 2023 7:29 PM To: Chandu Vangala <v.chandu@tcs.com>; Prashanthi Moligi <prashanthi.moligi@tcs.com> Cc: Nidhi Tomar <nidhi.tomar1@tcs.com>; Naga Sushma Gandrothu <g.nagasushma@tcs.com>; Meghana S <s.meghana10@tcs.com> Subject: Re: Need support for starlingX 8 setup bring up. TCS Confidential "External email. Open with Caution" I'm asking this question because I started a VM that I created with the script and it started the Kubelet services just fine. I wonder if this is a step in the middle of the config script where the service is not yet properly configured. [cid:image002.png@01D97F90.2D70DDD0] Regards, Bruno. ________________________________ From: Bruno Drugowick Muniz <Bruno.Muniz@encora.com<mailto:Bruno.Muniz@encora.com>> Sent: Thursday, May 4, 2023 10:56 To: Chandu Vangala <v.chandu@tcs.com<mailto:v.chandu@tcs.com>>; Prashanthi Moligi <prashanthi.moligi@tcs.com<mailto:prashanthi.moligi@tcs.com>> Cc: Nidhi Tomar <nidhi.tomar1@tcs.com<mailto:nidhi.tomar1@tcs.com>>; Naga Sushma Gandrothu <g.nagasushma@tcs.com<mailto:g.nagasushma@tcs.com>>; Meghana S <s.meghana10@tcs.com<mailto:s.meghana10@tcs.com>> Subject: Re: Need support for starlingX 8 setup bring up. Hello, Chandu. At this point, is the Python script already finished? What's its output at the end? Regards, Bruno. ________________________________ From: Chandu Vangala <v.chandu@tcs.com<mailto:v.chandu@tcs.com>> Sent: Thursday, May 4, 2023 09:28 To: Bruno Drugowick Muniz <Bruno.Muniz@encora.com<mailto:Bruno.Muniz@encora.com>>; Prashanthi Moligi <prashanthi.moligi@tcs.com<mailto:prashanthi.moligi@tcs.com>> Cc: Nidhi Tomar <nidhi.tomar1@tcs.com<mailto:nidhi.tomar1@tcs.com>>; Naga Sushma Gandrothu <g.nagasushma@tcs.com<mailto:g.nagasushma@tcs.com>>; Meghana S <s.meghana10@tcs.com<mailto:s.meghana10@tcs.com>> Subject: Re: Need support for starlingX 8 setup bring up. External Mail: Do not click links or open attachments unless you recognize the sender and know the content is safe. TCS Confidential Hi Bruno, We have followed your script https://paste.opendev.org/show/bciA9x0pZbsPmkgT5URs/. and able to create VM VirtualBox. But Kubernet services are not running. Attached the error screenshot below. Could you please check and help on this. [Image] Thanks & Regards, V.Chandu. ________________________________ From: Bruno Drugowick Muniz <Bruno.Muniz@encora.com<mailto:Bruno.Muniz@encora.com>> Sent: Tuesday, May 2, 2023 9:18 PM To: Prashanthi Moligi <prashanthi.moligi@tcs.com<mailto:prashanthi.moligi@tcs.com>> Cc: Nidhi Tomar <nidhi.tomar1@tcs.com<mailto:nidhi.tomar1@tcs.com>>; Naga Sushma Gandrothu <g.nagasushma@tcs.com<mailto:g.nagasushma@tcs.com>>; Meghana S <s.meghana10@tcs.com<mailto:s.meghana10@tcs.com>>; Chandu Vangala <v.chandu@tcs.com<mailto:v.chandu@tcs.com>> Subject: Re: Need support for starlingX 8 setup bring up. TCS Confidential "External email. Open with Caution" Hello, Prashanthi. Answers in red: 1. Do we need to create VMs and then run your script or your script itself will create VMs also? * The script itself creates the VM 1. Do we need to create 3 VMS (storage, control, worker) or only one VM is enough? * Our current under-review version of the script only works for the AIO-SX (All-In-One Simplex) setup. This setup doesn't include storage. * Since what we have so far is still not merged to the main branch, you need to check out the patchset we have under review. I'll send the instructions again (see below). * Again, I reinstate the importance of understanding that this is a WIP effort under review by the community that already got my team several working installations of StarlingX under VirtualBox that developers can use to get to know and do small tests with it. * I only share this because you seem to be having similar problems that I saw recently in my team, so a mostly automated setup can be helpful for the developers that plan to work with the solution. Below are the steps that I sent in another thread. These are for a Debian-based operating system, tested in Ubuntu and Pop!_OS: # Install dependencies sudo apt install virtualbox git rsync sshpass openssh-client python3-pip python3-venv # Set up NAT Network to be used in VirtualBox VBoxManage natnetwork add --netname NatNetwork --network 10.10.10.0/24 --dhcp off --ipv6 on # Creating port forward for 8080 since for 22 it's created by the Python script currently VBoxManage natnetwork modify --netname NatNetwork --port-forward-4 http-8080:tcp:[]:8080:[10.10.10.3]:8080 # Clone /tools repo to help with the installation mkdir -p starlingx cd starlingx git clone --depth 1 https://opendev.org/starlingx/tools.git # Downloads patchset that contains the scripts under review by the community cd tools git fetch https://review.opendev.org/starlingx/tools refs/changes/70/880870/11 && git checkout FETCH_HEAD # Configure Python's virtual environment cd deployment/virtualbox/pybox python3 -m venv venv source ./venv/bin/activate pip install --upgrade pip pip install -r requirements.txt # Download StarlingX ISO wget -N https://mirror.starlingx.cengn.ca/mirror/starlingx/release/latest_release/de... -O ./stx-8.iso # Start the installation python3 ./install_vbox.py --setup-type AIO-SX \ --iso-location "./stx-8.iso" \ --labname Prashanthi --install-mode serial \ --config-files-dir ./configs/aio-sx/ \ --config-controller-ini ./configs/aio-sx/stx_config.ini_centos \ --ansible-controller-config ./configs/aio-sx/localhost.yml \ --vboxnet-type nat \ --vboxnet-name NatNetwork \ --nat-controller0-local-ssh-port 3122 \ --controller0-ip 10.10.10.3 \ --ini-oam-cidr '10.10.10.0/24' Notice on this last command that the --setup-type is equal to AIO-SX. This is the only installation type that our branch/patchset currently supports. Our idea is to bring these scripts back to a working state since people haven't touched then in about 4 years now. In this link, you find the script with all the steps above that you can download and run standalone: https://paste.opendev.org/show/bciA9x0pZbsPmkgT5URs/. But it's important to understand each step above so you can debug eventual problems easier. Regards, Bruno. ________________________________ From: Prashanthi Moligi <prashanthi.moligi@tcs.com<mailto:prashanthi.moligi@tcs.com>> Sent: Tuesday, May 2, 2023 12:09 To: Bruno Drugowick Muniz <Bruno.Muniz@encora.com<mailto:Bruno.Muniz@encora.com>> Cc: Nidhi Tomar <nidhi.tomar1@tcs.com<mailto:nidhi.tomar1@tcs.com>>; Naga Sushma Gandrothu <g.nagasushma@tcs.com<mailto:g.nagasushma@tcs.com>>; Meghana S <s.meghana10@tcs.com<mailto:s.meghana10@tcs.com>>; Chandu Vangala <v.chandu@tcs.com<mailto:v.chandu@tcs.com>> Subject: RE: Need support for starlingX 8 setup bring up. External Mail: Do not click links or open attachments unless you recognize the sender and know the content is safe. TCS Confidential Hi Bruno, Today we started working on VM installation also, but bootimage.iso not cloned with tools.git image and GUI starting step is failing. 1. Do we need to create VMs and then run your script or your script itself will create VMs also? 2. Do we need to create 3 VMS (storage, control, worker) or only one VM is enough? We are done with host machine setup but facing issue with VM setup, if you join tomorrow call , can we discuss VM environment issues also? Thanks&Regards, Prashanthi. From: Prashanthi Moligi Sent: Monday, May 1, 2023 11:22 PM To: Bruno Drugowick Muniz <Bruno.Muniz@encora.com<mailto:Bruno.Muniz@encora.com>> Cc: Nidhi Tomar <nidhi.tomar1@tcs.com<mailto:nidhi.tomar1@tcs.com>>; Naga Sushma Gandrothu <g.nagasushma@tcs.com<mailto:g.nagasushma@tcs.com>>; Meghana S <s.meghana10@tcs.com<mailto:s.meghana10@tcs.com>> Subject: RE: Need support for starlingX 8 setup bring up. Hi Bruno, I agree to continuing with half the installation of Bare metal, so I asked for sync up call with Greg tomorrow. If it doesn’t work tomorrow, then I want to start VM starlingX installation with your automation scripts, we will start that day after tomorrow morning, can you syncup on Wednesday evening, for the issues if we face any. If installation with Greg help is successful, then we do not take it up, I will inform the status tomorrow evening time. Thanks&Regards, Prashanthi.M From: Bruno Drugowick Muniz <Bruno.Muniz@encora.com<mailto:Bruno.Muniz@encora.com>> Sent: Thursday, April 27, 2023 8:35 PM To: Waines, Greg <Greg.Waines@windriver.com<mailto:Greg.Waines@windriver.com>>; Prashanthi Moligi <prashanthi.moligi@tcs.com<mailto:prashanthi.moligi@tcs.com>>; Gao, Litao <Litao.Gao@windriver.com<mailto:Litao.Gao@windriver.com>> Subject: Re: Need support for starlingX 8 setup bring up. TCS Confidential "External email. Open with Caution" Prashanthi, I agree, Litao and Greg are on the right track here. It looks like a problem in the config and if you answer what Greg is asking we should be able to quickly figure out what exactly is wrong. Answers in red for the questions you asked: * Can I use same baremetal ISO for VM environment also * Yes * Will below scripts automate only VM environment, not bare metal? * VM environments (especifically VirtualBox) are what we're working on right now, yes. * I am currently working with latest StarlingX 8 version, is it stable or can we switch starlingX7? * The latest version (8) is stable. You can use it, yes. I don't want to get in the way of "debugging" your current bare metal installation, but I want to give you options and you decide if they make your life easier or not. I made a script for myself that is simultaneously kind of a "short version" of this installation guide<https://docs.starlingx.io/r/stx.8.0/deploy_install_guides/release/virtual/aio_simplex.html> and also something that you can just run on a Debian-based Linux box. I personally tested/used it on 2 different Ubuntu 20.04 boxes several times already. The script is here: https://paste.opendev.org/show/bciA9x0pZbsPmkgT5URs/. Feel free to reach me on IRC (you can find me, brunomuniz, on the StarlingX channel) if you want more synchronous help with it. Regards, Bruno. ________________________________ From: Waines, Greg <Greg.Waines@windriver.com<mailto:Greg.Waines@windriver.com>> Sent: Thursday, April 27, 2023 11:15 To: Prashanthi Moligi <prashanthi.moligi@tcs.com<mailto:prashanthi.moligi@tcs.com>>; Gao, Litao <Litao.Gao@windriver.com<mailto:Litao.Gao@windriver.com>> Cc: Bruno Drugowick Muniz <Bruno.Muniz@encora.com<mailto:Bruno.Muniz@encora.com>> Subject: RE: Need support for starlingX 8 setup bring up. External Mail: Do not click links or open attachments unless you recognize the sender and know the content is safe. Apologies Prashanthi … I was out-of-office for a few days. I suspect Litao is on the right track … it doesn’t seem like 10.10.10.1 is a valid IP Address for your next hop gateway router. Can you provide the following info * AFTER you do the INITIAL USB SOFTWARE INSTALL * AND AFTER YOU login for the first time as sysadmin/sysadmin … and change the password * AND AFTER YOU RUN ‘sudo dhclient <ifname>’ in order to get your initial IP Address * Can you run the following and send me the outputs * ip link * ip addr * ping 8.8.8.8 * can you also send me the contents of the /home/sysadmin/localhost.yml that you are using ? thanks Greg. From: Gao, Litao <Litao.Gao@windriver.com<mailto:Litao.Gao@windriver.com>> Sent: Thursday, April 27, 2023 4:05 AM To: Prashanthi Moligi <prashanthi.moligi@tcs.com<mailto:prashanthi.moligi@tcs.com>>; Bruno Drugowick Muniz <Bruno.Muniz@encora.com<mailto:Bruno.Muniz@encora.com>>; Waines, Greg <Greg.Waines@windriver.com<mailto:Greg.Waines@windriver.com>> Subject: RE: Need support for starlingX 8 setup bring up. Hi Prashanthi, Checked your log. Are you sure ‘10.10.10.1’ is the valid gateway ip address in your environment? Best Regards, Litao ________________________________ [Wind River]<https://www.windriver.com/> From: Prashanthi Moligi <prashanthi.moligi@tcs.com<mailto:prashanthi.moligi@tcs.com>> Sent: Thursday, April 27, 2023 2:39 PM To: Bruno Drugowick Muniz <Bruno.Muniz@encora.com<mailto:Bruno.Muniz@encora.com>>; Waines, Greg <Greg.Waines@windriver.com<mailto:Greg.Waines@windriver.com>>; Gao, Litao <Litao.Gao@windriver.com<mailto:Litao.Gao@windriver.com>> Subject: RE: Need support for starlingX 8 setup bring up. CAUTION: This email comes from a non Wind River email account! Do not click links or open attachments unless you recognize the sender and know the content is safe. TCS Confidential Hi Bruno, FYI I am trying to install “starlingX kubernetes on VM/Bare metal” not for openstack version. Thanks & Regards, Prashanthi.M From: Prashanthi Moligi Sent: Thursday, April 27, 2023 11:28 AM To: Bruno Drugowick Muniz <Bruno.Muniz@encora.com<mailto:Bruno.Muniz@encora.com>>; Waines, Greg <Greg.Waines@windriver.com<mailto:Greg.Waines@windriver.com>>; Gao, Litao <Litao.Gao@windriver.com<mailto:Litao.Gao@windriver.com>>; Schwager, Udi <Udi.Schwager@windriver.com<mailto:Udi.Schwager@windriver.com>>; StarlingX ML <starlingx-discuss@lists.starlingx.io<mailto:starlingx-discuss@lists.starlingx.io>> Cc: Nidhi Tomar <nidhi.tomar1@tcs.com<mailto:nidhi.tomar1@tcs.com>>; Meghana S <s.meghana10@tcs.com<mailto:s.meghana10@tcs.com>>; Naga Sushma Gandrothu <g.nagasushma@tcs.com<mailto:g.nagasushma@tcs.com>>; Khalil, Ghada <Ghada.Khalil@windriver.com<mailto:Ghada.Khalil@windriver.com>>; Thothadri, Ram <Ram.Thothadri@windriver.com<mailto:Ram.Thothadri@windriver.com>>; Subramanian, Ramaswamy <Ramaswamy.Subramanian@windriver.com<mailto:Ramaswamy.Subramanian@windriver.com>>; Geary, Stephen (Steve) <Steve.Geary@windriver.com<mailto:Steve.Geary@windriver.com>> Subject: RE: Need support for starlingX 8 setup bring up. Hi Bruno, I am tyring to install “Virtual All-in-one Simplex Installation<https://urldefense.com/v3/__https:/docs.starlingx.io/r/stx.8.0/deploy_install_guides/release/virtual/aio_simplex.html__;!!AjveYdw8EvQ!amEX-sECO5eIwIskUSBkSiHV3ZPsCyzHs7EEkPD7gj8_8BkILaKk_gMArUfitD4YErIes6r__l64ytqXUL8-MpVQpE8$>” on baremetal, I understood that you are automating installation process for same deployment config on Virtual environment. Can you please help me for below points. * Can I use same baremetal ISO for VM environment also * Will below scripts automate only VM environment, not bare metal? * I am currently working with latest StarlingX 8 version, is it stable or can we switch starlingX7? I want to bring up starlingX setup ASAP either on bare metal or on VM, your automation script helps me for that, please share your script and process to run. Eagerly waiting for your response. Thanks, Prashanthi. From: Bruno Drugowick Muniz <Bruno.Muniz@encora.com<mailto:Bruno.Muniz@encora.com>> Sent: Thursday, April 27, 2023 3:48 AM To: Prashanthi Moligi <prashanthi.moligi@tcs.com<mailto:prashanthi.moligi@tcs.com>>; Waines, Greg <Greg.Waines@windriver.com<mailto:Greg.Waines@windriver.com>>; Gao, Litao <Litao.Gao@windriver.com<mailto:Litao.Gao@windriver.com>>; Schwager, Udi <Udi.Schwager@windriver.com<mailto:Udi.Schwager@windriver.com>>; StarlingX ML <starlingx-discuss@lists.starlingx.io<mailto:starlingx-discuss@lists.starlingx.io>> Cc: Nidhi Tomar <nidhi.tomar1@tcs.com<mailto:nidhi.tomar1@tcs.com>>; Meghana S <s.meghana10@tcs.com<mailto:s.meghana10@tcs.com>>; Naga Sushma Gandrothu <g.nagasushma@tcs.com<mailto:g.nagasushma@tcs.com>>; Khalil, Ghada <Ghada.Khalil@windriver.com<mailto:Ghada.Khalil@windriver.com>>; Thothadri, Ram <Ram.Thothadri@windriver.com<mailto:Ram.Thothadri@windriver.com>>; Subramanian, Ramaswamy <Ramaswamy.Subramanian@windriver.com<mailto:Ramaswamy.Subramanian@windriver.com>>; Geary, Stephen (Steve) <Steve.Geary@windriver.com<mailto:Steve.Geary@windriver.com>> Subject: Re: Need support for starlingX 8 setup bring up. TCS Confidential "External email. Open with Caution" Hi, Prashanthi. Currently, my team is working on changing some existing Python/Shell scripts, and with our changes so far you can get an installation of StarlingX AIO-SX in VirtualBox from a Debian box without too much trouble (almost 100% automated). For reference: * AIO: Al-In-One, means that the same machine (vm) will have more than one responsibility (controller and worker in this case) * SX: Simplex, means that only a single controller will be used. I don't know if this is enough for the PoC that you want to do, but in case this helps, our changes are currently under review here: https://review.opendev.org/c/starlingx/tools/+/880870<https://urldefense.com/v3/__https:/review.opendev.org/c/starlingx/tools/*/880870__;Kw!!AjveYdw8EvQ!amEX-sECO5eIwIskUSBkSiHV3ZPsCyzHs7EEkPD7gj8_8BkILaKk_gMArUfitD4YErIes6r__l64ytqXUL8-PJhoWUw$>. Let me know if this is helpful and I can put a quick Shell script together that will get you the code with our changes and perform the installation for you. Regards, Bruno. ________________________________ From: Prashanthi Moligi <prashanthi.moligi@tcs.com<mailto:prashanthi.moligi@tcs.com>> Sent: Wednesday, April 26, 2023 14:53 To: Waines, Greg <Greg.Waines@windriver.com<mailto:Greg.Waines@windriver.com>>; Gao, Litao <Litao.Gao@windriver.com<mailto:Litao.Gao@windriver.com>>; Schwager, Udi <Udi.Schwager@windriver.com<mailto:Udi.Schwager@windriver.com>>; StarlingX ML <starlingx-discuss@lists.starlingx.io<mailto:starlingx-discuss@lists.starlingx.io>> Cc: Nidhi Tomar <nidhi.tomar1@tcs.com<mailto:nidhi.tomar1@tcs.com>>; Meghana S <s.meghana10@tcs.com<mailto:s.meghana10@tcs.com>>; Naga Sushma Gandrothu <g.nagasushma@tcs.com<mailto:g.nagasushma@tcs.com>>; Khalil, Ghada <Ghada.Khalil@windriver.com<mailto:Ghada.Khalil@windriver.com>>; Thothadri, Ram <Ram.Thothadri@windriver.com<mailto:Ram.Thothadri@windriver.com>>; Subramanian, Ramaswamy <Ramaswamy.Subramanian@windriver.com<mailto:Ramaswamy.Subramanian@windriver.com>>; Geary, Stephen (Steve) <Steve.Geary@windriver.com<mailto:Steve.Geary@windriver.com>> Subject: Re: [Starlingx-discuss] Need support for starlingX 8 setup bring up. You don't often get email from prashanthi.moligi@tcs.com<mailto:prashanthi.moligi@tcs.com>. Learn why this is important<https://urldefense.com/v3/__https:/aka.ms/LearnAboutSenderIdentification__;!!AjveYdw8EvQ!amEX-sECO5eIwIskUSBkSiHV3ZPsCyzHs7EEkPD7gj8_8BkILaKk_gMArUfitD4YErIes6r__l64ytqXUL8-GGF0nNs$> External Mail: Do not click links or open attachments unless you recognize the sender and know the content is safe. TCS Confidential Hi Greg/Litao, We could able to proceed further in ansible playbook execution, but some of the steps failing and also we have doubts in parameter configuration of localhost.yml file, Attaching ansible log can please verify and guide us to bring up the starlingX controller. Greg, As we discussed in last meeting can you please give one Point of contact, who can help us in setup bring up, it will be great help if you provide some POC ASAP. Thanks & Regards, Prashanthi.M From: Waines, Greg <Greg.Waines@windriver.com<mailto:Greg.Waines@windriver.com>> Sent: Wednesday, April 19, 2023 8:29 PM To: Gao, Litao <Litao.Gao@windriver.com<mailto:Litao.Gao@windriver.com>>; Prashanthi Moligi <prashanthi.moligi@tcs.com<mailto:prashanthi.moligi@tcs.com>>; Schwager, Udi <Udi.Schwager@windriver.com<mailto:Udi.Schwager@windriver.com>>; StarlingX ML <starlingx-discuss@lists.starlingx.io<mailto:starlingx-discuss@lists.starlingx.io>> Cc: Nidhi Tomar <nidhi.tomar1@tcs.com<mailto:nidhi.tomar1@tcs.com>>; Meghana S <s.meghana10@tcs.com<mailto:s.meghana10@tcs.com>>; Naga Sushma Gandrothu <g.nagasushma@tcs.com<mailto:g.nagasushma@tcs.com>>; Khalil, Ghada <Ghada.Khalil@windriver.com<mailto:Ghada.Khalil@windriver.com>>; Thothadri, Ram <Ram.Thothadri@windriver.com<mailto:Ram.Thothadri@windriver.com>>; Subramanian, Ramaswamy <Ramaswamy.Subramanian@windriver.com<mailto:Ramaswamy.Subramanian@windriver.com>>; Geary, Stephen (Steve) <Steve.Geary@windriver.com<mailto:Steve.Geary@windriver.com>> Subject: RE: Need support for starlingX 8 setup bring up. TCS Confidential "External email. Open with Caution" + starlingx-discuss From: Gao, Litao <Litao.Gao@windriver.com<mailto:Litao.Gao@windriver.com>> Sent: Wednesday, April 19, 2023 5:25 AM To: Waines, Greg <Greg.Waines@windriver.com<mailto:Greg.Waines@windriver.com>>; Prashanthi Moligi <prashanthi.moligi@tcs.com<mailto:prashanthi.moligi@tcs.com>>; Schwager, Udi <Udi.Schwager@windriver.com<mailto:Udi.Schwager@windriver.com>> Cc: Nidhi Tomar <nidhi.tomar1@tcs.com<mailto:nidhi.tomar1@tcs.com>>; Meghana S <s.meghana10@tcs.com<mailto:s.meghana10@tcs.com>>; Naga Sushma Gandrothu <g.nagasushma@tcs.com<mailto:g.nagasushma@tcs.com>>; Khalil, Ghada <Ghada.Khalil@windriver.com<mailto:Ghada.Khalil@windriver.com>>; Thothadri, Ram <Ram.Thothadri@windriver.com<mailto:Ram.Thothadri@windriver.com>>; Subramanian, Ramaswamy <Ramaswamy.Subramanian@windriver.com<mailto:Ramaswamy.Subramanian@windriver.com>>; Geary, Stephen (Steve) <Steve.Geary@windriver.com<mailto:Steve.Geary@windriver.com>> Subject: RE: Need support for starlingX 8 setup bring up. Hi Prashanthi, MEC services/app is supposed to be run as a standard k8s workload in pod (deployment, service, etc), you can launch your via kubectl, helmchart, or other ways available on k8s. And the GPU, High speed NIC, or accelerator support are available in StarlingX which may be used by MEC application. As I know, there is no publicly announced MEC applications running on StarlingX, but as I can see it is capable to carry the MEC workload you mentioned. And as Greg pointed, we have many commercial solutions for 5G vRAN solutions. Best Regards, Litao ________________________________ [Wind River]<https://www.windriver.com/> From: Waines, Greg <Greg.Waines@windriver.com<mailto:Greg.Waines@windriver.com>> Sent: Tuesday, April 18, 2023 7:03 PM To: Prashanthi Moligi <prashanthi.moligi@tcs.com<mailto:prashanthi.moligi@tcs.com>>; Gao, Litao <Litao.Gao@windriver.com<mailto:Litao.Gao@windriver.com>>; Schwager, Udi <Udi.Schwager@windriver.com<mailto:Udi.Schwager@windriver.com>> Cc: Nidhi Tomar <nidhi.tomar1@tcs.com<mailto:nidhi.tomar1@tcs.com>>; Meghana S <s.meghana10@tcs.com<mailto:s.meghana10@tcs.com>>; Naga Sushma Gandrothu <g.nagasushma@tcs.com<mailto:g.nagasushma@tcs.com>>; Khalil, Ghada <Ghada.Khalil@windriver.com<mailto:Ghada.Khalil@windriver.com>>; Thothadri, Ram <Ram.Thothadri@windriver.com<mailto:Ram.Thothadri@windriver.com>>; Subramanian, Ramaswamy <Ramaswamy.Subramanian@windriver.com<mailto:Ramaswamy.Subramanian@windriver.com>>; Geary, Stephen (Steve) <Steve.Geary@windriver.com<mailto:Steve.Geary@windriver.com>> Subject: RE: Need support for starlingX 8 setup bring up. + Udi as well … he might be the proper contact for ORAN on StarlingX. Greg. From: Waines, Greg Sent: Tuesday, April 18, 2023 7:03 AM To: Prashanthi Moligi <prashanthi.moligi@tcs.com<mailto:prashanthi.moligi@tcs.com>>; Gao, Litao <Litao.Gao@windriver.com<mailto:Litao.Gao@windriver.com>> Cc: Nidhi Tomar <nidhi.tomar1@tcs.com<mailto:nidhi.tomar1@tcs.com>>; Meghana S <s.meghana10@tcs.com<mailto:s.meghana10@tcs.com>>; Naga Sushma Gandrothu <g.nagasushma@tcs.com<mailto:g.nagasushma@tcs.com>>; Khalil, Ghada <Ghada.Khalil@windriver.com<mailto:Ghada.Khalil@windriver.com>>; Thothadri, Ram <Ram.Thothadri@windriver.com<mailto:Ram.Thothadri@windriver.com>>; Subramanian, Ramaswamy <Ramaswamy.Subramanian@windriver.com<mailto:Ramaswamy.Subramanian@windriver.com>>; Geary, Stephen (Steve) <Steve.Geary@windriver.com<mailto:Steve.Geary@windriver.com>> Subject: RE: Need support for starlingX 8 setup bring up. There are commercial solutions for 5G RAN solutions from companies like Samsung that can run on StarlingX. There is also work on open ran ORAN solutions running on StarlingX. I have added Litao Gao to TO list. He may be able to provide pointers to you on how to get and run ORAN on StarlingX. Greg. From: Prashanthi Moligi <prashanthi.moligi@tcs.com<mailto:prashanthi.moligi@tcs.com>> Sent: Tuesday, April 18, 2023 12:03 AM To: Waines, Greg <Greg.Waines@windriver.com<mailto:Greg.Waines@windriver.com>>; Subramanian, Ramaswamy <Ramaswamy.Subramanian@windriver.com<mailto:Ramaswamy.Subramanian@windriver.com>> Cc: Nidhi Tomar <nidhi.tomar1@tcs.com<mailto:nidhi.tomar1@tcs.com>>; Meghana S <s.meghana10@tcs.com<mailto:s.meghana10@tcs.com>>; Naga Sushma Gandrothu <g.nagasushma@tcs.com<mailto:g.nagasushma@tcs.com>>; Khalil, Ghada <Ghada.Khalil@windriver.com<mailto:Ghada.Khalil@windriver.com>>; Thothadri, Ram <Ram.Thothadri@windriver.com<mailto:Ram.Thothadri@windriver.com>> Subject: RE: Need support for starlingX 8 setup bring up. CAUTION: This email comes from a non Wind River email account! Do not click links or open attachments unless you recognize the sender and know the content is safe. TCS Confidential Hi Greg, Thanks for quick reply. Yes Greg, MEC I meant “computing capabilities at the edge of the mobile network, within the Radio Access Network (RAN) and in close proximity to mobile subscribers.” Dose starlingX platform supports to run MEC services or applications? Do we have any MEC applications available with starlingX, like we have in Akarino blueprints (Ex: 5G cloud Gaming, HD video, Live broadcasting)? If yes, I want to bring up starlingX platform ASAP, for that I need your support, if possible can we have one teams call and discuss about bring up issues. Thanks, Prashanthi. From: Waines, Greg <Greg.Waines@windriver.com<mailto:Greg.Waines@windriver.com>> Sent: Monday, April 17, 2023 4:25 PM To: Prashanthi Moligi <prashanthi.moligi@tcs.com<mailto:prashanthi.moligi@tcs.com>>; Subramanian, Ramaswamy <Ramaswamy.Subramanian@windriver.com<mailto:Ramaswamy.Subramanian@windriver.com>> Cc: Nidhi Tomar <nidhi.tomar1@tcs.com<mailto:nidhi.tomar1@tcs.com>>; Meghana S <s.meghana10@tcs.com<mailto:s.meghana10@tcs.com>>; Naga Sushma Gandrothu <g.nagasushma@tcs.com<mailto:g.nagasushma@tcs.com>>; Khalil, Ghada <Ghada.Khalil@windriver.com<mailto:Ghada.Khalil@windriver.com>>; Thothadri, Ram <Ram.Thothadri@windriver.com<mailto:Ram.Thothadri@windriver.com>> Subject: RE: Need support for starlingX 8 setup bring up. TCS Confidential "External email. Open with Caution" See in-lined responses below, Greg. From: Prashanthi Moligi <prashanthi.moligi@tcs.com<mailto:prashanthi.moligi@tcs.com>> Sent: Monday, April 17, 2023 1:57 AM To: Waines, Greg <Greg.Waines@windriver.com<mailto:Greg.Waines@windriver.com>>; Subramanian, Ramaswamy <Ramaswamy.Subramanian@windriver.com<mailto:Ramaswamy.Subramanian@windriver.com>> Cc: Nidhi Tomar <nidhi.tomar1@tcs.com<mailto:nidhi.tomar1@tcs.com>>; Meghana S <s.meghana10@tcs.com<mailto:s.meghana10@tcs.com>>; Naga Sushma Gandrothu <g.nagasushma@tcs.com<mailto:g.nagasushma@tcs.com>>; Khalil, Ghada <Ghada.Khalil@windriver.com<mailto:Ghada.Khalil@windriver.com>>; Thothadri, Ram <Ram.Thothadri@windriver.com<mailto:Ram.Thothadri@windriver.com>> Subject: RE: Need support for starlingX 8 setup bring up. CAUTION: This email comes from a non Wind River email account! Do not click links or open attachments unless you recognize the sender and know the content is safe. TCS Confidential Hi Greg, Yes, we were able to get internet connectivity by running DHCP client command, IP is also getting allocate. Thanks for your support and working on further configurations. Have few doubts about that: 1. Are all the configurations mandatory, For example I want to run my containers on Kubernetes, is openstack configurations has to be done or optional?? [Greg] OpenStack is optional. There are many users of StarlingX that only use the base StarlingX Kubernetes Platform. 2. After completing all setting, if I want run MEC services/applications how to run those containers in this server, do you have any applications available along with starlingX? 3. Please share document, if you have any to configure MEC. [Greg] Are you referring to ? … “MEC or Mobile edge Computing provides an IT service environment and cloud-computing capabilities at the edge of the mobile network, within the Radio Access Network (RAN) and in close proximity to mobile subscribers.” Greg. Thanks, Prashanthi.M From: Waines, Greg <Greg.Waines@windriver.com<mailto:Greg.Waines@windriver.com>> Sent: Sunday, April 16, 2023 6:25 PM To: Prashanthi Moligi <prashanthi.moligi@tcs.com<mailto:prashanthi.moligi@tcs.com>>; Subramanian, Ramaswamy <Ramaswamy.Subramanian@windriver.com<mailto:Ramaswamy.Subramanian@windriver.com>> Cc: Nidhi Tomar <nidhi.tomar1@tcs.com<mailto:nidhi.tomar1@tcs.com>>; Meghana S <s.meghana10@tcs.com<mailto:s.meghana10@tcs.com>>; Naga Sushma Gandrothu <g.nagasushma@tcs.com<mailto:g.nagasushma@tcs.com>>; Khalil, Ghada <Ghada.Khalil@windriver.com<mailto:Ghada.Khalil@windriver.com>>; Thothadri, Ram <Ram.Thothadri@windriver.com<mailto:Ram.Thothadri@windriver.com>> Subject: RE: Need support for starlingX 8 setup bring up. TCS Confidential "External email. Open with Caution" Any luck ? Greg. From: Waines, Greg Sent: Thursday, April 13, 2023 9:07 AM To: Prashanthi Moligi <prashanthi.moligi@tcs.com<mailto:prashanthi.moligi@tcs.com>>; Subramanian, Ramaswamy <Ramaswamy.Subramanian@windriver.com<mailto:Ramaswamy.Subramanian@windriver.com>> Cc: Nidhi Tomar <nidhi.tomar1@tcs.com<mailto:nidhi.tomar1@tcs.com>>; Meghana S <s.meghana10@tcs.com<mailto:s.meghana10@tcs.com>>; Naga Sushma Gandrothu <g.nagasushma@tcs.com<mailto:g.nagasushma@tcs.com>>; Khalil, Ghada <Ghada.Khalil@windriver.com<mailto:Ghada.Khalil@windriver.com>>; Thothadri, Ram <Ram.Thothadri@windriver.com<mailto:Ram.Thothadri@windriver.com>> Subject: RE: Need support for starlingX 8 setup bring up. Hey Prashanthi, Before I try to find someone to work closely with you on this … can you try the following solutions. So, you say that your ISO install completes and you are able to login as ‘sysadmin’ (initial password is ‘sysadmin’ and you are forced to change it). But then you have no IP connectivity. So I learned that automatic DHCP does not seem to be working with our DEBIAN loads (STX 8.0) So two options for you to try: * Run ‘dhclient’ manually * RUN THE FOLLOWING: * sudo dhclient <ifname> * * WHERE <ifname> is the linux interface name of the interface that is physically cabled to a router that gives you internet access * OR * Configure IP Address and Default IP Route manually * RUN THE FOLLOWING: * sudo ip address add <IP-ADDRESS>/<SUBNET-LENGTH> dev <PORT> * sudo ip link set up dev <PORT> * sudo ip route add default via <GATEWAY-IP-ADDRESS> dev <PORT> * ping 8.8.8.8<https://urldefense.com/v3/__http:/8.8.8.8__;!!AjveYdw8EvQ!c2QTPp_0Xx4jJQ1vaQ0zzS8EoV_lMJC1vDYkQX4A_lu1YDlpSl_QVoY9Qy8jDH-37W-Z8mDaiGu_C-FhzVo5tRvJvIxZ$> * * WHERE <PORT> is the linux interface name of the interface that is physically cabled to a router that gives you internet accdess <IP-ADDRESS>/<SUBNET-LENGTH> is the IP ADDRESS for your server (i.e. StarlingX controller-0) based on your local addressing plan <GATEWAY-IP-ADDRESS> is the IP ADDRESS of your adjacent router. Let me know if that works first, Greg. From: Prashanthi Moligi <prashanthi.moligi@tcs.com<mailto:prashanthi.moligi@tcs.com>> Sent: Thursday, April 13, 2023 2:17 AM To: Waines, Greg <Greg.Waines@windriver.com<mailto:Greg.Waines@windriver.com>>; Subramanian, Ramaswamy <Ramaswamy.Subramanian@windriver.com<mailto:Ramaswamy.Subramanian@windriver.com>> Cc: Nidhi Tomar <nidhi.tomar1@tcs.com<mailto:nidhi.tomar1@tcs.com>>; Meghana S <s.meghana10@tcs.com<mailto:s.meghana10@tcs.com>>; Naga Sushma Gandrothu <g.nagasushma@tcs.com<mailto:g.nagasushma@tcs.com>> Subject: Need support for starlingX 8 setup bring up. CAUTION: This email comes from a non Wind River email account! Do not click links or open attachments unless you recognize the sender and know the content is safe. TCS Confidential Hi Greg, Thanks for your suggestion in yesterday’s meeting. As we discussed in meeting can you please give me one POC name who can help me to bring up StarlingX 8 in my internal PC. I got struck at IP assignment part from long time, I want to bring this up setup ASAP, so your quick support will be helpful. Thanks & Regards, Prashanthi. TCS Confidential =====-----=====-----===== Notice: The information contained in this e-mail message and/or attachments to it may contain confidential or privileged information. If you are not the intended recipient, any dissemination, use, review, distribution, printing or copying of the information contained in this e-mail message and/or attachments to it are strictly prohibited. If you have received this communication in error, please notify us by reply e-mail or telephone and immediately and permanently delete the message and any attachments. Thank you TCS Confidential TCS Confidential TCS Confidential TCS Confidential TCS Confidential TCS Confidential TCS Confidential TCS Confidential TCS Confidential TCS Confidential TCS Confidential TCS Confidential TCS Confidential TCS Confidential
Prashanthi, here's an example of the final message of the script when the installation succeeds: [cid:0d599ab0-8160-44f9-a37a-ebb66d74db59] When it fails, in the metrics, you will be able to see in which stage it stopped, which helps in narrowing down what might be the problem you're having. Regards, Bruno. ________________________________ From: Bruno Drugowick Muniz <Bruno.Muniz@encora.com> Sent: Friday, May 5, 2023 16:29 To: Prashanthi Moligi <prashanthi.moligi@tcs.com>; StarlingX ML <starlingx-discuss@lists.starlingx.io> Cc: Nidhi Tomar <nidhi.tomar1@tcs.com>; Naga Sushma Gandrothu <g.nagasushma@tcs.com>; Meghana S <s.meghana10@tcs.com>; Chandu Vangala <v.chandu@tcs.com> Subject: Re: [Starlingx-discuss] Need support for starlingX 8 setup bring up. Hello, Prashanthi.
Bruno, Python script was still on when VM is up and login was success, script is not exited
What was the last output from the script that you were able to see? Did you let the script run until the end or did you interrupt it? Logging in to the VM is not necessary before the script finishes and might even be a problem depending on what you do while the script is running. For future versions, we are planning to default to a headless installation where the VM never shows up to avoid confusing the user into thinking that the VM is ready to be used. And, of course, make this clear in the docs to-be-written about this installation method. Thanks for taking the time to try these WIP scripts, by the way. The feedback you're providing is already being considered in our future work. If you want more synchronous help, I'm usually available on the #starlingx IRC channel from around 12 to 9 PM UTC on weekdays. I'm brunomuniz there. Regards, Bruno.
TCS Confidential Hi Bruno, As per your suggestions, we have waited till script complete. Observed installation failed with below errors. Attaching complete script output log file and error screenshot below. [cid:ec2086fa-8bf1-4658-a977-370bdfe73ac1] Thanks & Regards, Chandu.v ________________________________ From: Bruno Drugowick Muniz <Bruno.Muniz@encora.com> Sent: Saturday, May 6, 2023 1:24 AM To: Prashanthi Moligi <prashanthi.moligi@tcs.com>; StarlingX ML <starlingx-discuss@lists.starlingx.io> Cc: Nidhi Tomar <nidhi.tomar1@tcs.com>; Naga Sushma Gandrothu <g.nagasushma@tcs.com>; Meghana S <s.meghana10@tcs.com>; Chandu Vangala <v.chandu@tcs.com> Subject: Re: Need support for starlingX 8 setup bring up. TCS Confidential "External email. Open with Caution" Prashanthi, here's an example of the final message of the script when the installation succeeds: [cid:0d599ab0-8160-44f9-a37a-ebb66d74db59] When it fails, in the metrics, you will be able to see in which stage it stopped, which helps in narrowing down what might be the problem you're having. Regards, Bruno. ________________________________ From: Bruno Drugowick Muniz <Bruno.Muniz@encora.com> Sent: Friday, May 5, 2023 16:29 To: Prashanthi Moligi <prashanthi.moligi@tcs.com>; StarlingX ML <starlingx-discuss@lists.starlingx.io> Cc: Nidhi Tomar <nidhi.tomar1@tcs.com>; Naga Sushma Gandrothu <g.nagasushma@tcs.com>; Meghana S <s.meghana10@tcs.com>; Chandu Vangala <v.chandu@tcs.com> Subject: Re: [Starlingx-discuss] Need support for starlingX 8 setup bring up. Hello, Prashanthi.
Bruno, Python script was still on when VM is up and login was success, script is not exited
What was the last output from the script that you were able to see? Did you let the script run until the end or did you interrupt it? Logging in to the VM is not necessary before the script finishes and might even be a problem depending on what you do while the script is running. For future versions, we are planning to default to a headless installation where the VM never shows up to avoid confusing the user into thinking that the VM is ready to be used. And, of course, make this clear in the docs to-be-written about this installation method. Thanks for taking the time to try these WIP scripts, by the way. The feedback you're providing is already being considered in our future work. If you want more synchronous help, I'm usually available on the #starlingx IRC channel from around 12 to 9 PM UTC on weekdays. I'm brunomuniz there. Regards, Bruno. TCS Confidential TCS Confidential =====-----=====-----===== Notice: The information contained in this e-mail message and/or attachments to it may contain confidential or privileged information. If you are not the intended recipient, any dissemination, use, review, distribution, printing or copying of the information contained in this e-mail message and/or attachments to it are strictly prohibited. If you have received this communication in error, please notify us by reply e-mail or telephone and immediately and permanently delete the message and any attachments. Thank you
Chandu, I'm sorry! I completely missed this email. I was curious about your setup and came here to look for my last exchange with you and found this email that I didn't answer. I'm sorry for that. Thanks for the log screenshot. It clearly shows that the installation was not able to download the images that it needs from docker registries out there. This is a fairly common problem that we face, especially when we're on an office network where multiple people access the internet (and the Docker registries) with the same IP address. These registries might rate limit you<https://www.docker.com/increase-rate-limits/> and the Ansible task gets stuck like that. We have a Task to work on a guide for the community<https://storyboard.openstack.org/#!/story/2005051> on how to avoid these problems by creating your own local Docker registries or a pull-through registry that's shared in an office network. The task is currently not being worked on but will be very soon. Honestly, what I ended up doing was kicking off the installation late at night at the office network and coming back the next day. Also, using my home network I didn't have any problems with the rate limit since I'm the only one using the network for that. However, I did see the problem again when I tried to do multiple installations in a short period. Let me know if this helps and what's the state of things for you since the last time we talked. Regards, Bruno. ________________________________ From: Chandu Vangala <v.chandu@tcs.com> Sent: Monday, May 8, 2023 06:51 To: Bruno Drugowick Muniz <Bruno.Muniz@encora.com>; Prashanthi Moligi <prashanthi.moligi@tcs.com>; StarlingX ML <starlingx-discuss@lists.starlingx.io> Cc: Nidhi Tomar <nidhi.tomar1@tcs.com>; Naga Sushma Gandrothu <g.nagasushma@tcs.com>; Meghana S <s.meghana10@tcs.com> Subject: Re: Need support for starlingX 8 setup bring up. External Mail: Do not click links or open attachments unless you recognize the sender and know the content is safe. TCS Confidential Hi Bruno, As per your suggestions, we have waited till script complete. Observed installation failed with below errors. Attaching complete script output log file and error screenshot below. [cid:ec2086fa-8bf1-4658-a977-370bdfe73ac1] Thanks & Regards, Chandu.v ________________________________ From: Bruno Drugowick Muniz <Bruno.Muniz@encora.com> Sent: Saturday, May 6, 2023 1:24 AM To: Prashanthi Moligi <prashanthi.moligi@tcs.com>; StarlingX ML <starlingx-discuss@lists.starlingx.io> Cc: Nidhi Tomar <nidhi.tomar1@tcs.com>; Naga Sushma Gandrothu <g.nagasushma@tcs.com>; Meghana S <s.meghana10@tcs.com>; Chandu Vangala <v.chandu@tcs.com> Subject: Re: Need support for starlingX 8 setup bring up. TCS Confidential "External email. Open with Caution" Prashanthi, here's an example of the final message of the script when the installation succeeds: [cid:0d599ab0-8160-44f9-a37a-ebb66d74db59] When it fails, in the metrics, you will be able to see in which stage it stopped, which helps in narrowing down what might be the problem you're having. Regards, Bruno. ________________________________ From: Bruno Drugowick Muniz <Bruno.Muniz@encora.com> Sent: Friday, May 5, 2023 16:29 To: Prashanthi Moligi <prashanthi.moligi@tcs.com>; StarlingX ML <starlingx-discuss@lists.starlingx.io> Cc: Nidhi Tomar <nidhi.tomar1@tcs.com>; Naga Sushma Gandrothu <g.nagasushma@tcs.com>; Meghana S <s.meghana10@tcs.com>; Chandu Vangala <v.chandu@tcs.com> Subject: Re: [Starlingx-discuss] Need support for starlingX 8 setup bring up. Hello, Prashanthi.
Bruno, Python script was still on when VM is up and login was success, script is not exited
What was the last output from the script that you were able to see? Did you let the script run until the end or did you interrupt it? Logging in to the VM is not necessary before the script finishes and might even be a problem depending on what you do while the script is running. For future versions, we are planning to default to a headless installation where the VM never shows up to avoid confusing the user into thinking that the VM is ready to be used. And, of course, make this clear in the docs to-be-written about this installation method. Thanks for taking the time to try these WIP scripts, by the way. The feedback you're providing is already being considered in our future work. If you want more synchronous help, I'm usually available on the #starlingx IRC channel from around 12 to 9 PM UTC on weekdays. I'm brunomuniz there. Regards, Bruno. TCS Confidential TCS Confidential =====-----=====-----===== Notice: The information contained in this e-mail message and/or attachments to it may contain confidential or privileged information. If you are not the intended recipient, any dissemination, use, review, distribution, printing or copying of the information contained in this e-mail message and/or attachments to it are strictly prohibited. If you have received this communication in error, please notify us by reply e-mail or telephone and immediately and permanently delete the message and any attachments. Thank you
TCS Confidential Hi Bruno, No issues with your late reply and thanks for support. But currently team and I is busy with other activities, so we will work on this work around once we get some bandwidth and will reply. Thanks & Regards, Prashanthi.M From: Bruno Drugowick Muniz <Bruno.Muniz@encora.com> Sent: Tuesday, May 16, 2023 8:31 PM To: Chandu Vangala <v.chandu@tcs.com>; Prashanthi Moligi <prashanthi.moligi@tcs.com>; StarlingX ML <starlingx-discuss@lists.starlingx.io> Cc: Nidhi Tomar <nidhi.tomar1@tcs.com>; Naga Sushma Gandrothu <g.nagasushma@tcs.com>; Meghana S <s.meghana10@tcs.com> Subject: Re: Need support for starlingX 8 setup bring up. TCS Confidential "External email. Open with Caution" Chandu, I'm sorry! I completely missed this email. I was curious about your setup and came here to look for my last exchange with you and found this email that I didn't answer. I'm sorry for that. Thanks for the log screenshot. It clearly shows that the installation was not able to download the images that it needs from docker registries out there. This is a fairly common problem that we face, especially when we're on an office network where multiple people access the internet (and the Docker registries) with the same IP address. These registries might rate limit you<https://www.docker.com/increase-rate-limits/> and the Ansible task gets stuck like that. We have a Task to work on a guide for the community<https://storyboard.openstack.org/#!/story/2005051> on how to avoid these problems by creating your own local Docker registries or a pull-through registry that's shared in an office network. The task is currently not being worked on but will be very soon. Honestly, what I ended up doing was kicking off the installation late at night at the office network and coming back the next day. Also, using my home network I didn't have any problems with the rate limit since I'm the only one using the network for that. However, I did see the problem again when I tried to do multiple installations in a short period. Let me know if this helps and what's the state of things for you since the last time we talked. Regards, Bruno. ________________________________ From: Chandu Vangala <v.chandu@tcs.com<mailto:v.chandu@tcs.com>> Sent: Monday, May 8, 2023 06:51 To: Bruno Drugowick Muniz <Bruno.Muniz@encora.com<mailto:Bruno.Muniz@encora.com>>; Prashanthi Moligi <prashanthi.moligi@tcs.com<mailto:prashanthi.moligi@tcs.com>>; StarlingX ML <starlingx-discuss@lists.starlingx.io<mailto:starlingx-discuss@lists.starlingx.io>> Cc: Nidhi Tomar <nidhi.tomar1@tcs.com<mailto:nidhi.tomar1@tcs.com>>; Naga Sushma Gandrothu <g.nagasushma@tcs.com<mailto:g.nagasushma@tcs.com>>; Meghana S <s.meghana10@tcs.com<mailto:s.meghana10@tcs.com>> Subject: Re: Need support for starlingX 8 setup bring up. External Mail: Do not click links or open attachments unless you recognize the sender and know the content is safe. TCS Confidential Hi Bruno, As per your suggestions, we have waited till script complete. Observed installation failed with below errors. Attaching complete script output log file and error screenshot below. [cid:image001.png@01D98838.F01144F0] Thanks & Regards, Chandu.v ________________________________ From: Bruno Drugowick Muniz <Bruno.Muniz@encora.com<mailto:Bruno.Muniz@encora.com>> Sent: Saturday, May 6, 2023 1:24 AM To: Prashanthi Moligi <prashanthi.moligi@tcs.com<mailto:prashanthi.moligi@tcs.com>>; StarlingX ML <starlingx-discuss@lists.starlingx.io<mailto:starlingx-discuss@lists.starlingx.io>> Cc: Nidhi Tomar <nidhi.tomar1@tcs.com<mailto:nidhi.tomar1@tcs.com>>; Naga Sushma Gandrothu <g.nagasushma@tcs.com<mailto:g.nagasushma@tcs.com>>; Meghana S <s.meghana10@tcs.com<mailto:s.meghana10@tcs.com>>; Chandu Vangala <v.chandu@tcs.com<mailto:v.chandu@tcs.com>> Subject: Re: Need support for starlingX 8 setup bring up. TCS Confidential "External email. Open with Caution" Prashanthi, here's an example of the final message of the script when the installation succeeds: [cid:image002.png@01D98838.F01144F0] When it fails, in the metrics, you will be able to see in which stage it stopped, which helps in narrowing down what might be the problem you're having. Regards, Bruno. ________________________________ From: Bruno Drugowick Muniz <Bruno.Muniz@encora.com<mailto:Bruno.Muniz@encora.com>> Sent: Friday, May 5, 2023 16:29 To: Prashanthi Moligi <prashanthi.moligi@tcs.com<mailto:prashanthi.moligi@tcs.com>>; StarlingX ML <starlingx-discuss@lists.starlingx.io<mailto:starlingx-discuss@lists.starlingx.io>> Cc: Nidhi Tomar <nidhi.tomar1@tcs.com<mailto:nidhi.tomar1@tcs.com>>; Naga Sushma Gandrothu <g.nagasushma@tcs.com<mailto:g.nagasushma@tcs.com>>; Meghana S <s.meghana10@tcs.com<mailto:s.meghana10@tcs.com>>; Chandu Vangala <v.chandu@tcs.com<mailto:v.chandu@tcs.com>> Subject: Re: [Starlingx-discuss] Need support for starlingX 8 setup bring up. Hello, Prashanthi.
Bruno, Python script was still on when VM is up and login was success, script is not exited
What was the last output from the script that you were able to see? Did you let the script run until the end or did you interrupt it? Logging in to the VM is not necessary before the script finishes and might even be a problem depending on what you do while the script is running. For future versions, we are planning to default to a headless installation where the VM never shows up to avoid confusing the user into thinking that the VM is ready to be used. And, of course, make this clear in the docs to-be-written about this installation method. Thanks for taking the time to try these WIP scripts, by the way. The feedback you're providing is already being considered in our future work. If you want more synchronous help, I'm usually available on the #starlingx IRC channel from around 12 to 9 PM UTC on weekdays. I'm brunomuniz there. Regards, Bruno. TCS Confidential TCS Confidential =====-----=====-----===== Notice: The information contained in this e-mail message and/or attachments to it may contain confidential or privileged information. If you are not the intended recipient, any dissemination, use, review, distribution, printing or copying of the information contained in this e-mail message and/or attachments to it are strictly prohibited. If you have received this communication in error, please notify us by reply e-mail or telephone and immediately and permanently delete the message and any attachments. Thank you TCS Confidential TCS Confidential
Thanks for the info, Prashanthi. I'll keep an eye on the mailing list for your emails. ? Regards, Bruno. ________________________________ From: Prashanthi Moligi <prashanthi.moligi@tcs.com> Sent: Tuesday, May 16, 2023 12:26 To: Bruno Drugowick Muniz <Bruno.Muniz@encora.com>; Chandu Vangala <v.chandu@tcs.com>; StarlingX ML <starlingx-discuss@lists.starlingx.io> Cc: Nidhi Tomar <nidhi.tomar1@tcs.com>; Naga Sushma Gandrothu <g.nagasushma@tcs.com>; Meghana S <s.meghana10@tcs.com> Subject: RE: Need support for starlingX 8 setup bring up. External Mail: Do not click links or open attachments unless you recognize the sender and know the content is safe. TCS Confidential Hi Bruno, No issues with your late reply and thanks for support. But currently team and I is busy with other activities, so we will work on this work around once we get some bandwidth and will reply. Thanks & Regards, Prashanthi.M From: Bruno Drugowick Muniz <Bruno.Muniz@encora.com> Sent: Tuesday, May 16, 2023 8:31 PM To: Chandu Vangala <v.chandu@tcs.com>; Prashanthi Moligi <prashanthi.moligi@tcs.com>; StarlingX ML <starlingx-discuss@lists.starlingx.io> Cc: Nidhi Tomar <nidhi.tomar1@tcs.com>; Naga Sushma Gandrothu <g.nagasushma@tcs.com>; Meghana S <s.meghana10@tcs.com> Subject: Re: Need support for starlingX 8 setup bring up. TCS Confidential "External email. Open with Caution" Chandu, I'm sorry! I completely missed this email. I was curious about your setup and came here to look for my last exchange with you and found this email that I didn't answer. I'm sorry for that. Thanks for the log screenshot. It clearly shows that the installation was not able to download the images that it needs from docker registries out there. This is a fairly common problem that we face, especially when we're on an office network where multiple people access the internet (and the Docker registries) with the same IP address. These registries might rate limit you<https://www.docker.com/increase-rate-limits/> and the Ansible task gets stuck like that. We have a Task to work on a guide for the community<https://storyboard.openstack.org/#!/story/2005051> on how to avoid these problems by creating your own local Docker registries or a pull-through registry that's shared in an office network. The task is currently not being worked on but will be very soon. Honestly, what I ended up doing was kicking off the installation late at night at the office network and coming back the next day. Also, using my home network I didn't have any problems with the rate limit since I'm the only one using the network for that. However, I did see the problem again when I tried to do multiple installations in a short period. Let me know if this helps and what's the state of things for you since the last time we talked. Regards, Bruno. ________________________________ From: Chandu Vangala <v.chandu@tcs.com<mailto:v.chandu@tcs.com>> Sent: Monday, May 8, 2023 06:51 To: Bruno Drugowick Muniz <Bruno.Muniz@encora.com<mailto:Bruno.Muniz@encora.com>>; Prashanthi Moligi <prashanthi.moligi@tcs.com<mailto:prashanthi.moligi@tcs.com>>; StarlingX ML <starlingx-discuss@lists.starlingx.io<mailto:starlingx-discuss@lists.starlingx.io>> Cc: Nidhi Tomar <nidhi.tomar1@tcs.com<mailto:nidhi.tomar1@tcs.com>>; Naga Sushma Gandrothu <g.nagasushma@tcs.com<mailto:g.nagasushma@tcs.com>>; Meghana S <s.meghana10@tcs.com<mailto:s.meghana10@tcs.com>> Subject: Re: Need support for starlingX 8 setup bring up. External Mail: Do not click links or open attachments unless you recognize the sender and know the content is safe. TCS Confidential Hi Bruno, As per your suggestions, we have waited till script complete. Observed installation failed with below errors. Attaching complete script output log file and error screenshot below. [cid:image001.png@01D98838.F01144F0] Thanks & Regards, Chandu.v ________________________________ From: Bruno Drugowick Muniz <Bruno.Muniz@encora.com<mailto:Bruno.Muniz@encora.com>> Sent: Saturday, May 6, 2023 1:24 AM To: Prashanthi Moligi <prashanthi.moligi@tcs.com<mailto:prashanthi.moligi@tcs.com>>; StarlingX ML <starlingx-discuss@lists.starlingx.io<mailto:starlingx-discuss@lists.starlingx.io>> Cc: Nidhi Tomar <nidhi.tomar1@tcs.com<mailto:nidhi.tomar1@tcs.com>>; Naga Sushma Gandrothu <g.nagasushma@tcs.com<mailto:g.nagasushma@tcs.com>>; Meghana S <s.meghana10@tcs.com<mailto:s.meghana10@tcs.com>>; Chandu Vangala <v.chandu@tcs.com<mailto:v.chandu@tcs.com>> Subject: Re: Need support for starlingX 8 setup bring up. TCS Confidential "External email. Open with Caution" Prashanthi, here's an example of the final message of the script when the installation succeeds: [cid:image002.png@01D98838.F01144F0] When it fails, in the metrics, you will be able to see in which stage it stopped, which helps in narrowing down what might be the problem you're having. Regards, Bruno. ________________________________ From: Bruno Drugowick Muniz <Bruno.Muniz@encora.com<mailto:Bruno.Muniz@encora.com>> Sent: Friday, May 5, 2023 16:29 To: Prashanthi Moligi <prashanthi.moligi@tcs.com<mailto:prashanthi.moligi@tcs.com>>; StarlingX ML <starlingx-discuss@lists.starlingx.io<mailto:starlingx-discuss@lists.starlingx.io>> Cc: Nidhi Tomar <nidhi.tomar1@tcs.com<mailto:nidhi.tomar1@tcs.com>>; Naga Sushma Gandrothu <g.nagasushma@tcs.com<mailto:g.nagasushma@tcs.com>>; Meghana S <s.meghana10@tcs.com<mailto:s.meghana10@tcs.com>>; Chandu Vangala <v.chandu@tcs.com<mailto:v.chandu@tcs.com>> Subject: Re: [Starlingx-discuss] Need support for starlingX 8 setup bring up. Hello, Prashanthi.
Bruno, Python script was still on when VM is up and login was success, script is not exited
What was the last output from the script that you were able to see? Did you let the script run until the end or did you interrupt it? Logging in to the VM is not necessary before the script finishes and might even be a problem depending on what you do while the script is running. For future versions, we are planning to default to a headless installation where the VM never shows up to avoid confusing the user into thinking that the VM is ready to be used. And, of course, make this clear in the docs to-be-written about this installation method. Thanks for taking the time to try these WIP scripts, by the way. The feedback you're providing is already being considered in our future work. If you want more synchronous help, I'm usually available on the #starlingx IRC channel from around 12 to 9 PM UTC on weekdays. I'm brunomuniz there. Regards, Bruno. TCS Confidential TCS Confidential =====-----=====-----===== Notice: The information contained in this e-mail message and/or attachments to it may contain confidential or privileged information. If you are not the intended recipient, any dissemination, use, review, distribution, printing or copying of the information contained in this e-mail message and/or attachments to it are strictly prohibited. If you have received this communication in error, please notify us by reply e-mail or telephone and immediately and permanently delete the message and any attachments. Thank you TCS Confidential TCS Confidential
participants (3)
-
Bruno Drugowick Muniz
-
Chandu Vangala
-
Prashanthi Moligi