Skip to content

WIP Change certificate rotation times #291

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ var certGenerator certs.CertGenerator = certs.CertGeneratorFunc(certs.CreateSign

const (
// DefaultCertMinFresh is the default min-fresh value - 1 day
DefaultCertMinFresh = time.Hour * 24
DefaultCertMinFresh = time.Minute * 2
// DefaultCertValidFor is the default duration a cert can be valid for - 2 years
DefaultCertValidFor = time.Hour * 24 * 730
DefaultCertValidFor = time.Minute * 5
// OLMCAPEMKey is the CAPEM
OLMCAPEMKey = "olmCAKey"
// OLMCAHashAnnotationKey is the label key used to store the hash of the CA cert
Expand Down