@@ -10,6 +10,8 @@ import (
10
10
"strings"
11
11
"time"
12
12
13
+ promtime "github.com/prometheus/common/model"
14
+
13
15
"github.com/openshift/origin/pkg/cmd/update-tls-artifacts/generate-owners/tlsmetadatadefaults"
14
16
"github.com/openshift/origin/pkg/cmd/update-tls-artifacts/generate-owners/tlsmetadatainterfaces"
15
17
"github.com/openshift/origin/pkg/monitortests/network/disruptionpodnetwork"
@@ -283,6 +285,37 @@ var _ = g.Describe(fmt.Sprintf("[sig-arch][Late][Jira:%q]", "kube-apiserver"), g
283
285
}
284
286
})
285
287
288
+ g .It ("[OCPFeatureGate:ShortCertRotation] all certificates should expire in no more than 8 hours" , func () {
289
+ var errs []error
290
+ for _ , certKeyPair := range actualPKIContent .CertKeyPairs .Items {
291
+ if certKeyPair .Spec .CertMetadata .ValidityDuration == "" {
292
+ // Skip certificates with no duration set (proxy ca, key without certificate etc.)
293
+ continue
294
+ }
295
+ if certKeyPair .Spec .CertMetadata .ValidityDuration == "10y" {
296
+ // Skip "forever" certificates
297
+ continue
298
+ }
299
+ if strings .Contains (certKeyPair .Name , "ingress" ) ||
300
+ strings .Contains (certKeyPair .Spec .CertMetadata .CertIdentifier .CommonName , "router" ) {
301
+ // Skip ingress and router certificates
302
+ continue
303
+ }
304
+ // Use ParseDuration from prometheus as it can handle days/month/years durations
305
+ duration , err := promtime .ParseDuration (certKeyPair .Spec .CertMetadata .ValidityDuration )
306
+ if err != nil {
307
+ errs = append (errs , fmt .Errorf ("failed to parse validity duration for certificate %q: %v" , certKeyPair .Name , err ))
308
+ continue
309
+ }
310
+ if time .Duration (duration ) > time .Hour * 8 {
311
+ errs = append (errs , fmt .Errorf ("certificate %q expires too soon: expected up to 8h, but was %s" , certKeyPair .Name , duration ))
312
+ }
313
+ }
314
+ if len (errs ) > 0 {
315
+ testresult .Flakef ("Errors found: %s" , utilerrors .NewAggregate (errs ).Error ())
316
+ }
317
+ })
318
+
286
319
})
287
320
288
321
func fetchOnDiskCertificates (ctx context.Context , kubeClient kubernetes.Interface , podRESTConfig * rest.Config , nodeList []* corev1.Node , testPullSpec string ) (* certgraphapi.PKIList , error ) {
0 commit comments