Skip to content

Commit

Permalink
operator: add structured auth config as a revision configmap
Browse files Browse the repository at this point in the history
  • Loading branch information
liouk committed Nov 15, 2024
1 parent c2c5ef2 commit 099a2bd
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pkg/operator/starter.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ import (
"github.com/openshift/cluster-kube-apiserver-operator/pkg/operator/certrotationtimeupgradeablecontroller"
"github.com/openshift/cluster-kube-apiserver-operator/pkg/operator/configmetrics"
"github.com/openshift/cluster-kube-apiserver-operator/pkg/operator/configobservation/apienablement"
"github.com/openshift/cluster-kube-apiserver-operator/pkg/operator/configobservation/auth"
"github.com/openshift/cluster-kube-apiserver-operator/pkg/operator/configobservation/configobservercontroller"
"github.com/openshift/cluster-kube-apiserver-operator/pkg/operator/configobservation/node"
"github.com/openshift/cluster-kube-apiserver-operator/pkg/operator/connectivitycheckcontroller"
Expand Down Expand Up @@ -614,6 +615,9 @@ var RevisionConfigMaps = []revision.RevisionResource{
{Name: "sa-token-signing-certs"},

{Name: "kube-apiserver-audit-policies"},

// optional configmap containing the OIDC structured auth config
{Name: auth.AuthConfigCMName, Optional: true},
}

// RevisionSecrets is a list of secrets that are directly copied for the current values. A different actor/controller modifies these.
Expand Down

0 comments on commit 099a2bd

Please sign in to comment.