seriohub / velero-helm

Helm charts for velero-ui, velero-api, and velero-watchdog
14 stars 6 forks source link

Can't Login velero-UI / Unreachable Cluster and API #29

Closed ithesadson closed 3 months ago

ithesadson commented 3 months ago

I installed velero ui with helm chart (with nodeport). Then when I accessed the interface, problems appeared on the login screen. Velero works with a minio s3 installed locally. Does helm chart support it?

Installation information is given below. Feel free to write for additional information.

values-override.yaml:

global:
  veleroNamespace: velero
  kubernetesClusterDomain: cluster.local

apiConfig:
  #Minio s3
  awsAccessKeyId: "xxx"
  awsSecretAccessKey: "xxx"
  veleroCliVersion: v1.7.0
  defaultAdminUsername: admin
  defaultAdminPassword: admin

uiNp:
  enabled: true
  apiPort: "30001"
  uiPort: "30002"

uiIngress:
  enabled: false

UI with nodePort: Screenshot from 2024-06-24 14-57-55

UI Pods: image

Velero pod: ( I backed up with velero and then restored from the backup. So the valero pod is working and there is no problem on this side.) image

davideserio commented 3 months ago

Hi, Try uncommenting and setting uiNp.ip. Let me know if it solves the problem.

ithesadson commented 3 months ago

Hi, Try uncommenting and setting uiNp.ip. Let me know if it solves the problem.

Thanks for the quick response. Yes, that definitely solved my problem, I had overlooked that. Maybe it would be a good idea to add this extra information in the README file in the installation phase with helm.