Activity log for bug #2053075

Date Who What changed Old value New value Message
2024-02-13 22:19:37 Ferran Diego Andilla bug added bug
2024-02-13 22:19:52 Ferran Diego Andilla description Objective If an admin tries to install NebulOuS core on a machine without necessary requirements the installation process fails and user can easily identify the source of the problem. Preconditions A machine that doesn’t comply with minimum requirements (hardware and/or user privileges) for NebulOuS core is available. Steps Step 1 Action User logs in to the machine and starts installation of NebulOuS core following the provided instructions. Expected results NebulOuS core installation fails. User can see relevant logs that helps identify the problem. Objective If an admin tries to install NebulOuS core on a machine without necessary requirements the installation process fails and user can easily identify the source of the problem. Preconditions A machine that doesn’t comply with minimum requirements (hardware and/or user privileges) for NebulOuS core is available. Steps Step 1 Action User logs in to the machine and starts installation of NebulOuS core following the provided instructions. Expected results NebulOuS core installation fails. User can see relevant logs that helps identify the problem.
2024-02-14 08:34:30 Joanna Chmielewska tags test-case-r.1.0
2024-05-21 07:43:46 Joanna Chmielewska nebulous: assignee Francisco Álvarez Terribas (franciscoat)
2024-05-21 14:48:01 Francisco Álvarez Terribas description Objective If an admin tries to install NebulOuS core on a machine without necessary requirements the installation process fails and user can easily identify the source of the problem. Preconditions A machine that doesn’t comply with minimum requirements (hardware and/or user privileges) for NebulOuS core is available. Steps Step 1 Action User logs in to the machine and starts installation of NebulOuS core following the provided instructions. Expected results NebulOuS core installation fails. User can see relevant logs that helps identify the problem. Objective If an admin tries to install NebulOuS core on a machine without necessary requirements the installation process fails and user can easily identify the source of the problem. Preconditions A machine that doesn’t comply with minimum requirements (hardware and/or user privileges) for NebulOuS core is available. Steps sudo apt update && sudo apt upgrade -y sudo apt install curl apt-transport-https -y curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl" chmod +x kubectl sudo mv kubectl /usr/local/bin/ sudo apt install docker.io -y sudo systemctl start docker sudo systemctl enable docker sudo usermod -aG docker $USER && newgrp docker curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64 sudo install minikube-linux-amd64 /usr/local/bin/minikube minikube start --memory=1.8g --driver=docker # download nebulous in host machine https://drive.google.com/file/d/1zTcFHzqHkflvebHE9es04wA4aL0H45pG/view?usp=drive_link # and run sftp nebulous put nebulous-flux-cd-main.zip # Back to the nebulous machine unzip nebulous-flux-cd-main.zip curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 chmod 700 get_helm.sh ./get_helm.sh curl -s https://fluxcd.io/install.sh | sudo bash . <(flux completion bash) flux install Modify every file in software/nebulous/helm-releases to include: spec: interval: 5m kubectl apply -k nebulous-flux-cd-main/software/nebulous/. kubectl get pods Action User logs in to the machine and starts installation of NebulOuS core following the provided instructions. Expected results NebulOuS core installation fails. User can see relevant logs that helps identify the problem. Results There are pods which are not able to start kubectl get pods NAME READY STATUS RESTARTS nebulous-gui-d6d87889d-rspxh 0/1 Init:0/1 0 nebulous-influxdb-58f49fd56b-6wbq2 0/1 CrashLoopBackOff 6 (8s ago) sal-5c9d5cdb67-29n5z 0/1 Init:0/1 0 sal-mariadb-7b86574964-glnwf 0/1 CrashLoopBackOff 5 (49s ago) It passes
2024-05-21 15:09:36 Francisco Álvarez Terribas nebulous: status New Confirmed