kubernetes icon indicating copy to clipboard operation
kubernetes copied to clipboard

need clarification of minikube part

Open stevez opened this issue 2 years ago • 4 comments

  1. Before you deploy ReportPortal you should have installed all its requirements. Their versions are described in requirements.yaml You should also specify correct PostgreSQL and RabbitMQ addresses and ports in values.yaml question: what should I do?
  2. helm install ./ question: where to run the command? I found when I was in the 'reportportal' folder, I have to run helm dependency build . then helm install . --generate-name then I got following error: Error: INSTALLATION FAILED: failed pre-install: job failed: BackoffLimitExceeded

Please provide more detailed instruction and provide the solution for my issues

stevez avatar May 18 '22 16:05 stevez

I got the same issue, any update on this?

linl2 avatar Aug 08 '22 14:08 linl2

I too have same issue, @DzmitryHumianiuk can you please help us?

satishkovuru avatar Sep 12 '22 23:09 satishkovuru

My first recommendation will be:

  1. if you don't feel yourself confident enough in k8s and helm chart, please ask you system engineer/devops to do it.

DzmitryHumianiuk avatar Sep 13 '22 20:09 DzmitryHumianiuk

The document is not clear enough for newbie like me to start POC this tool So I'm here to share what's I have done so far. I still got some issue about pod readiness At least we have some clue to learn next.

I'm using MAC M1

# Start docker with Colima 
colima start --cpu 4 --memory 9 --disk 30

# Start minikube locally and open dashboard in default browser
minikube start --cpus 4 --memory 8g --disk-size 25g
minikube dashboard

# Install app via helm
helm install my-release --set uat.superadminInitPasswd.password="MyPassword" -f values.yaml .

aquadrehz avatar Nov 13 '23 03:11 aquadrehz