Steps to deploy Cloud Scale in single node
To deploy the Cloud Scale Technology on a single node in the Kubernetes cluster, perform the following steps:
Deploy operators: To deploy operators, perform points mentioned in step 1.
Deploy fluentbit: To deploy fluentbit, perform points mentioned in step 2.
Deploy postgresql: To deploy postgresql, perform points mentioned in step 3.
Deploy environment: To perform settings in the environment, check for points mentioned in step 4.
Steps for deployment
- In the
operators-values.yaml file, do the following changes:Set 'replicas' to 1 in
msdp-operator.Set value to
examplepoolfor everynode_selector_valuein the nodeSelector section.Set value to
agentpoolfor everynode_selector_keyin the nodeSelector section.To deploy the operators, refer to the section See Deploying the operators.
- In the
fluentbit, do the following:Set value to
examplepoolfornode_selector_valuein the collectorNodeSelector section.To deploy fluentbit, refer to the section See Deploying fluentbit for logging.
- In the postgresql, do the following:
Set value to examplepool for value in the nodeSelector section.
To deploy PostgreSQL database, refer to the section See Deploying Postgres.
- Do the following in the environment to deploy the Cloud Scale Technology:
Set value to examplepool for every node_selector_value and labelValue in the nodeSelector section.
Set value to "agentpool" for every
node_selector_keyandlabelKeyin the nodeSelector section.Set 'replicas' to 1 for
mediaServersandmsdpScaleoutssection.Add the section in the
msdpScaleoutssection:
resources: requests: cpu: 6000m memory: 16384Mi limits: cpu: 9000m memory: 16384Mi# save environment chart values to a file helm show values environment-11.0.tgz > environment-values.yaml # edit chart values to fit your environment vi environment-values.yaml # generate environment.yaml helm template environment-11.0.tgz -f environment-values.yaml > environment.yaml # apply environment.yaml kubectl apply -n netbackup -f environment.yaml