-
Notifications
You must be signed in to change notification settings - Fork 5
Kubernetes:Coniguration
Gil Vitzinger edited this page Sep 20, 2019
·
1 revision
- If you are using Kubernetes Dashboard make sure the selected namespace is
nvmesh-csi
in the side menu
- Edit Management Server Address
Go to Config Maps
> nvmesh-config
OR from the terminal run:
kubectl edit configmap -n nvmesh-csi nvmesh-csi-config
Edit management.servers
to your MANAGEMENT_SERVERS configuration
management.servers: server-1.domain.com
If you deployed NVMesh Management in a Container using Excelero/nvmesh-mgmt-docker use:
management.servers: "nvmesh-management-svc.nvmesh.svc.cluster.local:4001"
- Edit Username and Password to the Management Server
Go to
Secrets
>nvmesh-credentials
OR from the terminal run:
kubectl edit secret -n nvmesh-csi nvmesh-credentials
Edit username
and password
to your management server credentials configuration
- secret in Kubernetes must be in base64 format
- for example use:
echo -n '[email protected]' | base64
andecho -n 'admin' | base64
to get the username and passsword in base64 - for more info visit: Kubernetes Docs - Convert your secret data to a base-64 representation