Adding Helm Repositories

Before installing Helm charts, you need to add the appropriate repositories:

# Add Bitnami repository (for Keycloak, PostgreSQL, etc.)
helm repo add bitnami https://charts.bitnami.com/bitnami

# Add ingress-nginx repository
helm repo add ingress-nginx https://kubernetes.github.io/ingress-nginx

# Update all repositories
helm repo update

Verify the repositories are added:

helm repo list