Install and enable the cert-manager Operator using RPM
The microshift-cert-manager RPM is an optional component that can be installed at any time. Follow these steps to install and verify the certificate manager:
-
Install the
cert-manager-operatorusing themicroshift-cert-managerRPM by running the following command:$ sudo dnf install microshift-cert-manager -
Verify the certificate manager versions that are used by running the following command:
$ rpm -qi microshift-cert-manager -
Restart MicroShift by running the following command:
$ systemctl microshift restart -
Verify that the
microshift-cert-managerRPM is installed by running the following command:$ oc get deployment -n cert-manager-operatorExample outputNAME READY UP-TO-DATE AVAILABLE AGE cert-manager-operator-controller-manager 1/1 1 1 2d22h -
Verify that the`cert-manager` deployments are in a ready state and are up-to-date in the cert-manager namespace by running the following command:
$ oc get deployment -n cert-managerExample outputNAME READY UP-TO-DATE AVAILABLE AGE cert-manager 1/1 1 1 2d22h cert-manager-cainjector 1/1 1 1 2d22h cert-manager-webhook 1/1 1 1 2d22h -
Verify that the pods are running in the
cert-managernamespace by running the following command:$ oc get pods -n cert-managerExample outputNAME READY STATUS RESTARTS AGE cert-manager-7cfb4fbb84-qdmk8 1/1 Running 2 2d22h cert-manager-cainjector-854f669657-xzs8b 1/1 Running 2 2d22h cert-manager-webhook-68fd6d5f5c-j942h 1/1 Running 2 2d22h