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.
1 parent 65b8889 commit 28ffc85Copy full SHA for 28ffc85
main.go
@@ -48,6 +48,8 @@ import (
48
"sigs.k8s.io/controller-runtime/pkg/log/zap"
49
"sigs.k8s.io/yaml"
50
51
+ configv1 "github.com/openshift/api/config/v1"
52
+
53
"github.com/project-codeflare/codeflare-operator/pkg/config"
54
// Import all Kubernetes client auth plugins (e.g. Azure, GCP, OIDC, etc.)
55
// to ensure that exec-entrypoint and run can make use of them.
@@ -63,6 +65,7 @@ func init() {
63
65
utilruntime.Must(clientgoscheme.AddToScheme(scheme))
64
66
utilruntime.Must(mcadv1beta1.AddToScheme(scheme))
67
utilruntime.Must(quotasubtreev1.AddToScheme(scheme))
68
+ utilruntime.Must(configv1.Install(scheme))
69
}
70
71
func main() {
0 commit comments