Posts

Showing posts from April, 2023

[Solved] Argocd invalid username and password

  After installing the Argocd in kubernetes facing issue during the login to Argocd UI in browser with error  invalid username or password Error:- Invalid username or password   Cause:- MosCt of the places you will find that the initial password for the Argocd is the container name with argocd-server or argocd-server.namespace but by entering both of them you would still go through the same issue and it wont login. Argocd set up a one time password and you wont be able to decode the password which is in secrets manager as that password even dont work. Check the solution below

[Solved] Error: SSL certificate problem: self signed certificate in certificate chain

  While creating a ubuntu machine in vagrant recently faced a issue where the image download failed with a SSL error as mentioned below Error:- $ vagrant up Bringing machine 'default' up with 'virtualbox' provider... ==> default: Box 'krec/ubuntu2004-x64' could not be found. Attempting to find and install... default: Box Provider: virtualbox default: Box Version: >= 0 The box 'krec/ubuntu2004-x64' could not be found or could not be accessed in the remote catalog. If this is a private box on HashiCorp's Vagrant Cloud, please verify you're logged in via `vagrant login`. Also, please double-check the name. The expanded URL and error message are shown below: URL: ["https://vagrantcloud.com/krec/ubuntu2004-x64"] Error: SSL certificate problem: self signed certificate in certificate chain   Cause:- If you're encountering a "self signed certificate in certificate chain" error when using Vagrant, it means that the S...