Skip to content

Commit 14a17c7

Browse files
Merge pull request #1977 from vrutkovs/feature-short-cert-rotation
API-1689: features: add ShortCertRotation
2 parents b8da3bf + b8d74ab commit 14a17c7

8 files changed

+27
-0
lines changed

features.md

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
| NewOLMCatalogdAPIV1Metas| | | | <span style="background-color: #519450">Enabled</span> | | <span style="background-color: #519450">Enabled</span> |
1212
| SELinuxChangePolicy| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | | |
1313
| SELinuxMount| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | | |
14+
| ShortCertRotation| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | | |
1415
| SigstoreImageVerificationPKI| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | | |
1516
| NewOLM| | <span style="background-color: #519450">Enabled</span> | | <span style="background-color: #519450">Enabled</span> | | <span style="background-color: #519450">Enabled</span> |
1617
| AWSClusterHostedDNS| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> |

features/features.go

+8
Original file line numberDiff line numberDiff line change
@@ -809,4 +809,12 @@ var (
809809
enhancementPR("https://github.com/openshift/enhancements/pull/1756").
810810
enableIn(configv1.DevPreviewNoUpgrade, configv1.TechPreviewNoUpgrade).
811811
mustRegister()
812+
813+
FeatureShortCertRotation = newFeatureGate("ShortCertRotation").
814+
reportProblemsToJiraComponent("kube-apiserver").
815+
contactPerson("vrutkovs").
816+
productScope(ocpSpecific).
817+
enableIn(configv1.DevPreviewNoUpgrade).
818+
enhancementPR("https://github.com/openshift/enhancements/pull/1670").
819+
mustRegister()
812820
)

payload-manifests/featuregates/featureGate-Hypershift-Default.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,9 @@
169169
{
170170
"name": "ServiceAccountTokenNodeBinding"
171171
},
172+
{
173+
"name": "ShortCertRotation"
174+
},
172175
{
173176
"name": "SignatureStores"
174177
},

payload-manifests/featuregates/featureGate-Hypershift-DevPreviewNoUpgrade.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -254,6 +254,9 @@
254254
{
255255
"name": "SetEIPForNLBIngressController"
256256
},
257+
{
258+
"name": "ShortCertRotation"
259+
},
257260
{
258261
"name": "SignatureStores"
259262
},

payload-manifests/featuregates/featureGate-Hypershift-TechPreviewNoUpgrade.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,9 @@
5151
{
5252
"name": "SELinuxMount"
5353
},
54+
{
55+
"name": "ShortCertRotation"
56+
},
5457
{
5558
"name": "SigstoreImageVerificationPKI"
5659
}

payload-manifests/featuregates/featureGate-SelfManagedHA-Default.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,9 @@
169169
{
170170
"name": "ServiceAccountTokenNodeBinding"
171171
},
172+
{
173+
"name": "ShortCertRotation"
174+
},
172175
{
173176
"name": "SignatureStores"
174177
},

payload-manifests/featuregates/featureGate-SelfManagedHA-DevPreviewNoUpgrade.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -254,6 +254,9 @@
254254
{
255255
"name": "SetEIPForNLBIngressController"
256256
},
257+
{
258+
"name": "ShortCertRotation"
259+
},
257260
{
258261
"name": "SignatureStores"
259262
},

payload-manifests/featuregates/featureGate-SelfManagedHA-TechPreviewNoUpgrade.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@
4545
{
4646
"name": "SELinuxMount"
4747
},
48+
{
49+
"name": "ShortCertRotation"
50+
},
4851
{
4952
"name": "SigstoreImageVerificationPKI"
5053
}

0 commit comments

Comments
 (0)