Skip to content

Commit

Permalink
enable the SA token node thing
Browse files Browse the repository at this point in the history
  • Loading branch information
deads2k committed Mar 27, 2024
1 parent ef1813b commit f634fe2
Show file tree
Hide file tree
Showing 6 changed files with 60 additions and 0 deletions.
21 changes: 21 additions & 0 deletions config/v1/feature_gates.go
Expand Up @@ -171,6 +171,27 @@ func AllFeatureSets() map[ClusterProfileName]map[FeatureSet]*FeatureGateEnabledD
var (
allFeatureGates = map[ClusterProfileName]map[FeatureSet]*FeatureGateEnabledDisabled{}

FeatureGateServiceAccountTokenNodeBindingValidation = newFeatureGate("ServiceAccountTokenNodeBindingValidation").
reportProblemsToJiraComponent("apiserver-auth").
contactPerson("stlaz").
productScope(kubernetes).
enableIn(TechPreviewNoUpgrade).
mustRegister()

FeatureGateServiceAccountTokenNodeBinding = newFeatureGate("ServiceAccountTokenNodeBinding").
reportProblemsToJiraComponent("apiserver-auth").
contactPerson("stlaz").
productScope(kubernetes).
enableIn(TechPreviewNoUpgrade).
mustRegister()

FeatureGateServiceAccountTokenPodNodeInfo = newFeatureGate("ServiceAccountTokenPodNodeInfo").
reportProblemsToJiraComponent("apiserver-auth").
contactPerson("stlaz").
productScope(kubernetes).
enableIn(TechPreviewNoUpgrade).
mustRegister()

FeatureGateValidatingAdmissionPolicy = newFeatureGate("ValidatingAdmissionPolicy").
reportProblemsToJiraComponent("kube-apiserver").
contactPerson("benluddy").
Expand Down
3 changes: 3 additions & 0 deletions features.md
Expand Up @@ -30,6 +30,9 @@
| PinnedImages| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> |
| PlatformOperators| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> |
| RouteExternalCertificate| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> |
| ServiceAccountTokenNodeBinding| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> |
| ServiceAccountTokenNodeBindingValidation| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> |
| ServiceAccountTokenPodNodeInfo| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> |
| SignatureStores| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> |
| SigstoreImageVerification| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> |
| TranslateStreamCloseWebsocketRequests| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> |
Expand Down
Expand Up @@ -115,6 +115,15 @@
{
"name": "RouteExternalCertificate"
},
{
"name": "ServiceAccountTokenNodeBinding"
},
{
"name": "ServiceAccountTokenNodeBindingValidation"
},
{
"name": "ServiceAccountTokenPodNodeInfo"
},
{
"name": "SignatureStores"
},
Expand Down
Expand Up @@ -161,6 +161,15 @@
{
"name": "RouteExternalCertificate"
},
{
"name": "ServiceAccountTokenNodeBinding"
},
{
"name": "ServiceAccountTokenNodeBindingValidation"
},
{
"name": "ServiceAccountTokenPodNodeInfo"
},
{
"name": "SignatureStores"
},
Expand Down
Expand Up @@ -118,6 +118,15 @@
{
"name": "RouteExternalCertificate"
},
{
"name": "ServiceAccountTokenNodeBinding"
},
{
"name": "ServiceAccountTokenNodeBindingValidation"
},
{
"name": "ServiceAccountTokenPodNodeInfo"
},
{
"name": "SignatureStores"
},
Expand Down
Expand Up @@ -161,6 +161,15 @@
{
"name": "RouteExternalCertificate"
},
{
"name": "ServiceAccountTokenNodeBinding"
},
{
"name": "ServiceAccountTokenNodeBindingValidation"
},
{
"name": "ServiceAccountTokenPodNodeInfo"
},
{
"name": "SignatureStores"
},
Expand Down

0 comments on commit f634fe2

Please sign in to comment.