netarbiter
netarbiter copied to clipboard
Some prerequisite step missing for "./activate-namespace.sh default"
Some prerequisite step is missing in https://github.com/att/netarbiter/blob/master/sds/ceph-docker/examples/helm/README.md, as the command below results in this error.
./activate-namespace.sh default
- kube_namespace=default
- cat
- kubectl create --namespace default -f - ++ kubectl get secret pvc-ceph-conf-combined-storageclass --namespace=ceph -o json ++ jq -r '.data | .[]' Error from server (NotFound): secrets "pvc-ceph-conf-combined-storageclass" not found
Please check that you have a secret named "pvc-ceph-conf-combined-storageclass" by: kubectl get secret -n ceph
This secret is supposed to be created in your previous step as follows: ./helm-install-ceph.sh ceph 172.31.0.0/20 172.31.0.0/20
If the secret is missing, it means this previous step has an issue.
Hee Won