Hi,
Are you able to log-in on WatsonX.data localhost portal?
URL:
Username: ibmlhadmin
Password: password
It seems that the Metadata Server (MDS) requires more than 500 GB of free space on your device for a successful installation.
However, WatsonX.Data should install without any issues.
You are using Windows (like me).Here some usefull commands:
List containers from Podman:
podman ps -a
Access container command line (the id comes from previous command)
podman exec -it 7f0f1e07f6c7 /bin/bash
Show Namespaces from Kubernetes:(need the previous command)
kubectl get namespaces
Set namespace default:
kubectl config set-context --current --namespace=wxd
List all pods from namespace from rKubernetes:
kubectl get pods -n wxd
Access Kubernetes pod using comand line:
kubectl exec --stdin --tty wxd-pg-postgres-0 -- /bin/bash