Change Parameters from the CR or Deployment
If you need to do some customization in the CR file or in the operator deployment check following sections.
Change parameters in the CR
The custom resource should be on the cluster under CRD digitalaideploys.xld.digital.ai
(or digitalaideployocps.xldocp.digital.ai
for OpenShift)
❯ kubectl get crd
NAME CREATED AT
...
digitalaideploys.xld.digital.ai 2022-06-20T12:35:09Z
...
❯ kubectl get digitalaideploys.xld.digital.ai -n custom-namespace-1
NAME AGE
dai-xld-custom-namespace-1 4h33m
You can change the CR dai-xld-custom-namespace-1
by editing the CR on the cluster, for example
❯ kubectl edit digitalaideploys.xld.digital.ai dai-xld-custom-namespace-1 -n custom-namespace-1
Or you can edit the file that was used during installation, for example digitalai-deploy/kubernetes/daideploy_cr.yaml
:
❯ kubectl apply -f digitalai-deploy/kubernetes/daideploy_cr.yaml -n custom-namespace-1
After changes are applied on the cluster, if the parameters are related to the deploy pods you need to restart deploy statefulset:
❯ kubectl rollout restart dai-xld-custom-namespace-1-digitalai-deploy -n custom-namespace-1
Change parameters in the operator deployment
The operator deployment should be on the cluster in the namespace with name xld-operator-controller-manager
:
❯ kubectl get deployment -n custom-namespace-1
NAME READY UP-TO-DATE AVAILABLE AGE
dai-xld-1234567890-nginx-ingress-controller 1/1 1 1 4h8m
dai-xld-1234567890-nginx-ingress-controller-default-backend 1/1 1 1 4h8m
xld-operator-controller-manager 1/1 1 1 3d5h
By changing that resource you can update:
- the version of the operator image (do this only in case that you know there are no major changes in the operator image, contact support)
- update operator resources under the path
spec.template.spec.containers[1].resources
You can change the deployment xld-operator-controller-manager
by editing the deployment on the cluster, for example
❯ kubectl edit deployment xld-operator-controller-manager -n custom-namespace-1
Or you can edit the file that was used during installation, for example digitalai-deploy/kubernetes/template/deployment.yaml
:
❯ kubectl apply -f digitalai-deploy/kubernetes/template/deployment.yaml -n custom-namespace-1
After changes are applied on the cluster there should be also visible.