We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ff87de9 + 604719e commit 65fc794Copy full SHA for 65fc794
pkg/operator/certrotationcontroller/certrotationcontroller.go
@@ -122,6 +122,10 @@ func newCertRotationController(
122
rotationDay = day
123
klog.Warningf("!!! UNSUPPORTED VALUE SET !!!")
124
klog.Warningf("Certificate rotation base set to %q", rotationDay)
125
+ } else {
126
+ // for the development cycle, make the rotation 60 times faster (every twelve hours or so).
127
+ // This must be reverted before we ship
128
+ rotationDay = rotationDay / 60
129
}
130
131
certRotator := certrotation.NewCertRotationController(
0 commit comments