X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=docs%2Fric%2Finstallation-k8s1node.rst;h=19e26ccd4a4843bf0cc732d53755512767e1d853;hb=76240bd30385be23b36768229eed87489345dd28;hp=4827a4a5f41bc9d506befbf62a339c478da1320e;hpb=ff04eeabb5f77c060710a916270ed3eea064d1d1;p=it%2Fdep.git diff --git a/docs/ric/installation-k8s1node.rst b/docs/ric/installation-k8s1node.rst index 4827a4a5..19e26ccd 100644 --- a/docs/ric/installation-k8s1node.rst +++ b/docs/ric/installation-k8s1node.rst @@ -89,3 +89,20 @@ with the kubectl command the VM should display information similar to below: kube-system kube-proxy-867v5 1/1 Running 0 103m kube-system kube-scheduler-ljitest 1/1 Running 0 102m kube-system tiller-deploy-68bf6dff8f-6pwvc 1/1 Running 0 102m + +**Onetime setup for Influxdb** + +Once Kubernetes setup is done, we have to create PersistentVolume through the storage class for the influxdb database. +The following one time process should be followed before deploying the influxdb in ricplt namespace. + +:: + + # User has to check the following namespace exist or not using + % kubectl get ns ricinfra + + # If the namespace doesn’t exist, then create it using: + % kubectl create ns ricinfra + + % helm install stable/nfs-server-provisioner --namespace ricinfra --name nfs-release-1 + % kubectl patch storageclass nfs -p '{"metadata": {"annotations":{"storageclass.kubernetes.io/is-default-class":"true"}}}' + % sudo apt install nfs-common