9.1 Viewing Existing OUD Instances

By default the oud-ds-rs helm chart deployment starts three pods: oud-ds-rs-0 and two replica pods, oud-ds-rs-1 and oud-ds-rs-2.

The number of pods started is determined by the replicaCount, which is set to 3 by default. A value of 3 starts the three pods above.

To scale up or down the number of OUD pods, set replicaCount accordingly.

Run the following command to view the number of pods in the OUD deployment:
kubectl --namespace <namespace> get pods -o wide
For example:
$ kubectl --namespace oudns get pods -o wide
The output will look similar to the following:
NAME              READY   STATUS    RESTARTS   AGE     IP           NODE            NOMINATED NODE   READINESS GATES
pod/oud-ds-rs-0   1/1     Running   0          22h   10.244.0.195   <Worker Node>   <none>           <none>
pod/oud-ds-rs-1   1/1     Running   0          22h   10.244.0.194   <Worker Node>   <none>           <none>
pod/oud-ds-rs-2   1/1     Running   0          22h   10.244.0.193   <Worker Node>   <none>           <none>