Extending chart certification period of OpenShift after its end of life

Posted on

We can check the certification period of each chart with the command below. For example of OCP4.10 many charts have expiration date till Jan 2025 which meets the OCP4.10 end of life timing.

Command :
oc get secrets -A -o go-template='{{range .items}}{{if eq .type "kubernetes.io/tls"}}{{.metadata.namespace}}{{" "}}{{.metadata.name}}{{" "}}{{index .data "tls.crt"}}{{"\n"}}{{end}}{{end}}' | while read namespace name cert; do echo -en "$namespace\t$name\t"; echo $cert | base64 -d | openssl x509 -noout -enddate; done | column -t

The question is if the OCP4.10 user can expect the extension of the certification automatically even after the end of life. and seeking the possibility to keep using the OCP after the EOSL.

Could you someone please advise on this ?

Responses