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 28ffc85 commit 99d2fc8Copy full SHA for 99d2fc8
main.go
@@ -49,6 +49,7 @@ import (
49
"sigs.k8s.io/yaml"
50
51
configv1 "github.com/openshift/api/config/v1"
52
+ machinev1beta1 "github.com/openshift/api/machine/v1beta1"
53
54
"github.com/project-codeflare/codeflare-operator/pkg/config"
55
// Import all Kubernetes client auth plugins (e.g. Azure, GCP, OIDC, etc.)
@@ -63,9 +64,12 @@ var (
63
64
65
func init() {
66
utilruntime.Must(clientgoscheme.AddToScheme(scheme))
67
+ // MCAD
68
utilruntime.Must(mcadv1beta1.AddToScheme(scheme))
69
utilruntime.Must(quotasubtreev1.AddToScheme(scheme))
70
+ // InstaScale
71
utilruntime.Must(configv1.Install(scheme))
72
+ utilruntime.Must(machinev1beta1.Install(scheme))
73
}
74
75
func main() {
0 commit comments