diff --git a/addon/addon.go b/addon/addon.go index bd6f7832..c00aff59 100644 --- a/addon/addon.go +++ b/addon/addon.go @@ -3,6 +3,7 @@ package addon import ( "context" "embed" + "fmt" "strings" "github.com/Masterminds/semver/v3" @@ -14,6 +15,7 @@ import ( "k8s.io/apimachinery/pkg/api/errors" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/runtime/schema" + "k8s.io/apimachinery/pkg/types" "k8s.io/client-go/kubernetes" "k8s.io/client-go/rest" "k8s.io/klog/v2" @@ -26,6 +28,7 @@ import ( clusterv1 "open-cluster-management.io/api/cluster/v1" appsubutils "open-cluster-management.io/multicloud-operators-subscription/pkg/utils" "sigs.k8s.io/controller-runtime/pkg/client" + "sigs.k8s.io/controller-runtime/pkg/manager" ) const ( @@ -36,6 +39,35 @@ const ( AgentImageEnv = "OPERAND_IMAGE_MULTICLUSTER_OPERATORS_SUBSCRIPTION" ) +const ( + // AnnotationKlusterletDeployMode is the annotation key of klusterlet deploy mode, it describes the + // klusterlet deploy mode when importing a managed cluster. + // If the value is "Hosted", the HostingClusterNameAnnotation annotation will be required, we use + // AnnotationKlusterletHostingClusterName to determine where to deploy the registration-agent and + // work-agent. + AnnotationKlusterletDeployMode string = "import.open-cluster-management.io/klusterlet-deploy-mode" + + // AnnotationKlusterletHostingClusterName is the annotation key of hosting cluster name for klusterlet, + // it is required in Hosted mode, and the hosting cluster MUST be one of the managed cluster of the hub. + // The value of the annotation should be the ManagedCluster name of the hosting cluster. + AnnotationKlusterletHostingClusterName string = "import.open-cluster-management.io/hosting-cluster-name" + + // DisableAutoImportAnnotation is an annotation of ManagedCluster. + // If present, the crds.yaml and import.yaml will not be applied on the managed cluster by the hub + // controller automatically. And the bootstrap-hub-kubeconfig secret will not be updated as well + // in the backup-restore case. + DisableAutoImportAnnotation string = "import.open-cluster-management.io/disable-auto-import" + + // AnnotationKlusterletConfig is an annotation of ManagedCluster, which references to the name of the + // KlusterletConfig adopted by this managed cluster. If it is missing on a ManagedCluster, no KlusterletConfig + // will be used for this managed cluster. + AnnotationKlusterletConfig string = "agent.open-cluster-management.io/klusterlet-config" + + // AnnotationEnableHostedModeAddons is the key of annotation which indicates if the add-ons will be enabled + // in hosted mode automatically for a managed cluster + AnnotationEnableHostedModeAddons = "addon.open-cluster-management.io/enable-hosted-mode-addons" +) + //nolint:all //go:embed manifests //go:embed manifests/chart @@ -194,7 +226,7 @@ func applyManifestFromFile(file, clusterName, addonName string, kubeClient *kube return nil } -func NewAddonManager(kubeConfig *rest.Config, agentImage string, agentInstallAllStrategy bool) (addonmanager.AddonManager, error) { +func NewAddonManager(mgr manager.Manager, kubeConfig *rest.Config, agentImage string) (addonmanager.AddonManager, error) { AppMgrImage = agentImage addonMgr, err := addonmanager.New(kubeConfig) @@ -234,15 +266,13 @@ func NewAddonManager(kubeConfig *rest.Config, agentImage string, agentInstallAll addonfactory.ToAddOnProxyConfigValues, ), ). + WithAgentInstallNamespace(AddonInstallNamespaceFunc( + utils.NewAddOnDeploymentConfigGetter(addonClient), mgr.GetClient())). WithAgentRegistrationOption(newRegistrationOption(kubeClient, AppMgrAddonName)). WithAgentDeployTriggerClusterFilter(func(old, new *clusterv1.ManagedCluster) bool { return !equality.Semantic.DeepEqual(old.Annotations, new.Annotations) }) - if agentInstallAllStrategy { - agentFactory.WithInstallStrategy(agent.InstallAllStrategy("open-cluster-management-agent-addon")) - } - agentAddon, err := agentFactory.BuildHelmAgentAddon() if err != nil { klog.Errorf("failed to build agent %v", err) @@ -322,3 +352,52 @@ func GetMchImage(kubeConfig *rest.Config) (string, error) { return image, nil } + +// AddonInstallNamespaceFunc reads addonDeploymentConfig to set install namespace for addons in default mode, +// and set install namespace to klusterlet-{cluster name} for addons in hosted mode. +func AddonInstallNamespaceFunc( + addonGetter utils.AddOnDeploymentConfigGetter, + clusterClient client.Client) func(addon *addonapiv1alpha1.ManagedClusterAddOn) (string, error) { + return func(addon *addonapiv1alpha1.ManagedClusterAddOn) (string, error) { + cluster := &clusterv1.ManagedCluster{} + err := clusterClient.Get(context.TODO(), types.NamespacedName{Name: addon.Namespace}, cluster) + + if err != nil { + return "", err + } + + mode, _ := HostedClusterInfo(addon, cluster) + if mode == "Hosted" { + return fmt.Sprintf("klusterlet-%s", addon.Namespace), nil + } + + addonNS, err := utils.AgentInstallNamespaceFromDeploymentConfigFunc(addonGetter)(addon) + + if addonNS == "" && err == nil { + addonNS = "open-cluster-management-agent-addon" + } + + return addonNS, err + } +} + +func HostedClusterInfo(_ *addonapiv1alpha1.ManagedClusterAddOn, cluster *clusterv1.ManagedCluster) (string, string) { + if len(cluster.Annotations) == 0 { + return "Default", "" + } + + if cluster.Annotations[AnnotationEnableHostedModeAddons] != "true" { + return "Default", "" + } + + if cluster.Annotations[AnnotationKlusterletDeployMode] != "Hosted" { + return "Default", "" + } + + hostingClusterName, ok := cluster.Annotations[AnnotationKlusterletHostingClusterName] + if !ok || len(hostingClusterName) == 0 { + return "Default", "" + } + + return "Hosted", hostingClusterName +} diff --git a/addon/addon_test.go b/addon/addon_test.go index bf7456c5..7842318f 100644 --- a/addon/addon_test.go +++ b/addon/addon_test.go @@ -1,6 +1,7 @@ package addon import ( + "context" "testing" appsv1 "k8s.io/api/apps/v1" @@ -9,8 +10,10 @@ import ( clientgoscheme "k8s.io/client-go/kubernetes/scheme" "open-cluster-management.io/addon-framework/pkg/addonfactory" "open-cluster-management.io/addon-framework/pkg/agent" + "open-cluster-management.io/addon-framework/pkg/utils" addonapiv1alpha1 "open-cluster-management.io/api/addon/v1alpha1" clusterv1 "open-cluster-management.io/api/cluster/v1" + "sigs.k8s.io/controller-runtime/pkg/client/fake" ) var ( @@ -128,3 +131,89 @@ func TestManifest(t *testing.T) { }) } } + +type testConfigGetter struct { + config *addonapiv1alpha1.AddOnDeploymentConfig +} + +func newTestConfigGetter(config *addonapiv1alpha1.AddOnDeploymentConfig) *testConfigGetter { + return &testConfigGetter{ + config: config, + } +} + +func (t *testConfigGetter) Get(_ context.Context, _ string, _ string) (*addonapiv1alpha1.AddOnDeploymentConfig, error) { + return t.config, nil +} + +func newAddonConfigWithNamespace(namespace string) *addonapiv1alpha1.AddOnDeploymentConfig { + return &addonapiv1alpha1.AddOnDeploymentConfig{ + ObjectMeta: metav1.ObjectMeta{ + Namespace: "test", + Name: "test", + }, + Spec: addonapiv1alpha1.AddOnDeploymentConfigSpec{ + AgentInstallNamespace: namespace, + }, + } +} + +func newAddonWithConfig(name, cluster, annotationValue string, config *addonapiv1alpha1.AddOnDeploymentConfig) *addonapiv1alpha1.ManagedClusterAddOn { + specHash, _ := utils.GetAddOnDeploymentConfigSpecHash(config) + addon := newAddon(name, cluster, "", annotationValue) + addon.Status = addonapiv1alpha1.ManagedClusterAddOnStatus{ + ConfigReferences: []addonapiv1alpha1.ConfigReference{ + { + ConfigGroupResource: addonapiv1alpha1.ConfigGroupResource{ + Group: utils.AddOnDeploymentConfigGVR.Group, + Resource: utils.AddOnDeploymentConfigGVR.Resource, + }, + DesiredConfig: &addonapiv1alpha1.ConfigSpecHash{ + SpecHash: specHash, + }, + }, + }, + } + + return addon +} + +func TestAddonInstallNamespaceFunc(t *testing.T) { + tests := []struct { + name string + addon *addonapiv1alpha1.ManagedClusterAddOn + cluster *clusterv1.ManagedCluster + config *addonapiv1alpha1.AddOnDeploymentConfig + expectedNamespace string + }{ + { + name: "default namespace", + addon: newAddon("test", "cluster1", "", ""), + cluster: newCluster("cluster1"), + expectedNamespace: "open-cluster-management-agent-addon", + }, + { + name: "customized namespace", + addon: newAddonWithConfig("test", "cluster1", "", newAddonConfigWithNamespace("ns1")), + cluster: newCluster("cluster1"), + config: newAddonConfigWithNamespace("ns1"), + expectedNamespace: "ns1", + }, + } + + scheme := runtime.NewScheme() + clusterv1.Install(scheme) + + for _, test := range tests { + t.Run(test.name, func(t *testing.T) { + client := fake.NewClientBuilder().WithScheme(scheme).WithObjects(test.cluster).Build() + getter := newTestConfigGetter(test.config) + nsFunc := AddonInstallNamespaceFunc(getter, client) + namespace, _ := nsFunc(test.addon) + + if namespace != test.expectedNamespace { + t.Errorf("namespace should be %s, but get %s", test.expectedNamespace, namespace) + } + }) + } +} diff --git a/cmd/manager/exec/manager.go b/cmd/manager/exec/manager.go index 2d84e772..fe508ee7 100644 --- a/cmd/manager/exec/manager.go +++ b/cmd/manager/exec/manager.go @@ -321,7 +321,7 @@ func RunManager() { klog.Infof("Agent image: %v", agentImage) - adddonmgr, err := agentaddon.NewAddonManager(cfg, agentImage, Options.AgentInstallAll) + adddonmgr, err := agentaddon.NewAddonManager(mgr, cfg, agentImage) if err != nil { klog.Error("Failed to setup addon manager, error:", err) os.Exit(1) diff --git a/cmd/manager/exec/options.go b/cmd/manager/exec/options.go index f6d1c69e..94347283 100644 --- a/cmd/manager/exec/options.go +++ b/cmd/manager/exec/options.go @@ -37,7 +37,6 @@ type SubscriptionCMDOptions struct { LeaderElectionRenewDeadline time.Duration LeaderElectionRetryPeriod time.Duration Debug bool - AgentInstallAll bool } var Options = SubscriptionCMDOptions{ @@ -168,11 +167,4 @@ func ProcessFlags() { Options.DisableTLS, "Disable TLS on WebHook event listener.", ) - - flag.BoolVar( - &Options.AgentInstallAll, - "agent-install-all", - false, - "Configure the install strategy of agent on managed clusters. "+ - "Enabling this will automatically install agent on all managed cluster.") } diff --git a/go.mod b/go.mod index 2e30b326..ef21c365 100644 --- a/go.mod +++ b/go.mod @@ -12,8 +12,8 @@ require ( github.com/go-logr/logr v1.4.1 github.com/google/go-github/v42 v42.0.0 github.com/johannesboyne/gofakes3 v0.0.0-20210819161434-5c8dfcfe5310 - github.com/onsi/ginkgo/v2 v2.14.0 - github.com/onsi/gomega v1.30.0 + github.com/onsi/ginkgo/v2 v2.15.0 + github.com/onsi/gomega v1.31.1 github.com/openshift/api v0.0.0-20231218131639-7a5aa77cc72d github.com/openshift/library-go v0.0.0-20240116081341-964bcb3f545c github.com/operator-framework/operator-lib v0.11.1-0.20230717184314-6efbe3a22f6f @@ -34,7 +34,7 @@ require ( k8s.io/client-go v0.29.4 k8s.io/klog v1.0.0 k8s.io/klog/v2 v2.120.1 - open-cluster-management.io/addon-framework v0.9.1 + open-cluster-management.io/addon-framework v0.9.2 open-cluster-management.io/api v0.13.0 open-cluster-management.io/multicloud-operators-channel v0.13.1-0.20240423040139-ad986cafc6e8 sigs.k8s.io/controller-runtime v0.17.3 @@ -117,7 +117,7 @@ require ( github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect github.com/google/uuid v1.6.0 // indirect github.com/gorilla/mux v1.8.0 // indirect - github.com/gorilla/websocket v1.5.0 // indirect + github.com/gorilla/websocket v1.5.1 // indirect github.com/gosuri/uitable v0.0.4 // indirect github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79 // indirect github.com/hashicorp/errwrap v1.1.0 // indirect @@ -196,8 +196,8 @@ require ( golang.org/x/tools v0.20.0 // indirect gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect gomodules.xyz/orderedmap v0.1.0 // indirect - google.golang.org/genproto/googleapis/rpc v0.0.0-20240108191215-35c7eff3a6b1 // indirect - google.golang.org/grpc v1.60.1 // indirect + google.golang.org/genproto/googleapis/rpc v0.0.0-20240123012728-ef4313101c80 // indirect + google.golang.org/grpc v1.62.1 // indirect google.golang.org/protobuf v1.33.0 // indirect gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect gopkg.in/inf.v0 v0.9.1 // indirect @@ -211,7 +211,7 @@ require ( k8s.io/kube-openapi v0.0.0-20240411171206-dc4e619f62f3 // indirect k8s.io/kubectl v0.29.0 // indirect k8s.io/utils v0.0.0-20240310230437-4693a0247e57 // indirect - open-cluster-management.io/sdk-go v0.13.0 // indirect + open-cluster-management.io/sdk-go v0.13.1-0.20240416030555-aa744f426379 // indirect oras.land/oras-go v1.2.4 // indirect sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect sigs.k8s.io/kube-storage-version-migrator v0.0.6-0.20230721195810-5c8923c5ff96 // indirect diff --git a/go.sum b/go.sum index ed67f792..14deeea7 100644 --- a/go.sum +++ b/go.sum @@ -265,8 +265,8 @@ github.com/gorilla/handlers v1.5.1/go.mod h1:t8XrUpc4KVXb7HGyJ4/cEnwQiaxrX/hz1Zv github.com/gorilla/mux v1.8.0 h1:i40aqfkR1h2SlN9hojwV5ZA91wcXFOvkdNIeFDP5koI= github.com/gorilla/mux v1.8.0/go.mod h1:DVbg23sWSpFRCP0SfiEN6jmj59UnW/n46BH5rLB71So= github.com/gorilla/websocket v1.4.2/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE= -github.com/gorilla/websocket v1.5.0 h1:PPwGk2jz7EePpoHN/+ClbZu8SPxiqlu12wZP/3sWmnc= -github.com/gorilla/websocket v1.5.0/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE= +github.com/gorilla/websocket v1.5.1 h1:gmztn0JnHVt9JZquRuzLw3g4wouNVzKL15iLr/zn/QY= +github.com/gorilla/websocket v1.5.1/go.mod h1:x3kM2JMyaluk02fnUJpQuwD2dCS5NDG2ZHL0uE0tcaY= github.com/gosuri/uitable v0.0.4 h1:IG2xLKRvErL3uhY6e1BylFzG+aJiwQviDDTfOKeKTpY= github.com/gosuri/uitable v0.0.4/go.mod h1:tKR86bXuXPZazfOTG1FIzvjIdXzd0mo4Vtn16vt0PJo= github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79 h1:+ngKgrYPPJrOjhax5N+uePQ0Fh1Z7PheYoUI/0nzkPA= @@ -396,10 +396,10 @@ github.com/nxadm/tail v1.4.8 h1:nPr65rt6Y5JFSKQO7qToXr7pePgD6Gwiw05lkbyAQTE= github.com/nxadm/tail v1.4.8/go.mod h1:+ncqLTQzXmGhMZNUePPaPqPvBxHAIsmXswZKocGu+AU= github.com/onsi/ginkgo v1.16.5 h1:8xi0RTUf59SOSfEtZMvwTvXYMzG4gV23XVHOZiXNtnE= github.com/onsi/ginkgo v1.16.5/go.mod h1:+E8gABHa3K6zRBolWtd+ROzc/U5bkGt0FwiG042wbpU= -github.com/onsi/ginkgo/v2 v2.14.0 h1:vSmGj2Z5YPb9JwCWT6z6ihcUvDhuXLc3sJiqd3jMKAY= -github.com/onsi/ginkgo/v2 v2.14.0/go.mod h1:JkUdW7JkN0V6rFvsHcJ478egV3XH9NxpD27Hal/PhZw= -github.com/onsi/gomega v1.30.0 h1:hvMK7xYz4D3HapigLTeGdId/NcfQx1VHMJc60ew99+8= -github.com/onsi/gomega v1.30.0/go.mod h1:9sxs+SwGrKI0+PWe4Fxa9tFQQBG5xSsSbMXOI8PPpoQ= +github.com/onsi/ginkgo/v2 v2.15.0 h1:79HwNRBAZHOEwrczrgSOPy+eFTTlIGELKy5as+ClttY= +github.com/onsi/ginkgo/v2 v2.15.0/go.mod h1:HlxMHtYF57y6Dpf+mc5529KKmSq9h2FpCF+/ZkwUxKM= +github.com/onsi/gomega v1.31.1 h1:KYppCUK+bUgAZwHOu7EXVBKyQA6ILvOESHkn/tgoqvo= +github.com/onsi/gomega v1.31.1/go.mod h1:y40C95dwAD1Nz36SsEnxvfFe8FFfNxzI5eJ0EYGyAy0= github.com/opencontainers/go-digest v1.0.0 h1:apOUWs51W5PlhuyGyz9FCeeBIOUDA/6nW8Oi/yOhh5U= github.com/opencontainers/go-digest v1.0.0/go.mod h1:0JzlMkj0TRzQZfJkVvzbP0HBR3IKzErnv2BNG4W4MAM= github.com/opencontainers/image-spec v1.1.0-rc5 h1:Ygwkfw9bpDvs+c9E34SdgGOj41dX/cbdlwvlWt0pnFI= @@ -660,13 +660,13 @@ google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7 google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEYHJ7i3ixzK3sjbqSGDJWnxyFXZblF3eUsNvo= -google.golang.org/genproto/googleapis/rpc v0.0.0-20240108191215-35c7eff3a6b1 h1:gphdwh0npgs8elJ4T6J+DQJHPVF7RsuJHCfwztUb4J4= -google.golang.org/genproto/googleapis/rpc v0.0.0-20240108191215-35c7eff3a6b1/go.mod h1:daQN87bsDqDoe316QbbvX60nMoJQa4r6Ds0ZuoAe5yA= +google.golang.org/genproto/googleapis/rpc v0.0.0-20240123012728-ef4313101c80 h1:AjyfHzEPEFp/NpvfN5g+KDla3EMojjhRVZc1i7cj+oM= +google.golang.org/genproto/googleapis/rpc v0.0.0-20240123012728-ef4313101c80/go.mod h1:PAREbraiVEVGVdTZsVWjSbbTtSyGbAgIIvni8a8CD5s= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= google.golang.org/grpc v1.27.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= -google.golang.org/grpc v1.60.1 h1:26+wFr+cNqSGFcOXcabYC0lUVJVRa2Sb2ortSK7VrEU= -google.golang.org/grpc v1.60.1/go.mod h1:OlCHIeLYqSSsLi6i49B5QGdzaMZK9+M7LXN2FKz4eGM= +google.golang.org/grpc v1.62.1 h1:B4n+nfKzOICUXMgyrNd19h/I9oH0L1pizfk1d4zSgTk= +google.golang.org/grpc v1.62.1/go.mod h1:IWTG0VlJLCh1SkC58F7np9ka9mx/WNkjl4PGJaiq+QE= google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8= google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0= google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM= @@ -739,14 +739,14 @@ k8s.io/kubectl v0.29.0 h1:Oqi48gXjikDhrBF67AYuZRTcJV4lg2l42GmvsP7FmYI= k8s.io/kubectl v0.29.0/go.mod h1:0jMjGWIcMIQzmUaMgAzhSELv5WtHo2a8pq67DtviAJs= k8s.io/utils v0.0.0-20240310230437-4693a0247e57 h1:gbqbevonBh57eILzModw6mrkbwM0gQBEuevE/AaBsHY= k8s.io/utils v0.0.0-20240310230437-4693a0247e57/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0= -open-cluster-management.io/addon-framework v0.9.1 h1:m6n/W29G/4KzMx+8mgC9P/ybuiyNHVy+O6AHEaWbfQg= -open-cluster-management.io/addon-framework v0.9.1/go.mod h1:OEIFCEXhZKO/Grv08CB0T+TGzS0bLshw4G9u7Vw8dw0= +open-cluster-management.io/addon-framework v0.9.2 h1:oQnk6Y6433Fvi/MC8sWoy68lHzkqPsFLj7IEx07kFfU= +open-cluster-management.io/addon-framework v0.9.2/go.mod h1:LDkGLGTQh+sthF1qWlv87iMeAuRPsNEMK31O14kMneA= open-cluster-management.io/api v0.13.0 h1:dlcJEZlNlE0DmSDctK2s7iWKg9l+Tgb0V78Z040nMuk= open-cluster-management.io/api v0.13.0/go.mod h1:CuCPEzXDvOyxBB0H1d1eSeajbHqaeGEKq9c63vQc63w= open-cluster-management.io/multicloud-operators-channel v0.13.1-0.20240423040139-ad986cafc6e8 h1:k4T+YMF29L8xiQ6vVvDSaTiCgmFRkoW8YwaLr4tFUWU= open-cluster-management.io/multicloud-operators-channel v0.13.1-0.20240423040139-ad986cafc6e8/go.mod h1:OgoSFC50ADV76QRBL6Tm0CGK9oZ2mTmR3nH9702djrw= -open-cluster-management.io/sdk-go v0.13.0 h1:ddMGsPUekQr9z03tVN6vF39Uf+WEKMtGU/xSd81HdoA= -open-cluster-management.io/sdk-go v0.13.0/go.mod h1:UnsjzYOrDTF9a8rHEXksoIAtAdO1o5CD5Jtaw6T5B9w= +open-cluster-management.io/sdk-go v0.13.1-0.20240416030555-aa744f426379 h1:8jXVHfgy+wgXq1mrWC1mTieoP77WsAAHNpzILMIzWB0= +open-cluster-management.io/sdk-go v0.13.1-0.20240416030555-aa744f426379/go.mod h1:w2OaxtCyegxeyFLU42UQ3oxUz01QdsBQkcHI17T/l48= oras.land/oras-go v1.2.4 h1:djpBY2/2Cs1PV87GSJlxv4voajVOMZxqqtq9AB8YNvY= oras.land/oras-go v1.2.4/go.mod h1:DYcGfb3YF1nKjcezfX2SNlDAeQFKSXmf+qrFmrh4324= sigs.k8s.io/controller-runtime v0.17.3 h1:65QmN7r3FWgTxDMz9fvGnO1kbf2nu+acg9p2R9oYYYk= diff --git a/pkg/addonmanager/addon.go b/pkg/addonmanager/addon.go deleted file mode 100644 index ff84b90a..00000000 --- a/pkg/addonmanager/addon.go +++ /dev/null @@ -1,181 +0,0 @@ -package addonmanager - -import ( - "context" - "fmt" - "strings" - - appsv1 "k8s.io/api/apps/v1" - certificatesv1 "k8s.io/api/certificates/v1" - rbacv1 "k8s.io/api/rbac/v1" - apiextv1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1" - apiequality "k8s.io/apimachinery/pkg/api/equality" - "k8s.io/apimachinery/pkg/api/errors" - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - "k8s.io/apimachinery/pkg/runtime" - "k8s.io/apimachinery/pkg/runtime/serializer" - "k8s.io/client-go/kubernetes" - "k8s.io/client-go/kubernetes/scheme" - "open-cluster-management.io/addon-framework/pkg/agent" - addonapiv1alpha1 "open-cluster-management.io/api/addon/v1alpha1" - clusterv1 "open-cluster-management.io/api/cluster/v1" - "open-cluster-management.io/multicloud-operators-subscription/pkg/addonmanager/bindata" -) - -const ( - roleName = "application-manager-agent" - addonDefaultInstallNamespace = "open-cluster-management-agent-addon" -) - -var ( - genericScheme = runtime.NewScheme() - genericCodecs = serializer.NewCodecFactory(genericScheme) - genericCodec = genericCodecs.UniversalDeserializer() - agentStaticFiles = []string{ - "deploy/managed-common/apps.open-cluster-management.io_helmreleases_crd.yaml", - "deploy/managed-common/apps.open-cluster-management.io_subscriptions_crd_v1.yaml", - "deploy/managed-common/apps.open-cluster-management.io_placementrules_crd.yaml", - "deploy/managed-common/apps.open-cluster-management.io_subscriptionstatuses_crd_v1alpha1.yaml", - "deploy/managed-common/clusterrole_binding.yaml", - "deploy/managed-common/clusterrole.yaml", - "deploy/managed-common/clusterrole2.yaml", - "deploy/managed-common/service_account.yaml", - "deploy/managed-common/service.yaml", - "deploy/managed/metrics_service.yaml", - } - - agentDeploymentFile = "deploy/managed/operator.yaml" -) - -func init() { - _ = scheme.AddToScheme(genericScheme) - _ = apiextv1.AddToScheme(genericScheme) -} - -type subscriptionAgent struct { - agentImage string - kubeClient kubernetes.Interface - agentInstallStrategy *agent.InstallStrategy -} - -func NewAgent(agentImage string, kubeClient kubernetes.Interface, agentInstallAllStrategy bool) agent.AgentAddon { - var agentInstallStrategy *agent.InstallStrategy - - if agentInstallAllStrategy { - agentInstallStrategy = agent.InstallAllStrategy(addonDefaultInstallNamespace) - } - - return &subscriptionAgent{ - agentImage: agentImage, - kubeClient: kubeClient, - agentInstallStrategy: agentInstallStrategy, - } -} - -func (s *subscriptionAgent) Manifests(cluster *clusterv1.ManagedCluster, addon *addonapiv1alpha1.ManagedClusterAddOn) ([]runtime.Object, error) { - objects := []runtime.Object{} - - installNamespace := addon.Spec.InstallNamespace - if len(installNamespace) == 0 { - installNamespace = "open-cluster-management-agent-addon" - } - - for _, file := range agentStaticFiles { - raw := bindata.MustAsset(file) - obj, _, err := genericCodec.Decode(raw, nil, nil) - - if err != nil { - return objects, fmt.Errorf( - "error while decoding YAML file %s. Err was: %w", file, err) - } - - objects = append(objects, obj) - } - - // render deployment files - deployementRaw := bindata.MustAsset(agentDeploymentFile) - obj, _, err := genericCodec.Decode(deployementRaw, nil, nil) - - if err != nil { - return objects, fmt.Errorf( - "error while decoding YAML object file %s. Err was: %w", agentDeploymentFile, err) - } - - deployment := obj.(*appsv1.Deployment) - - // Update image - deployment.Spec.Template.Spec.Containers[0].Image = s.agentImage - - // Update cluster name - for i := range deployment.Spec.Template.Spec.Containers[0].Command { - if strings.HasPrefix(deployment.Spec.Template.Spec.Containers[0].Command[i], "--cluster-name") { - deployment.Spec.Template.Spec.Containers[0].Command[i] = fmt.Sprintf("--cluster-name=%s", cluster.Name) - } - } - - objects = append(objects, deployment) - - return objects, nil -} - -func (s *subscriptionAgent) GetAgentAddonOptions() agent.AgentAddonOptions { - return agent.AgentAddonOptions{ - AddonName: "application-manager", - InstallStrategy: s.agentInstallStrategy, - Registration: &agent.RegistrationOption{ - CSRConfigurations: agent.KubeClientSignerConfigurations("application-manager", "appmgr"), - CSRApproveCheck: func( - cluster *clusterv1.ManagedCluster, addon *addonapiv1alpha1.ManagedClusterAddOn, csr *certificatesv1.CertificateSigningRequest) bool { - return true - }, - PermissionConfig: s.permissionFunc, - }, - } -} - -func (s *subscriptionAgent) permissionFunc(cluster *clusterv1.ManagedCluster, addon *addonapiv1alpha1.ManagedClusterAddOn) error { - groups := agent.DefaultGroups(cluster.Name, addon.Name) - return s.ensureRoleBinding(groups[0], cluster.Name) -} - -func (s *subscriptionAgent) ensureRoleBinding(group, cluster string) error { - roleBinding := &rbacv1.RoleBinding{ - ObjectMeta: metav1.ObjectMeta{ - Name: roleName, - Namespace: cluster, - }, - Subjects: []rbacv1.Subject{ - { - Kind: "Group", - Name: group, - }, - }, - RoleRef: rbacv1.RoleRef{ - Kind: "ClusterRole", - Name: roleName, - APIGroup: "rbac.authorization.k8s.io", - }, - } - - existingBinding, err := s.kubeClient.RbacV1().RoleBindings(cluster).Get( - context.Background(), roleName, metav1.GetOptions{}) - - switch { - case errors.IsNotFound(err): - _, err := s.kubeClient.RbacV1().RoleBindings(cluster).Create( - context.Background(), roleBinding, metav1.CreateOptions{}) - return err - case err != nil: - return err - } - - if apiequality.Semantic.DeepEqual(existingBinding.Subjects, roleBinding.Subjects) && - apiequality.Semantic.DeepEqual(existingBinding.RoleRef, roleBinding.RoleRef) { - return nil - } - - _, err = s.kubeClient.RbacV1().RoleBindings(cluster).Update( - context.Background(), roleBinding, metav1.UpdateOptions{}) - - return err -} diff --git a/pkg/addonmanager/addon_test.go b/pkg/addonmanager/addon_test.go deleted file mode 100644 index f49ee016..00000000 --- a/pkg/addonmanager/addon_test.go +++ /dev/null @@ -1,104 +0,0 @@ -package addonmanager - -import ( - "strings" - "testing" - - appsv1 "k8s.io/api/apps/v1" - rbacv1 "k8s.io/api/rbac/v1" - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - fakekube "k8s.io/client-go/kubernetes/fake" - clienttesting "k8s.io/client-go/testing" - addonapiv1alpha1 "open-cluster-management.io/api/addon/v1alpha1" - clusterv1 "open-cluster-management.io/api/cluster/v1" -) - -func newAddon(name, namespace string) *addonapiv1alpha1.ManagedClusterAddOn { - return &addonapiv1alpha1.ManagedClusterAddOn{ - ObjectMeta: metav1.ObjectMeta{ - Name: name, - Namespace: namespace, - }, - } -} - -func newManagedCluster(name string) *clusterv1.ManagedCluster { - return &clusterv1.ManagedCluster{ - ObjectMeta: metav1.ObjectMeta{ - Name: name, - }, - } -} - -func TestManifests(t *testing.T) { - cluster := newManagedCluster("cluster1") - - addon := newAddon("application-manaager", "cluster1") - - fakeKubeClient := fakekube.NewSimpleClientset() - - agent := NewAgent("test", fakeKubeClient, false) - - objects, err := agent.Manifests(cluster, addon) - - if err != nil { - t.Errorf("Expect no error but got %v", err) - } - - if len(objects) != 11 { - t.Errorf("Expect 11 objects bug got %d", len(objects)) - } - - for _, obj := range objects { - switch o := obj.(type) { - case *appsv1.Deployment: - validateDeployment(t, o) - } - } -} - -func validateDeployment(t *testing.T, dep *appsv1.Deployment) { - if dep.Spec.Template.Spec.Containers[0].Image != "test" { - t.Errorf("Expect image name to be test but got %s", dep.Spec.Template.Spec.Containers[0].Image) - } - - for _, c := range dep.Spec.Template.Spec.Containers[0].Command { - if !strings.HasPrefix(c, "--cluster-name") { - continue - } - - if c != "--cluster-name=cluster1" { - t.Errorf("Unexpected command for cluster name: %s", c) - } - } -} - -func TestPermissionFunc(t *testing.T) { - cluster := newManagedCluster("cluster1") - - addon := newAddon("application-manaager", "cluster1") - - fakeKubeClient := fakekube.NewSimpleClientset() - - agent := NewAgent("test", fakeKubeClient, false) - - err := agent.GetAgentAddonOptions().Registration.PermissionConfig(cluster, addon) - - if err != nil { - t.Errorf("Expect no error but got %v", err) - } - - actions := fakeKubeClient.Actions() - - if len(actions) != 2 { - t.Errorf("Expect 2 actions, but got %v", actions) - } - - createAction := actions[1].(clienttesting.CreateActionImpl) - - binding := createAction.Object.(*rbacv1.RoleBinding) - - if binding.RoleRef.Name != roleName { - t.Errorf("Expect roleref to be %s, but got %s", roleName, binding.RoleRef.Name) - } -} diff --git a/pkg/addonmanager/bindata/bindata.go b/pkg/addonmanager/bindata/bindata.go deleted file mode 100644 index 8c7a1f01..00000000 --- a/pkg/addonmanager/bindata/bindata.go +++ /dev/null @@ -1,502 +0,0 @@ -// Code generated for package bindata by go-bindata DO NOT EDIT. (@generated) -// sources: -// deploy/managed-common/apps.open-cluster-management.io_helmreleases_crd.yaml -// deploy/managed-common/apps.open-cluster-management.io_placementrules_crd.yaml -// deploy/managed-common/apps.open-cluster-management.io_subscriptionreports_crd_v1alpha1.yaml -// deploy/managed-common/apps.open-cluster-management.io_subscriptions_crd_v1.yaml -// deploy/managed-common/apps.open-cluster-management.io_subscriptionstatuses_crd_v1alpha1.yaml -// deploy/managed-common/clusterrole.yaml -// deploy/managed-common/clusterrole2.yaml -// deploy/managed-common/clusterrole_binding.yaml -// deploy/managed-common/service.yaml -// deploy/managed-common/service_account.yaml -// deploy/managed/metrics_service.yaml -// deploy/managed/operator.yaml -package bindata - -import ( - "bytes" - "compress/gzip" - "fmt" - "io" - "os" - "path/filepath" - "strings" - "time" -) - -func bindataRead(data []byte, name string) ([]byte, error) { - gz, err := gzip.NewReader(bytes.NewBuffer(data)) - if err != nil { - return nil, fmt.Errorf("Read %q: %v", name, err) - } - - var buf bytes.Buffer - _, err = io.Copy(&buf, gz) //#nosec - clErr := gz.Close() - - if err != nil { - return nil, fmt.Errorf("Read %q: %v", name, err) - } - if clErr != nil { - return nil, err - } - - return buf.Bytes(), nil -} - -type asset struct { - bytes []byte - info os.FileInfo -} - -type bindataFileInfo struct { - name string - size int64 - mode os.FileMode - modTime time.Time -} - -// Name return file name -func (fi bindataFileInfo) Name() string { - return fi.name -} - -// Size return file size -func (fi bindataFileInfo) Size() int64 { - return fi.size -} - -// Mode return file mode -func (fi bindataFileInfo) Mode() os.FileMode { - return fi.mode -} - -// Mode return file modify time -func (fi bindataFileInfo) ModTime() time.Time { - return fi.modTime -} - -// IsDir return file whether a directory -func (fi bindataFileInfo) IsDir() bool { - return fi.mode&os.ModeDir != 0 -} - -// Sys return file is sys mode -func (fi bindataFileInfo) Sys() interface{} { - return nil -} - -var _deployManagedCommonAppsOpenClusterManagementIo_helmreleases_crdYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x5c\xdd\x6f\xdb\x46\x12\x7f\xf7\x5f\x31\x70\x1f\x7c\x05\x42\x09\xc9\xbd\x14\x7a\x33\xec\xb4\xd5\x5d\xea\x04\x96\x2f\xf7\x10\x04\xc5\x8a\x3b\x24\xf7\x44\xee\xb2\xfb\x21\x45\x57\xf4\x7f\x3f\xcc\x2e\x29\x4b\x22\x29\xd2\x46\x94\x26\x57\xee\x8b\x2d\x72\x3f\xe6\x7b\x7e\x9c\x11\xc5\x4a\xf1\x1e\xb5\x11\x4a\xce\x80\x95\x02\x3f\x59\x94\xf4\xc9\x4c\x56\x3f\x98\x89\x50\xd3\xf5\xcb\x8b\x95\x90\x7c\x06\x37\xce\x58\x55\xdc\xa3\x51\x4e\xc7\x78\x8b\x89\x90\xc2\x0a\x25\x2f\x0a\xb4\x8c\x33\xcb\x66\x17\x00\x92\x15\x38\x83\x0c\xf3\x42\x63\x8e\xcc\xa0\x99\xb0\xb2\x34\x13\x55\xa2\x8c\xe2\xdc\x19\x8b\x3a\x2a\x98\x64\x29\x16\x28\xed\x44\xa8\x0b\x53\x62\x4c\x4b\x53\xad\x5c\x49\x44\x9c\x9e\x1e\xce\x30\xb4\x02\x20\x50\xf6\x33\xe6\xc5\x7d\x38\xce\x5f\xcd\x85\xb1\xff\x3c\xbe\xf3\x46\x18\xeb\xef\x96\xb9\xd3\x2c\x3f\x24\xd2\xdf\x30\x42\xa6\x2e\x67\xfa\xe0\xd6\x05\x80\x89\x55\x89\x33\xb8\xa3\x63\x4b\x16\x23\xbf\x00\x58\x07\x99\x79\x32\xa2\x8a\xeb\xf5\xcb\xb0\x4d\x9c\x61\xc1\x02\x7d\x00\xc4\xc9\xf5\xbb\xf9\xfb\xbf\x2f\x0e\x2e\x03\x70\x34\xb1\x16\xa5\xf5\x92\xdf\xa3\x13\x84\x01\x9b\x21\x84\xf9\x90\x28\xed\x3f\x1a\xb7\xdc\xcd\xaf\xa9\x86\xeb\x77\xf3\xdd\x7e\xa5\x56\x25\x6a\x2b\x6a\xd1\x84\xb1\xa7\xde\xbd\xab\x47\xa7\x5f\x11\x81\x61\x16\x70\xd2\x2b\x06\x12\x2a\x26\x91\x57\x3c\x81\x4a\xc0\x66\xc2\x80\xc6\x52\xa3\x41\x69\x99\x37\x00\x38\x18\x2a\x01\x26\x41\x2d\xff\x83\xb1\x9d\xc0\x02\x35\x6d\x03\x26\x53\x2e\xe7\x10\x2b\xb9\x46\x6d\x41\x63\xac\x52\x29\xfe\xbb\xdb\xdb\x80\x55\xfe\xd0\x9c\x59\xac\x34\xf5\x38\x84\xb4\xa8\x25\xcb\x61\xcd\x72\x87\x2f\x80\x49\x0e\x05\xdb\x82\x46\x3a\x05\x9c\xdc\xdb\xcf\x4f\x31\x13\xf8\x45\x69\x04\x21\x13\x35\x83\xcc\xda\xd2\xcc\xa6\xd3\x54\xd8\xda\xac\x63\x55\x14\x4e\x0a\xbb\x9d\xc6\x4a\x5a\x2d\x96\xce\x2a\x6d\xa6\x1c\xd7\x98\x4f\x8d\x48\x23\xa6\xe3\x4c\x58\x8c\xad\xd3\x38\x65\xa5\x88\x3c\xe9\xd2\x7a\xdf\x28\xf8\x77\xba\x72\x04\x73\x75\x40\xab\xdd\x92\xad\x18\xab\x85\x4c\xf7\x6e\x78\x43\x3d\xa1\x01\x32\x57\xd2\x3c\xab\x96\x06\x2e\x1e\x05\x4d\x97\x48\x3a\xf7\xaf\x17\x0f\x50\x1f\xed\x95\x71\x2c\x7d\x2f\xf7\xc7\x85\xe6\x51\x05\x24\x30\x21\x13\xd4\x41\x89\x89\x56\x85\xdf\x13\x25\x2f\x95\x90\xd6\x7f\x88\x73\x81\xf2\x58\xfc\xc6\x2d\x0b\x61\x49\xef\xbf\x39\x34\x96\x74\x35\x81\x1b\x26\xa5\xb2\xb0\x44\x70\x25\x67\x16\xf9\x04\xe6\x12\x6e\x58\x81\xf9\x0d\x33\x78\x76\x05\x90\xa4\x4d\x44\x82\x1d\xa6\x82\xfd\x30\x75\x3c\x39\x48\x6d\xef\x86\xc6\x52\x9d\xd0\xd7\x9e\xbf\xde\x63\xa9\x0e\xbc\x86\x96\x1a\x61\x95\xde\x92\x2b\x1c\xc7\xa6\x7a\xb4\xbb\x2b\x8d\x38\x63\xda\x52\xb0\x39\xbe\x71\x44\xc3\x4d\x3d\xaf\x8e\x18\x14\x85\x82\x8b\x62\xd8\x04\x36\xc2\x66\x42\xee\xa8\x6a\xec\xd7\x21\x29\x4f\x85\x92\x89\x48\x7f\x61\xe5\x3d\x26\x7d\x84\xf8\xa9\x4e\xfb\x60\x00\x25\xd3\xac\x40\x4b\x06\x67\x15\xb0\x38\x46\x13\xc8\xa3\xa0\x1a\xe9\x47\x69\xf1\xc6\xae\xe4\xe7\x7e\xea\x0d\xb3\x2c\x57\xe9\xc2\x5b\x79\x63\x5a\xb7\xe8\xe0\x44\xc4\x6b\x25\xfd\xfa\xdd\xbc\x8e\x72\xb5\xe4\x34\x26\xa8\x29\xd7\xb4\xae\x3e\x21\x31\x1a\x89\xc0\x9c\xbf\x63\x36\x1b\x70\xf6\xd5\x3c\x09\x87\x79\x7f\x27\x59\x41\x29\x30\xc6\x83\x00\x0a\x42\x1a\x8b\x8c\x83\x4a\x5a\x77\x04\x9a\x4a\x4e\xa1\xb1\x5a\xf1\x22\x78\x77\x15\x46\x1e\xc3\xae\x65\x42\x02\xa3\xb8\x22\x38\xfc\x63\xf1\xf6\x6e\xfa\x53\xd3\x20\xf6\xb8\xa8\x55\x67\x2c\xb3\x3e\xf9\xbe\x00\xe3\xe2\x0c\x98\x21\x36\x84\x46\xbe\xa0\x3b\x93\x82\x49\x91\xa0\xb1\x93\xea\x0c\xd4\xe6\xc3\xab\x8f\xed\xd2\x03\xf8\x51\x69\xc0\x4f\xac\x28\x73\x7c\x01\x22\x48\x7c\x17\xb2\xbc\xe0\xe3\x60\xcf\x24\x8e\xdd\x8e\x95\x21\x77\x49\x00\x4a\xc5\x2b\xb6\x37\x9e\x5d\xcb\x56\x08\xaa\x62\xd7\x21\xe4\x62\x85\x33\xb8\x24\xa4\xb1\x47\xe6\xef\xe4\x30\x7f\x5c\x76\xec\xfa\xb7\x4d\x86\x1a\xe1\x92\x26\x5d\x06\xe2\x76\x39\xea\xc0\xd3\x76\x44\xda\x8c\x59\xb0\x5a\xa4\x29\xea\x56\xeb\xa6\xe1\x03\x2e\x85\xb1\xef\x41\x69\x92\x80\x54\x7b\x5b\xc8\xca\x9d\x89\x52\x91\x08\xe4\x0d\xa2\x3f\xbc\xfa\xd8\x49\xf1\xa1\xbc\x40\x48\x8e\x9f\xe0\x55\x70\x2a\x61\x48\x4a\xdf\x4f\xe0\xc1\x5b\xc7\x56\x5a\xf6\x89\x4e\x8a\x33\x65\xb0\x4b\xb2\x4a\xe6\x5b\xe2\x39\x63\x6b\x04\xa3\x0a\x84\x0d\xe6\x79\x54\xf9\x2f\x6c\x98\x0f\x71\xb5\xe2\xc8\xde\x18\xf9\xbf\x3d\x69\xad\x35\x32\x78\x78\x7b\xfb\x76\x16\x28\x23\x83\x4a\x25\x91\x43\x19\x25\x11\x94\xe9\x29\xc5\x87\x3c\xe5\xad\xb1\x91\xe8\xea\x61\x5c\x30\x1f\xab\x28\xe8\xc9\x14\xeb\x20\x92\x38\xca\x1c\x93\xab\xe7\xf8\x71\x33\x5d\xd7\xa3\x25\x6d\x1f\x07\x8e\x3f\x2d\xf1\x0d\x64\x4e\xb6\xe6\x96\x26\x73\x77\x7b\x56\x7e\x92\xb9\x95\x5b\xa2\x96\x68\xd1\xf3\xc7\x55\x6c\x88\xb5\x18\x4b\x6b\xa6\x6a\x8d\x7a\x2d\x70\x33\xdd\x28\xbd\x12\x32\x8d\xc8\x34\xa3\x60\x03\x66\xea\xa1\xfc\xf4\x3b\xff\xe7\xd9\xbc\x78\x50\x3e\x94\x21\x3f\xf9\x4b\x70\x45\xe7\x98\xe9\xb3\x98\xaa\xf1\xdd\xf0\x3c\x76\xb5\x08\x01\x23\x3e\x5e\x4b\x6e\xb1\xc9\x44\x9c\xd5\xc0\xbd\x8a\xb1\x1d\xce\x24\x08\x25\xf2\x10\x9a\x99\xdc\x9e\xdd\x94\x49\xa0\x4e\x13\x45\xdb\xc8\x6f\xa1\xf2\x88\x49\x4e\xff\x1b\x61\x2c\x5d\x7f\x96\x04\x9d\x18\xe4\xbe\xff\x9a\xdf\x7e\x19\x03\x77\xe2\x59\xbe\xda\x01\x4e\x3d\x23\x22\x45\x63\x7b\x90\xd9\xad\x9f\x54\xe3\x43\x02\x60\x1e\x07\x56\xe8\x30\x6c\xf1\x14\x50\x28\xa4\xc1\xd8\x69\x5c\xac\x44\xf9\x1e\xb5\x48\xb6\x3d\x04\xcc\x1b\x0b\x88\x18\x67\x90\x93\x61\x9a\x95\x28\x03\x41\xc6\x3f\xa2\x5c\x19\x78\x78\xb3\x68\x11\x53\x4c\x70\x2f\x11\x31\xb3\xfe\xa1\x34\xfc\xdb\x7c\xf2\xac\x69\x5f\x2a\x95\x23\x3b\xbe\xbb\x61\x36\xce\x76\x21\x60\x41\x0f\xf5\xbc\xae\x66\xb4\x20\xc9\x03\x3e\xfe\x7d\x6a\xed\x3e\x4b\x28\xd9\x32\xc7\x70\x16\xe5\xc3\x5d\x28\x08\x55\x04\xff\x38\x50\x89\x7f\xf7\x00\xf9\x24\x2e\x0c\xc6\x1a\x6d\x3f\x28\x5f\xf8\x79\x44\x92\x33\xd8\x87\xc4\xab\x94\xd9\x22\xf9\x03\x24\xde\x04\x75\x23\x14\x3f\xe0\x77\x84\xe2\x23\x14\x0f\x14\x8f\x50\x7c\x84\xe2\x03\x98\x1b\xa1\xf8\x08\xc5\x47\x28\xfe\x8d\x43\xf1\xa0\xe5\x1e\x3c\x76\x35\xbf\x5b\xbc\xbe\x7f\x80\xeb\xdb\xdb\xf9\xc3\xfc\xed\xdd\xf5\x1b\x58\xbc\x7b\x7d\x03\x3f\xce\x5f\xbf\xb9\x5d\x40\x54\x67\xf2\x90\xe4\x49\x14\x55\xfb\xab\x85\xd4\x79\x51\x2a\x6d\x99\xb4\x33\xb8\x77\x12\x2e\x09\x83\x31\xab\x74\x64\xf8\x0a\x52\x94\xf4\x09\x61\xf5\x83\xb9\x24\x9b\xd3\xb8\xbb\x14\x2b\x8e\xc0\x92\xf6\x5d\x0b\xc5\x45\xb2\x0d\x8d\x06\x1f\xeb\x73\x84\x6b\xce\x21\xf6\x7d\xbf\x80\x56\x42\x89\xd7\x19\x9a\x45\x9a\x58\x3a\x91\x73\xca\xb7\x2c\x6d\x45\x80\xb5\xd6\x96\x4a\xad\xa2\xf5\xcb\x09\xfd\x9d\xec\x2d\x24\x1d\x2e\x71\xab\x24\xff\x75\xc9\x8c\x88\xcd\xb4\xa2\x55\xc8\xf4\xd7\x58\xf3\x49\x66\x8b\xbc\x65\xdf\x80\x47\x21\x53\x39\x0f\x90\xd6\xe9\x1c\xac\xda\x30\xcd\x1f\x11\xae\x87\xd9\x4d\x55\x9f\xc6\xac\xa9\xb0\x99\x5b\x0e\xb0\xd8\x9f\x84\xfd\xd9\x2d\x69\xb7\xb5\xe0\x55\xe9\xff\x74\xed\xdb\xd3\xd3\xe1\xed\xb9\xa2\x87\x1b\x0f\xc4\x59\x45\x43\x7b\xc9\xbe\x9f\x03\x1a\x4b\xcd\x64\xdc\x81\x7c\xa1\xdf\x67\xa1\x6e\x43\x74\xe3\xe7\x81\xbb\x38\x9d\x77\x12\x09\x20\x2c\x16\x27\x6e\x0f\x3a\xa1\x9e\xc4\xb4\x66\xdb\x13\x7e\xdd\xea\xba\x10\x34\x3e\x4c\xdd\xe7\xd2\xf5\xa8\xe8\x2f\xa3\xe8\xcc\xb7\xe2\x8e\xfb\x7a\xf5\x68\xe9\xef\x95\xea\x50\xe5\xc4\x63\x88\xa8\x56\x0b\x5c\xe3\x10\x75\xf7\xab\xf0\x1b\x90\x9c\xbf\xdd\x2f\xb5\x10\x95\x1f\xb6\x25\xbe\x96\xae\xf0\xab\x0c\x65\xb2\xae\x3a\x47\x2f\xf9\x27\xc8\x62\xb9\x5d\x0c\xc9\xbb\xd7\xf5\xbc\x21\xc9\xe2\x89\xb9\xe2\x74\x8f\xb4\x41\xca\x67\xec\x93\xc2\xd0\x5e\x69\x3f\x13\x30\xa0\x50\xd3\x94\xea\x53\x8b\x35\x30\xcc\x52\x7b\x8a\x36\x0d\x3a\x3e\x53\xe1\x06\xce\x53\xbc\x81\xf3\x16\x70\xe0\x4c\x45\x1c\x38\x5b\x21\x07\xce\x57\xcc\x81\xf3\x16\x74\xe0\x2c\x45\x1d\x38\x4b\x61\x07\xce\x52\xdc\x81\x67\x17\x78\x60\x98\xef\x77\x17\x7a\xe0\x1b\x29\xf6\x0c\x64\xb4\xbb\xe8\xd3\x64\xf4\xab\x28\xfc\x3c\x81\xaf\x13\x05\xa0\x76\xe6\xbe\x8a\x22\xd0\x40\x06\x07\x15\x83\x9a\x6c\x7e\xa6\x82\x10\x7c\x4b\x45\xa1\x81\x12\xed\x2c\x0e\x35\xa5\xf8\x15\x14\x88\x06\x31\xd5\x03\xa5\x87\xb4\x50\x1b\xcc\x7f\xa6\x36\x2a\x3c\xa5\x95\x0a\x3d\x8d\x48\x38\xdd\x8c\x6c\xf0\xf0\x99\x1a\x92\xd0\xdf\x94\x84\x11\xf3\x8e\x98\x77\xc4\xbc\x23\xe6\x1d\x31\xef\x88\x79\x47\xcc\x3b\x62\xde\x11\xf3\xfe\xb9\x98\x77\xec\xa9\x55\xe3\x2f\xd3\x6a\x19\x7b\x6a\x7f\x11\x45\x8f\x3d\xb5\xff\xa3\x9e\xda\xba\x2b\xc7\x1f\x50\x54\x67\xf2\xea\x5b\xe5\xe1\xcb\xcc\xd5\xd2\x8e\xd3\x5a\x48\xe9\x20\xa3\x7e\x19\xfc\x71\x7c\x8a\x1e\xb3\x5b\xe4\x5f\x6a\xd5\x6b\x8c\x9c\x5c\x49\xb5\x91\x91\x07\xf0\x66\x06\x56\xbb\x7d\x0c\x41\x0f\x9d\xee\x48\xc5\x27\xde\xb8\x54\x92\xfb\x57\xd9\x5b\x8c\xa2\xd3\x56\xfa\x8c\x30\x67\xc6\x3e\x68\x26\x8d\xdf\xf9\x41\x74\xe3\xdf\x44\xe9\x82\xd9\x19\x70\x66\x31\xb2\xa2\xe8\x02\x43\xbd\x56\x59\xa0\x31\x2c\xed\x3c\xa7\x77\xbd\x46\x66\xba\x21\x5e\xef\xf2\x36\xa1\x3f\x61\x79\xb7\x43\x0c\xf8\x96\xde\x6f\x4e\x68\x6c\xc5\x55\x51\x45\x57\xeb\x2d\xda\xb7\xcb\x37\xbb\x5c\xb7\xdb\xef\x39\x96\xb9\xda\x22\xaf\xde\xf7\x6d\x52\x73\xda\x66\xea\x4a\x48\xbb\x10\x9e\xfd\x4d\xd2\xe7\x45\x83\x76\x91\x46\x7b\xbe\xd2\xef\xce\x8d\x8b\xde\x77\xf9\x9e\xb7\x1a\xab\x34\x59\xec\xde\x15\xb7\xd4\xc7\x2f\x65\x54\x86\x05\xbf\xff\x71\xf1\x68\x63\x84\x0e\x4a\x8b\xfc\xee\xf8\xd7\x20\x2e\x43\x3d\xa3\xfe\x99\x07\xff\x71\xcf\xc3\xe1\xc3\xc7\x8b\x70\x30\xf2\xf7\xf5\xaf\x38\xd0\xc5\xff\x05\x00\x00\xff\xff\x12\x3b\x90\x28\x0a\x43\x00\x00") - -func deployManagedCommonAppsOpenClusterManagementIo_helmreleases_crdYamlBytes() ([]byte, error) { - return bindataRead( - _deployManagedCommonAppsOpenClusterManagementIo_helmreleases_crdYaml, - "deploy/managed-common/apps.open-cluster-management.io_helmreleases_crd.yaml", - ) -} - -func deployManagedCommonAppsOpenClusterManagementIo_helmreleases_crdYaml() (*asset, error) { - bytes, err := deployManagedCommonAppsOpenClusterManagementIo_helmreleases_crdYamlBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "deploy/managed-common/apps.open-cluster-management.io_helmreleases_crd.yaml", size: 17162, mode: os.FileMode(436), modTime: time.Unix(1661072854, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _deployManagedCommonAppsOpenClusterManagementIo_placementrules_crdYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x5a\x4f\x73\xe3\x36\xb2\xbf\xfb\x53\x74\x39\x07\xbf\x54\x59\x54\xcd\xcc\x4b\xbd\x57\xbe\x39\xf6\x4c\x9e\xde\xce\x7a\x5c\x63\x27\x7b\x48\xe5\x00\x01\x2d\x09\x31\x08\x30\xf8\x23\x8d\x36\x95\xef\xbe\xd5\x0d\x90\xa2\x24\x52\x76\x9c\x4d\x96\x17\x5b\x04\xd0\x68\xfc\xfa\x7f\x83\xa2\xd1\x3f\xa0\x0f\xda\xd9\x2b\x10\x8d\xc6\x2f\x11\x2d\xfd\x0a\xd5\xd3\xff\x86\x4a\xbb\xe9\xfa\xcd\xd9\x93\xb6\xea\x0a\x6e\x52\x88\xae\xfe\x8c\xc1\x25\x2f\xf1\x16\x17\xda\xea\xa8\x9d\x3d\xab\x31\x0a\x25\xa2\xb8\x3a\x03\xb0\xa2\xc6\x2b\x68\x8c\x90\x58\xa3\x8d\x3e\x19\x0c\x95\x68\x9a\x50\xb9\x06\xed\x44\x9a\x14\x22\xfa\x49\x2d\xac\x58\xf2\x8c\x4a\xbb\xb3\xd0\xa0\xa4\xc5\x4b\xef\x52\x43\x6c\x9c\x9e\x9e\x77\x09\xb4\x02\x20\xf3\x76\xdf\x6e\xf8\x39\x19\xe4\xf7\x46\x87\xf8\xb7\xe3\xb1\x8f\x3a\x44\x1e\x6f\x4c\xf2\xc2\x1c\xb2\xca\x43\x41\xdb\x65\x32\xc2\x1f\x0c\x9e\x01\x04\xe9\x1a\xbc\x82\x3b\xda\xbe\x11\x12\xd5\x19\xc0\x3a\xa3\xc7\xec\x4c\x40\x28\xc5\xa0\x08\x73\xef\xb5\x8d\xe8\x6f\x9c\x49\xb5\x2d\xcc\x4e\xe0\xe7\xe0\xec\xbd\x88\xab\x2b\xa8\x5a\xd8\x2a\xe9\x51\xd0\x9a\x47\x5d\x63\x88\xa2\x6e\x78\x6e\x8b\xe5\xf5\x12\xcb\xef\xb8\xa5\xcd\x95\x88\x78\x4c\x8c\x20\xac\x0a\x5c\x9f\xb1\x31\x5a\x8a\xb0\x47\xe6\xe0\x65\xa6\x45\x1c\x2e\xd1\x9f\xed\xa6\xad\xdf\x64\x08\xe4\x0a\x6b\x71\x55\x26\x93\x2c\xae\xef\x67\x3f\xbc\x7b\xd8\x7b\x0d\xa0\x30\x48\xaf\x9b\xc8\xda\xb3\x87\x33\xe8\x00\x71\x85\x90\x57\xc0\xc2\x79\xfe\xb9\x8f\x36\x5c\xdf\xcf\x3a\x5a\x8d\x77\x0d\xfa\xa8\x5b\xc1\xe6\xa7\xa7\x9e\xbd\xb7\x07\x3b\x5f\x10\x73\x79\x16\x28\xd2\x4b\xcc\x9b\x17\xd1\xa0\x2a\xe7\x01\xb7\x80\xb8\xd2\x01\x3c\x36\x1e\x03\xda\xc8\xb8\xef\x11\x06\x9a\x24\x2c\xb8\xf9\xcf\x28\x63\x05\x0f\xe8\x89\x0c\x84\x95\x4b\x46\x81\x74\x76\x8d\x3e\x82\x47\xe9\x96\x56\xff\xb3\xa3\x1d\x20\x3a\xde\xd4\x88\x88\x45\xc7\x76\x0f\xab\x82\x15\x06\xd6\xc2\x24\xbc\x04\x61\x15\xd4\x62\x0b\x1e\x69\x17\x48\xb6\x47\x8f\xa7\x84\x0a\xfe\xee\x3c\x82\xb6\x0b\x77\x05\xab\x18\x9b\x70\x35\x9d\x2e\x75\x6c\xcd\x52\xba\xba\x4e\x56\xc7\xed\x54\x3a\x1b\xbd\x9e\xa7\xe8\x7c\x98\x2a\x5c\xa3\x99\x06\xbd\x9c\x08\x2f\x57\x3a\xa2\x8c\xc9\xe3\x54\x34\x7a\xc2\xac\xdb\xc8\xb6\x5d\xab\xaf\x7c\x31\xe4\x70\xb1\xc7\x6b\x56\x8c\x10\xbd\xb6\xcb\xde\x00\x9b\xd9\x09\x09\x90\xa9\x91\xcc\x45\x59\x9a\x4f\xb1\x03\x9a\x5e\x11\x3a\x9f\xdf\x3f\x3c\x42\xbb\x35\x0b\xe3\x10\x7d\xc6\x7d\xb7\x30\xec\x44\x40\x80\x69\xbb\x40\x9f\x85\xb8\xf0\xae\x66\x9a\x68\x55\xe3\xb4\x8d\xfc\x43\x1a\x8d\xf6\x10\xfe\x90\xe6\xb5\x8e\x24\xf7\x5f\x12\x86\x48\xb2\xaa\xe0\x46\x58\xeb\x22\xcc\x11\x52\x43\x46\xa5\x2a\x98\x59\xb8\x11\x35\x9a\x1b\x11\xf0\x4f\x17\x00\x21\x1d\x26\x04\xec\xcb\x44\xd0\x77\xb3\x87\x93\x33\x6a\xbd\x81\xd6\xa5\x8e\xc8\x6b\xcf\x56\x1f\x1a\x94\x7b\x76\xa3\x30\x68\x4f\x9a\x1d\x45\x44\xb2\x87\x63\xf7\xda\x3e\xc3\x56\x4b\x4f\x71\x46\x37\xce\x66\x8f\x78\x34\x01\x40\x47\xac\x07\x5e\x1f\xf0\x7a\x73\x40\xe8\x83\x36\x11\x7d\xc7\xf0\x22\xff\x8c\xae\xfd\xaf\x6c\x3c\x40\x16\xc8\x7c\x33\x91\x81\xd1\xf1\xa3\x14\x48\xa3\x88\x69\x64\x6c\x54\x68\x07\x13\x5e\xb7\x78\x44\xc6\xfd\x41\xe1\xbd\xd8\x0e\x4b\xa0\xf5\xfc\xc7\x9b\xef\xc1\x6c\x53\x3d\x47\x4f\xd2\xf6\x65\x01\x5c\x37\xfc\x0f\x8d\xc3\x46\x58\xb6\x9b\x23\x22\x0b\xe7\x6b\x11\x39\x96\xbc\x7b\x3b\xc2\x5d\x3f\xce\x1c\xf1\xf7\x80\x06\x65\x74\xfe\x19\xfe\xae\xc1\x88\x39\x1a\x08\x65\x7a\xf6\x36\xf9\xdd\x2f\x09\xfd\x16\xdc\x1a\x3d\x39\x20\x8c\xf9\x14\xc5\xbf\x55\x03\x88\x3e\xae\xc8\x37\x85\x64\x78\x6a\x2d\xa2\x5c\x7d\x24\x4a\xa1\x78\xe6\x28\x57\xef\xbf\x90\x07\xe2\xd0\x0e\xc2\x23\x5c\xdf\xdd\x92\x8b\xb8\xb6\x80\x75\x13\x0f\xb1\xa6\xe7\x80\x3f\xa6\x82\x01\x84\x31\x45\x76\xa1\x82\x6b\xb0\xc9\x98\x91\xa9\x03\x34\xad\xeb\xd6\x1e\x8d\x9e\x56\xd8\xc3\x43\x0c\xeb\xde\x1e\xc4\x47\xe7\xce\x10\xeb\xc0\x28\x1d\xf0\x4c\xbe\x54\x7b\xf6\x0a\x83\x10\xef\x60\xde\xcd\xeb\x01\x39\xb8\x62\xd4\x21\x1c\xb1\x7a\xa4\x0d\xbd\x6d\x4a\x1c\x6a\x47\xe2\x4a\x1c\x5b\x4d\xfb\x90\xef\x16\xda\x86\x12\x75\x2f\x41\xc0\x13\x6e\x73\x80\xa6\x2c\xa0\x41\x2f\x5a\x22\xe0\x91\x83\x3b\xfb\xc8\x27\x1c\x52\x81\xfc\xd0\xe2\x12\xc5\x47\xe6\x3c\xe7\x6b\xe8\x79\xc2\xed\xf8\xe0\x01\x1c\x4f\xb8\x6d\x33\xae\x8c\x0b\xbd\x60\x9e\xe9\x55\x07\x85\x20\x83\x1e\xd4\xb3\xdd\x13\xdd\x18\xd3\xf0\x12\x37\x07\x39\x5f\x64\xd4\x5e\xcc\x7e\x07\xf3\x2e\xec\x67\x41\x5c\x84\x0c\x3a\x69\xe3\x4a\x37\x43\xfe\xa7\xff\x74\xc6\xdf\xe6\x50\x3f\x08\xa3\x55\x47\x3e\xeb\xdf\xcc\x5e\xc2\x9d\x8b\xf4\xe7\xfd\x17\x1d\xe2\x69\x38\x48\x96\xb7\x0e\xc3\x9d\x8b\x3c\xfb\x0f\x83\x93\x59\x7b\x31\x34\x79\x3a\xab\xb4\xcd\x5e\x9e\xce\xd7\x4f\xb2\x42\x05\x33\xca\x6b\xf1\xe4\x39\x3a\x88\x75\xa0\x34\xc7\xf9\x16\x03\x4e\x94\xf3\x26\x99\x7c\x9d\x02\x67\x45\xd6\xd9\x09\xbb\xba\x53\x47\x86\xb2\xf7\x1e\xfd\x0c\x2b\xed\xd1\x47\xae\xbf\xd5\x69\xc8\xf7\xd8\xc8\x2c\xc0\x23\xa5\x7c\x79\x24\x27\xf0\x94\x92\x28\x50\x89\x81\xe0\xb4\x53\x44\x5c\x6a\x79\x92\x74\x8d\x7e\x89\xd0\x90\x9f\x3b\x75\xaa\x93\x7e\x28\x3f\x2f\x92\xf5\xa9\xe8\xdc\x3e\xc5\x71\xa9\xb1\xed\x26\x27\x5c\xcd\xa4\x83\xfd\x64\x62\x31\x92\x39\x3c\xcf\x5f\x2f\x30\x0e\xb3\xd7\x2f\x77\x9f\xf3\x68\xcf\x22\x76\x1c\x8b\x4a\x4c\x66\x7f\x5e\x8b\x86\x34\xff\x57\x72\xcf\xac\x44\xbf\x41\x23\xb4\xe7\x98\x4a\x15\xbb\x19\xd3\xff\xfe\x0a\x6d\x59\x09\xfb\xc4\x89\xae\x0e\x40\x52\x58\x0b\x43\xe1\x23\x3a\xb2\x35\x34\x1c\x4c\x46\x88\xb6\x59\x43\x2f\x5a\x5e\xc2\x66\xe5\x02\x47\x06\x58\x68\x34\x5c\x0f\x9d\x3f\xe1\xf6\xfc\x72\xcf\x42\x46\x28\xd2\xe4\x99\x3d\xcf\xa1\xe7\xc8\x28\xbb\x38\xe5\xac\xd9\xc2\x39\x8f\x9d\x57\x47\x01\x76\x84\xf6\x33\x61\xf7\x05\xf9\xe5\xe0\x60\x49\xe0\x5e\x9d\xd9\x7f\x87\x16\xbd\x96\x37\x6d\x9e\xba\x40\x8f\x56\x22\x4c\x48\x4e\xc2\xe8\xa5\xe5\x70\xbe\xd1\x71\x05\x4f\x69\x8e\x0b\x6e\xb8\x1c\x3e\xcf\xc5\x52\x6e\x6c\xbc\x4e\x27\x4f\xd9\xe6\x84\x09\xff\xfb\xb2\xf5\xc6\x19\x2d\x07\x0f\xb1\x87\xd9\x03\x46\xb8\xa7\xa9\x5b\xc8\x85\xd0\xb1\xcc\x5f\x06\xfe\xc5\x27\xe6\x70\x87\x7a\xa7\x62\x68\x5d\x5a\xae\xb8\xf2\xa5\xd4\x9e\xb2\xff\xe8\xc0\xe0\xb0\x2d\x6c\x5d\x02\x6d\xa9\xde\x8c\xe4\xf1\x6b\xa7\xf4\x62\xcb\x0a\xec\x89\x34\xd5\x91\x6d\x2f\x65\x32\x99\xc0\x1d\x6e\x20\x05\x0c\x6d\x2f\x66\x54\x21\x59\x69\x95\x0e\xd2\x25\x2f\x96\xa8\x60\x8e\x52\xa4\xc0\xf5\xa8\xd2\x8b\x85\x96\xc9\xc4\x6d\x39\xd3\x9c\x82\x00\x55\xf8\x29\x88\xe5\xb0\x23\xd8\xac\x90\x52\xf7\x39\x2a\x85\x8a\x14\xec\xfa\x7e\x16\x2a\x80\x37\x15\xcc\x96\xd6\x11\x9f\x6c\xb5\xf4\x6e\x16\x41\x5b\x69\x92\x42\xf2\x0f\xb6\xd8\xf3\x30\xaf\x9b\x95\x96\x2b\x66\xd6\xba\x08\x4b\x52\x69\x61\xcc\x16\x56\x8e\x89\x56\x00\x1f\x28\x2a\xda\x10\x85\x95\x78\x09\x6d\x03\xb5\x34\xac\x86\xdd\xaa\x55\xf0\x81\xb6\xbc\x17\x31\xd3\x9e\xbb\xb8\x82\x35\x55\x39\x5e\x78\x34\x5b\xf2\x0e\x9a\x8f\x21\x64\x4c\xc2\xe4\x83\x57\x00\x6f\x87\x4d\x7c\x66\xf3\x02\x9e\x06\x2b\x34\x4d\x39\x66\x00\x5d\x37\x2e\x04\x3d\x37\xc8\x9e\x4f\x29\x6e\x1e\xe8\x85\x96\x3c\x8f\x0a\xbc\xe1\x64\xdd\x2a\xbd\xd6\xaa\xbf\xf9\xcc\x42\xed\x42\xdc\xc1\xcc\x03\x81\xfd\x9f\xcf\x12\x6d\x84\x8f\x24\x3a\xe1\x99\x88\x47\x32\x3e\xc9\x09\xde\xe0\x2e\x46\x3f\xe1\x25\x9c\x73\x36\xc0\x0a\x95\x3d\x60\x74\xac\x24\x01\xae\x19\xac\x6f\xcf\x49\xf7\xce\xbf\x9f\xdd\xb2\x14\x0a\xf6\xe7\x83\x14\x69\x22\x99\x6e\x97\x61\xb4\x3c\xa0\x3a\xaf\x78\xc6\x23\xfb\x71\xd9\xf5\x87\x36\x68\x4c\xab\x68\x83\x2e\xe8\x40\xbb\x2a\x80\x77\x15\xcc\xac\x74\x36\xe8\x10\xc9\x87\x31\xfa\x6c\x4b\x15\xc0\xb7\x45\x93\xc9\x48\x32\x42\xc3\x5a\xc0\x06\xb0\x60\xfb\xdc\x65\x4f\x85\x0c\xe4\x0e\xea\xde\x1c\x98\x6f\x33\xbd\xcb\xac\x95\x83\x54\x6b\xf1\x44\xf9\x64\x84\x95\xf0\x8a\x1b\xb3\x29\xa0\xe7\xf6\x65\xe3\x51\x69\x19\x61\x43\x85\xc3\x46\x1b\x03\x2b\xd1\x34\x48\x2c\xff\x77\x8e\x35\x27\xec\xa0\xd3\x52\x5d\x37\x1e\xa5\x0e\xc8\x92\xa1\xa2\xdc\x6c\xa1\xbc\xaa\x00\xda\x4e\x21\x61\x2b\xda\xf7\x23\x9c\x36\x0d\xf7\x0d\x1d\x08\xf8\xfe\xf3\xc7\x92\x04\x4a\x61\xc9\xe7\xab\x24\x11\x44\x3d\xd7\xcb\xa4\xe3\x96\x17\x94\x64\x90\x9b\xad\x8d\xc7\xc1\xee\x6e\x61\xd6\xaa\xd6\xb9\x83\xc8\x4d\xc9\xb2\x5b\x4f\x8b\xa5\x08\x45\x77\x41\x61\x83\x56\xa1\x95\x94\x7d\x0e\x6b\x55\xce\x2c\xf8\x0a\xe3\x72\xd7\xe0\x4c\x8d\xc1\x6e\xc7\x5e\x4f\x3a\xbb\x3f\x2c\xd6\x3b\xd2\x6f\xf2\x49\x66\x0b\xf5\x1e\x0d\xae\x85\x8d\x15\xc0\x37\x15\xfc\xa3\x53\x4e\x14\x41\x9b\x2d\xc8\x95\xb0\x4b\x04\x1d\x77\xca\x35\xec\x57\x09\x3f\x76\xae\x94\xf1\xf4\x7c\x21\x3b\x39\xe3\x72\xaf\x27\x5c\x96\x8e\x68\xe9\x69\xb7\x6b\xe8\x21\xad\x18\x46\x74\xb1\xa0\x08\x60\x53\x8d\xde\xa5\xd0\x76\xc5\x2b\x80\x5b\x67\x2f\x2e\x22\xeb\x1d\x58\xdc\xb0\xdf\xcd\x9b\x53\x9a\x95\xac\x42\x5f\x1c\xce\x88\x6d\x5d\xdf\xcf\x32\x03\x71\x85\x5b\x50\x8e\x55\x87\x9b\xae\xce\x90\x99\x85\x88\x42\x11\xa0\x29\xe4\x36\x73\x61\xf8\x12\xf8\x66\x65\x18\x0a\xc1\xc7\x35\xac\x9a\x6e\xad\x15\x73\x43\x0e\x0b\x55\xbb\x99\x60\xf0\xc9\xf8\x27\x0b\x27\x79\xc4\x59\x8a\x77\xc3\xfe\xd0\xb7\x91\xb4\x62\x8f\x8f\x5f\x44\xdd\x18\xbc\xe4\xf6\xb5\x96\xd8\x05\xda\xc0\x46\x27\x54\xad\x39\x6f\x04\x8f\x4b\xcd\xd5\xcb\xd1\x25\x47\xfb\xf4\xba\xcf\xab\x34\xaf\xa4\xab\xa7\x94\x0e\x79\x8b\x11\xc3\x54\x34\x7a\x3a\x37\x6e\x3e\x25\x25\x11\x01\x27\x6f\xaa\x37\xff\x33\xed\xe8\xf7\xc9\x4f\xd7\x6f\xa6\xec\x36\xab\xa5\xfb\xea\xe3\x37\xef\xde\x0d\x6e\x57\x5d\xbc\x22\xcb\x1a\xbb\xa8\xd9\x3d\xfb\xfd\x9b\xfb\xd9\xa1\x29\x14\xfc\x46\x2b\xec\x67\xeb\x87\x45\x1b\x31\x5f\xc4\xc1\xc5\x6c\x51\x32\x94\xce\xc7\x34\x1a\x25\xee\xdd\xff\x70\xdc\xce\xda\x75\xa2\xdb\x03\x68\x23\x79\x92\xbc\xe6\x32\x6b\x60\x29\xd1\x77\xf7\x46\x94\x5c\x81\x28\x81\xfb\xff\x1f\x3e\xdd\x4d\xbf\x1b\xef\x66\xe4\x02\x42\x48\x89\x21\xe4\x3e\x7c\xcd\x41\x20\x24\x4a\x36\x42\xdb\xa2\x7f\xa0\x91\xaa\x16\x56\x2f\x30\xc4\xaa\xec\x82\x3e\xfc\xf8\xf6\xa7\xf1\x02\x77\x4f\x3d\x75\xa9\xdf\xdb\x7b\x97\x36\x1d\xd4\x21\x83\xd2\xd1\xe4\x3c\x5c\x0f\xfb\x53\xc6\x01\x1a\xa7\xca\xe1\x37\x7c\xe8\x48\x26\xef\xca\xa1\x13\x72\x2c\xbf\x82\xf3\x7c\x57\xd9\xb1\xfa\x2b\x05\xe3\xdf\x86\x63\x35\x3d\xff\xb5\xe1\xe4\x81\x63\xf6\x79\x66\xb0\xbb\x6c\xe3\x38\x5e\xf4\x67\xc7\x68\x6e\x7c\x79\xbd\x5c\xa2\x1f\xf1\x29\xc0\xde\x10\x01\xd7\x68\xe3\xd7\x94\x13\xe8\x05\x58\xd7\x23\xc2\xa4\x49\x8e\xad\x6f\x3a\x62\xfc\xc7\xb7\x3f\x9d\xe0\x7a\x1f\x37\xca\x96\xf0\x0b\xbc\xcd\x15\xa8\x0e\x84\xd5\xd7\x25\xa0\x85\xad\x8d\xe2\x0b\xed\x25\x29\xf1\x18\x47\xb8\xcd\x7c\x56\x62\x8d\x10\x5c\x9d\x33\x93\x49\xbe\x09\x51\xb0\xc9\xbd\xa1\x56\x84\xb9\x2f\x42\xf9\xd6\x33\xda\xdb\xa6\xe7\x8f\x9f\x6e\x3f\x5d\x65\xee\x48\xbd\x96\xb6\x0d\xd3\x0b\x6d\x85\x29\x11\x4c\x87\xae\xb8\x1d\xa5\x19\x52\x56\xa6\xe8\xba\xc8\x94\xa3\xe3\x22\xc5\xe4\x71\xd0\xbf\xc0\x4b\x2c\xfc\xf8\x16\x72\xf7\x0c\xdc\x47\x1e\x3a\x96\xff\xd8\x8d\xde\xef\x38\xe2\xa9\x6a\x75\xff\x88\x77\x3d\xdd\x3f\x79\xc4\x5d\xac\xa0\x53\x2a\x27\x03\x1d\x50\x62\x13\xc3\x94\xd2\xb3\xb5\xc6\xcd\x74\xe3\xfc\x93\xb6\xcb\x09\x29\xeb\xa4\x5c\x39\x4c\xf9\x3b\x8b\xe9\x57\xfc\xe7\x0f\x9d\x88\xbf\x96\x78\xf9\xb1\x78\xfa\x5f\x71\x36\xda\x27\x4c\x5f\x7d\x34\xbf\x5f\xcb\xbd\xec\x80\x0f\x6d\x75\x75\xb0\x9a\xcc\x25\x17\x93\xe5\x1b\x85\xe2\x89\x47\xcd\x4c\x53\x71\xaa\xb2\x0b\x17\x76\xfb\xa7\xab\x37\x01\x9b\x3c\xf1\xb4\x9d\x94\xf4\x6b\x22\xac\x9a\x74\x65\x8e\xdc\xbe\x1a\xc9\xa4\x5f\x68\xd8\x54\xe2\xfd\x25\x4a\x9f\xf4\xab\xad\xf8\x95\x1d\xa0\x56\x1f\xfe\x4f\xdb\xf8\x6c\x17\xc8\x90\x83\x6d\x7b\x09\xbf\xf3\x6a\xd0\x79\x85\x23\x97\x33\x03\xbb\x68\x67\x3f\xd1\x82\xf6\x82\x89\xb3\xe3\x05\x5f\x20\xa8\x91\xca\xf5\x25\xf8\x3c\xbf\x7d\x7b\xba\x47\xda\xb0\xfb\x3e\x81\xab\x7e\xaa\x01\xe7\x14\x03\x7d\x1c\x09\xf0\x27\x59\x38\x21\x20\xaa\x5b\x54\x32\xe8\xef\x06\x1d\xf1\x41\x0a\x79\xf7\xf0\xfe\xf3\x23\x5c\xdf\xde\xce\x1e\x67\x9f\xee\xae\x3f\xc2\xc3\xfd\xfb\x1b\xf8\x30\x7b\xff\xf1\xf6\x01\x26\xc7\x1f\x52\x8c\x7f\x9b\x30\xab\x1b\xe7\xa3\xb0\xf1\x0a\x3e\x27\x0b\xe7\x54\x2e\x9d\x93\x4b\xf0\x98\x7b\x4a\x91\x32\x1c\x85\x20\x16\x11\xdb\x36\x5b\x57\xee\x2c\xf4\x60\xfb\x7b\xef\x30\x97\x84\xa1\x48\x86\xe3\x72\x0a\x08\xb5\xac\xdb\x32\xca\xa0\x3f\xd6\xf5\x51\x08\xc7\xbe\x39\x19\xf8\x40\xe2\xc4\x57\x27\x3c\x7b\xef\xbb\x13\x37\x0f\xe8\xd7\x7f\xf4\xc3\x13\x85\x52\x8f\xdc\x78\x3f\x2b\xbd\xc7\xeb\xc7\xef\x1f\xb2\xfc\x58\x7c\xc4\xdb\x01\x5b\x43\xf6\xd4\x09\xf6\xd5\x62\x1c\xb2\x92\x56\xb0\xc7\x92\x79\x59\x87\xb7\x03\xef\xb6\x20\x72\xf0\x91\x4f\x79\x49\x31\x04\xe6\xdb\x9e\x2a\xbc\xa2\xfc\x2b\xe7\x1f\x36\x9a\x72\x9e\xe7\x62\x40\x8f\xc6\xc9\x7c\xe1\xcf\xf0\xbe\x83\x8b\x8e\xdb\xff\x13\x2e\x07\xce\x46\x57\x65\x45\xb9\x82\xe8\x53\x56\x94\x10\x9d\x17\x4b\xec\xbf\x49\xf3\xee\xd3\x94\x96\x70\xb1\x1c\xf8\xf5\xb7\xb3\x7f\x05\x00\x00\xff\xff\x37\x69\x9c\xbf\x90\x2b\x00\x00") - -func deployManagedCommonAppsOpenClusterManagementIo_placementrules_crdYamlBytes() ([]byte, error) { - return bindataRead( - _deployManagedCommonAppsOpenClusterManagementIo_placementrules_crdYaml, - "deploy/managed-common/apps.open-cluster-management.io_placementrules_crd.yaml", - ) -} - -func deployManagedCommonAppsOpenClusterManagementIo_placementrules_crdYaml() (*asset, error) { - bytes, err := deployManagedCommonAppsOpenClusterManagementIo_placementrules_crdYamlBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "deploy/managed-common/apps.open-cluster-management.io_placementrules_crd.yaml", size: 11152, mode: os.FileMode(436), modTime: time.Unix(1646042069, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _deployManagedCommonAppsOpenClusterManagementIo_subscriptionreports_crd_v1alpha1Yaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x5a\x59\x6f\xdc\x46\xf2\x7f\xd7\xa7\x28\x28\x0f\x4e\x00\x91\xa3\x23\xfe\xe7\xaf\x79\x73\xe4\xf5\x42\xbb\x89\x6c\x48\x72\x16\x48\x90\x87\x1e\x76\x71\xd8\x71\xb3\x9b\xdb\xc7\x8c\xb9\x41\xbe\xfb\xa2\xaa\x9b\x1c\xce\xa1\xcb\x40\xb2\x84\x0d\x9b\x7d\x54\x55\xd7\xf1\xab\xaa\xe6\x1c\x15\x45\x71\x24\x3a\xf5\x13\x3a\xaf\xac\x99\x83\xe8\x14\x7e\x0e\x68\xe8\xcd\x97\x9f\xfe\xdf\x97\xca\xce\x56\x67\x47\x9f\x94\x91\x73\xb8\x8a\x3e\xd8\xf6\x16\xbd\x8d\xae\xc2\xb7\x58\x2b\xa3\x82\xb2\xe6\xa8\xc5\x20\xa4\x08\x62\x7e\x04\x20\x8c\xb1\x41\xd0\xb0\xa7\x57\x80\xca\x9a\xe0\xac\xd6\xe8\x8a\x25\x9a\xf2\x53\x5c\xe0\x22\x2a\x2d\xd1\x31\xf1\x81\xf5\xea\xb4\x7c\x5d\x9e\x1e\x01\x54\x0e\x79\xfb\xbd\x6a\xd1\x07\xd1\x76\x73\x30\x51\xeb\x23\x00\x23\x5a\x9c\x83\x8f\x0b\x5f\x39\xd5\xd1\x1a\x87\x9d\x75\xc1\x97\xa2\xeb\x7c\x69\x3b\x34\x45\xa5\xa3\x0f\xe8\x8a\x56\x18\xb1\xc4\x16\x4d\x28\x95\x3d\xf2\x1d\x56\x24\xcd\xd2\xd9\xd8\xd1\x31\x1f\x5f\x9e\x58\x65\xf9\xd3\xd9\xef\x26\x5c\x6f\x99\x2b\x4f\x6a\xe5\xc3\x3f\x1f\x58\xf0\x83\xf2\x69\x51\xa7\xa3\x13\xfa\xa0\xe4\x3c\xef\x1b\xeb\xc2\xcd\x86\x63\xc1\x02\xc6\x85\xdb\xf0\xf1\xca\x2c\xa3\x16\xee\x10\x91\x23\x00\x5f\xd9\x0e\xe7\xc0\x34\x3a\x51\xa1\x3c\x02\xc8\x9a\x65\x9a\x05\x08\x29\xd9\x56\x42\x7f\x70\xca\x04\x74\x57\x56\xc7\xd6\x8c\x1c\x7f\xf3\xd6\x7c\x10\xa1\x99\x43\x99\xa8\xde\xf7\x1d\xf2\xdc\xa0\xf7\xdb\xdd\xe1\xd0\x13\x4f\x1f\x9c\x32\xcb\x7d\x2a\x3e\xb6\xad\x70\x7d\x29\xb1\xd3\xb6\x67\x89\x36\xb4\xde\x6e\x0f\x3e\x8f\x92\x32\x1f\x9c\x5d\x3a\xf4\x7e\x8b\xd6\xf5\xee\xf0\xf3\xa8\xd5\x42\xe9\x1d\xa9\xde\x4d\x87\x9e\x47\xa5\x73\xb6\x13\x4b\xf6\xd7\x77\xfb\x04\x3f\x3c\x30\xfb\x3c\xda\xd9\x37\xb7\x4f\x7b\xb5\x3d\xf8\x38\xa5\x21\x2e\xcb\xbd\x98\xda\xa2\xf9\x66\xb9\x6d\x52\x29\x42\x1a\x48\xd3\xab\x33\xa1\xbb\x46\x9c\x25\x47\xac\x1a\x6c\xc5\x3c\xaf\xa7\x18\x7a\xf3\xe1\xfa\xa7\x8b\xbb\xad\x61\x00\x89\xa3\x93\x1e\x0a\x0d\x50\x1e\x42\x83\x90\xb6\x41\x6d\x1d\xbf\x1e\x08\x10\x78\xf3\xe1\x7a\xa4\x4a\xda\x46\x17\xd4\x10\x28\xe9\x99\x00\xd8\x64\x74\x47\x86\x57\x24\x66\x5a\x05\x92\x90\x0b\x93\x04\x39\x4a\x50\xe6\x93\x81\xad\x21\x34\xca\x83\xc3\xce\xa1\x47\x93\xb0\x8c\x86\x85\x01\xbb\xf8\x0d\xab\x50\xc2\x1d\x3a\xda\x48\x91\x1b\xb5\x24\x88\x5b\xa1\x0b\xe0\xb0\xb2\x4b\xa3\xfe\x33\x52\xf3\x10\x2c\xb3\xd1\x22\xa0\x0f\xc0\x91\x67\x84\x86\x95\xd0\x11\x4f\x40\x18\x09\xad\xe8\xc1\x21\xd1\x85\x68\x26\x14\x78\x89\x2f\xe1\x47\xeb\x10\x94\xa9\xed\x1c\x9a\x10\x3a\x3f\x9f\xcd\x96\x2a\x0c\xe0\x5c\xd9\xb6\x8d\x46\x85\x7e\xc6\x38\xab\x16\x31\x58\xe7\x67\x12\x57\xa8\x67\x5e\x2d\x0b\xe1\xaa\x46\x05\xac\x42\x74\x38\x13\x9d\x2a\x58\x58\xc3\x00\x5d\xb6\xf2\x2b\x97\xe1\xdc\xbf\xda\x52\xde\x9e\x63\xa5\x87\xc1\xf0\x11\x2d\x13\x16\x92\x71\x45\xde\x9a\x4e\xb1\x51\x26\x0d\x91\x3e\x6e\xff\x76\x77\x0f\x03\xeb\xa4\xf0\xa4\xdb\xcd\x52\xbf\x51\x33\xa9\x48\x99\x1a\x5d\x5a\x59\x3b\xdb\x32\x15\x34\xb2\xb3\xca\x04\x7e\xa9\xb4\x42\x13\xc8\x87\x5a\x15\xc8\x7e\xff\x8e\xe8\x03\x59\xa0\x84\x2b\xce\x4a\xb0\x40\x88\x1d\x79\xb7\x2c\xe1\xda\xc0\x95\x68\x51\x5f\x09\x8f\x7f\xba\x92\x49\x9b\xbe\x20\xe5\x3d\x4f\xcd\xd3\x84\xba\xbb\x38\xe9\x69\x32\xb1\xc1\xeb\x47\x2c\xb3\x41\xef\x21\xf6\x28\xb8\xc1\x3a\x50\x92\x04\xad\x15\xba\xe4\xfb\xc8\x7c\xe8\xff\x93\xfc\x33\x3c\x68\x62\xbb\xcd\xa5\x80\x37\x5d\xa7\x55\xc5\x61\xb2\x33\x93\xc1\xea\x39\x27\x1e\xdd\xf0\xd1\x33\xe4\x35\xec\x61\x06\x6c\x97\x32\x1a\x38\xac\xd1\xa1\x21\x4f\xb2\x7b\x40\xb2\x21\xbd\x45\x59\x05\x6c\x77\x98\xed\x3a\xf3\x7b\xd6\xf4\xed\x48\x9c\x8c\x2f\x94\xf1\x80\xc6\xc6\x65\xc3\xfe\xe2\xda\x84\x0f\xc1\x82\xc6\x00\xbd\x8d\xa0\x0c\x95\x1b\x81\x74\xdb\x5a\xa9\xea\x9e\x45\x62\x19\x1d\xca\x11\x43\x8a\xa2\x80\x1b\x5c\x43\xf4\xe8\x47\xd4\x61\xd5\x0b\x87\x20\x95\xaf\x6c\x74\x62\x89\x12\x16\x58\x89\xe8\xd9\x24\x52\xd5\xb5\xaa\xa2\x0e\x7d\x96\x75\x41\x11\x45\xfe\x1e\xbd\x58\x22\xac\x1b\x34\x80\xed\x02\xa5\x44\x09\xca\x10\x7c\xfa\x12\xe0\xac\x84\xeb\xa5\xb1\xc4\xbf\x56\xa8\x25\x8d\x5d\x13\x1e\x55\x3a\x4a\xa4\x08\x33\x7d\x9e\x81\x75\xa3\xaa\x86\x85\xa0\x98\x59\xa2\x41\x27\xb4\xee\xa1\xb1\x4c\xa0\x04\x78\x47\x6e\x63\x7c\x10\xa6\xc2\x93\xd1\x2c\x03\xbc\x12\xa8\xbd\x23\x52\x94\x85\x98\xce\xc2\x86\x86\x90\xb6\x07\x27\x1c\xea\x9e\x50\x41\xb1\x78\xa2\x0a\x51\xe8\x24\x7c\x09\x70\x4e\x71\x99\x26\xd3\x79\x1a\xd4\x5d\x16\xd5\x83\x6a\x3b\xeb\xbd\x5a\x68\xb6\xb3\x90\x12\x48\xd1\xaa\x56\x15\xaf\xe3\x34\xa2\x8c\x54\x2b\x25\xa7\x44\xaf\x0d\xb4\xd6\x87\x8d\x5a\x78\xc2\x9f\x90\x59\x5c\xd2\x76\x27\x5c\x20\xb5\x0a\x37\x38\x63\x70\xaa\xe2\xf0\x05\xad\x3e\xe1\x09\x1c\xb7\xd1\x87\x64\x44\xb0\x46\xf7\xec\x69\x14\xd5\xf0\x86\x0f\xfc\xfd\x31\xd9\xfb\xf8\xe3\xf5\x5b\xd6\x5a\xd6\x55\x1a\xe4\x48\xe3\xfd\x0b\x1c\x69\xa3\x3c\x2e\x99\xd9\x7d\x63\x3d\x42\x35\x22\xd4\x1a\xb5\x1e\x8c\x8b\x72\xdb\xa2\x25\xc0\x05\xa9\xa8\xb2\xc6\x2b\x1f\x08\xef\x58\x5b\xec\x83\x25\xc0\xf7\xd9\x53\xc8\xe1\xd2\x29\xb3\x33\xd5\xec\xc3\xe1\x24\xe5\xbc\x71\x0b\xb8\xa8\x77\xd7\xc0\xa2\x4f\x7b\x4f\xb2\x27\xb4\xe2\x13\x85\x5c\x80\x46\x38\xc9\x4a\x8e\x9e\x50\x39\x58\xe8\x1c\x4a\x55\x05\x58\x37\x22\xc0\x5a\x69\x0d\x8d\xe8\x3a\x24\x51\xbe\x2d\xe1\xbe\xc1\xc1\xa7\x46\x2f\x50\x6d\xe7\xb0\x52\x1e\x59\x6b\x76\x85\x4e\xf7\x90\x87\x4a\x80\x21\x7f\x90\x2e\xc4\x30\x0e\xad\xe8\x3a\xce\x1c\x16\x04\x7c\xbc\xfd\x81\x48\x2b\x4f\x3a\xa3\x92\x40\xc6\x0a\x41\xb4\x0b\xb5\x8c\x2a\xf4\x29\x8e\x23\x27\x1f\x4e\xb7\x9d\xc3\x9c\xc3\x89\x23\xa5\x05\x45\x56\x4f\x29\x28\x53\x9e\x78\x49\x25\x7c\xf6\x0d\x90\xd8\xa1\x91\x68\xaa\x9e\x44\xa2\x20\x6f\x30\xb5\x10\x27\x9b\xd4\x15\x3b\x8d\xcc\x93\xa8\x4f\x2a\x8a\x01\x4c\xb3\x87\xfb\xe0\x62\x95\xbc\xd8\x39\xd4\xb8\x12\x26\x94\x00\xaf\x4b\xf8\xd7\x68\x7c\x14\x5e\xe9\x1e\xaa\x46\x98\x25\x82\x0a\x5b\x06\x1d\xc0\x41\xf9\xad\xf8\xe6\xc0\xd5\x36\xc1\xaf\x3f\xc9\xf9\x2d\xd7\x1d\xc3\x1e\x7a\xd8\x3a\xa2\xae\x09\x99\x4c\x6c\xd1\xd9\xe8\x87\x2a\xa5\x04\x78\x6b\xcd\xab\x57\x81\x6d\x0d\x06\xd7\x8c\x1b\x89\x11\x21\x6d\x34\x12\x5d\x0e\x36\x94\x34\x99\x08\x87\x06\x7b\x90\x96\xcd\x95\xfb\x3c\x72\x4f\x1f\x50\x48\x52\x40\xf4\x29\xe1\x67\x41\x4e\x52\x73\x47\xda\x27\x91\x35\x9b\xde\xae\x94\x64\x2e\x14\x98\x28\x07\xc2\x82\x95\x45\xc1\x50\xd4\xb6\xe2\x19\x6b\x08\x5f\xdd\x06\xee\x4b\x46\x22\xfc\x2c\xda\x4e\xe3\x09\x97\x0b\xaa\xc2\x11\xb0\x3d\x3b\xab\x90\xad\xf2\x3e\x25\x82\xa5\xf2\xc1\x89\x04\xef\x93\x3c\xdf\xc4\x45\x59\xd9\x76\x46\xbd\xa9\x33\x18\xd0\x53\x12\x9f\x2d\xb4\x5d\xcc\xc8\x58\xc2\x63\x71\x56\x9e\x7d\x37\x1b\x69\x4d\x49\xcd\x56\x67\x33\x86\x82\x72\x69\xbf\xfa\xe1\xf5\xc5\x05\x94\xaf\x76\xf2\xca\xe1\xc2\x35\x3d\x0f\x95\xaf\x07\x32\x12\xe9\x7d\xc7\xbd\xb2\x2e\x42\x79\x60\xef\x03\xa9\x36\x3d\xf5\x80\xd0\x4f\x72\x7d\x75\x5d\xe7\xec\x35\xc6\x60\xa7\xb0\xc2\xad\x9a\x98\xf3\x41\xb6\xba\x30\x40\x25\x85\xc3\x3c\x77\x92\x3c\x20\x57\x84\x9b\x9a\x99\x92\x29\x88\x9c\x0c\xfe\x71\xf7\xfe\x66\xf6\x77\x9b\xe4\x02\x51\x55\xe8\x69\x8b\x08\xdc\x95\x9f\x80\x8f\x94\x94\x3c\x89\xa6\x1c\xca\x3b\x9a\x29\x5b\x61\x54\x8d\x3e\x94\x99\x1a\x3a\xff\xcb\xf9\xaf\x3b\x6e\xa1\x92\xa6\xc6\xfa\x72\x48\xe7\xca\xa7\xc3\x8c\x7b\x61\xad\x42\xc3\x22\x75\x56\x66\xa1\xd7\x2c\x6c\xa0\xb0\xb0\x59\xd8\x88\x9c\x13\xe6\x70\x4c\x11\x31\x61\xfd\x3b\x01\xfd\x1f\xc7\xf0\xf5\x9a\x13\x0b\xe3\xfe\x71\x62\x38\x36\x02\xa9\xea\x4a\x12\x6d\x18\xb3\xbb\x07\xa7\x96\x4b\xa4\x14\xcd\xb5\x2d\xd5\x8f\xdf\x70\x81\x56\x83\xb1\x93\xc5\x4c\x82\xf4\x39\xc6\xe3\xae\x20\xbf\x9c\xff\x7a\x0c\x5f\x6f\x9f\x8b\x32\x23\x7e\x86\x73\x02\x0d\x3e\x59\x67\xe5\x37\x19\x48\x7d\x6f\x82\xf8\x4c\x34\x2b\x4a\x46\x66\xcc\x70\x8d\x58\x21\x78\xdb\xa6\xac\x54\xa4\xc6\x49\xc2\x5a\xf4\xa9\x3e\x4c\xaa\x24\xab\x0a\xce\xa1\x3b\x6d\xd2\xfd\xfb\xb7\xef\xe7\x89\x1b\x99\x6d\x69\x06\x68\xaf\x15\x95\x6d\x09\x31\xa9\xa0\x67\x9b\x93\x20\x31\x19\x29\xd8\x11\x05\x13\xea\xd6\x91\x4a\xeb\xbd\xb8\x7a\xd2\xcb\xf7\xfb\x95\x43\x0e\xce\x59\x67\x37\xa0\xfe\x67\x3d\xc1\x33\x8e\xc5\x8d\xf9\x93\xc7\xba\x99\xf8\xda\xa3\xc7\xda\xe0\x1e\x9d\x4c\xda\xca\xd3\xa1\x2a\xec\x82\x9f\x51\x8a\x5e\x29\x5c\xcf\xd6\xd6\x7d\x52\x66\x59\x90\x33\x15\xc9\xc2\x7e\xc6\xf7\x64\xb3\xaf\xf8\x9f\x2f\x3a\x05\x5f\x57\x3d\xef\x28\xbc\xf4\xaf\x38\x0f\xf1\xf1\xb3\x17\x1f\xc7\x6d\xd7\xc1\x4f\x1f\xea\x6e\xa8\x5e\x77\x76\x92\xfb\xa7\xd2\x2b\xdf\x44\x4c\x10\xab\x15\x32\x41\x9a\x30\xfd\x9f\xee\xa2\xa4\xb4\xe8\x88\x77\x5f\xe4\xf4\x5e\x08\x23\x8b\xb1\xfc\xac\xfa\x17\x6b\x29\xaa\x67\x04\x24\x95\xd1\x7f\x89\xe3\x46\xf5\xe2\xe8\x7b\xa0\x0b\x1f\x26\x84\x73\xa2\xdf\x6e\x6c\xa3\x0e\x8f\xb5\xb5\xfb\xd7\x63\xb7\xbc\x67\xa8\x8d\x7c\xa6\x01\x12\x83\x50\xfa\xa5\x6d\xec\xd3\xe4\x93\x9a\x79\x8c\x0b\x26\x33\xed\xa2\xa6\xad\xf4\x0b\xaa\x9a\x44\xef\x49\x4b\x67\x51\x88\x5f\x95\xea\x56\xca\xd4\x31\x54\x76\x03\x5d\x5b\xcd\x7c\xba\x4e\xa6\x92\xe0\x00\xe9\xfd\xdb\x89\xf4\x14\xb0\x73\x0b\xbd\x3d\xb9\x75\x15\xbc\x3d\xf5\xd0\xfd\xee\xf4\x79\xd4\xdd\x53\x60\x3f\xa9\x87\xbb\xd4\x4d\xa4\x7b\x8d\xc9\x8d\xcc\xa1\x9b\xd1\x97\x8a\x10\xc6\x0f\x29\x4f\x49\x31\x5e\x0f\xef\x18\x84\x28\x4c\xbd\x64\x2d\xa8\xb4\x8e\xe6\x90\x36\x1e\x73\x0a\x60\xd0\x37\xf6\x81\xa9\x1d\x69\x6e\xac\x29\x0c\x92\xf2\x57\x08\xb5\x13\xb9\x1f\xa7\x12\x03\x3c\x56\xd6\x48\x10\x21\xd1\x4b\x6f\x04\xa3\x3a\xa6\x56\xf8\x66\xd8\x98\xe7\xd2\x6d\x6a\xaa\x84\x36\xb4\xb8\x29\xf7\x21\x35\xae\x2b\x04\x33\x65\xc9\x94\x87\x8d\x5c\xa1\x55\x36\x1a\x8e\x91\x35\x75\xc2\x54\x9a\xa8\x16\x4b\xf8\x31\xb7\xf6\x7c\x2f\x79\x4a\xe8\x7d\x79\x79\x79\x92\xff\xa6\x3b\x16\xaf\x56\x98\x8b\xad\x54\xec\xb4\xa2\xa7\x2d\x5a\xb5\x2a\xa4\x4e\x2e\x35\xbb\xd9\xc7\xd1\x48\xaa\xaa\xac\xe1\xba\x0f\x3f\x1f\xac\xef\xe9\x49\x37\x50\x73\x6a\x75\x2f\xce\x1f\x58\x93\xbc\x83\x9a\xe1\xe5\xce\x65\xdc\xf0\x24\x25\x3d\xcf\x2c\xb7\xe3\x05\xed\xb0\x8d\x4c\xf2\xf1\xfe\x2a\xb9\x89\x57\x94\xa9\x3e\x1a\xf5\x19\xb0\xb3\x55\x03\x67\x97\xdf\x9d\x16\xa7\x67\xc5\xe9\xd9\xfd\xe9\xe9\x9c\xff\xfc\xbc\xab\xb3\x53\x9e\xdf\x5a\x92\xd5\x78\x59\x9c\x9d\x17\x17\x67\xf7\xe7\x17\xf3\xd7\x97\xf3\xd7\x97\x3f\x4f\xf4\xf9\xb4\x4a\xfe\xef\xdb\x2f\x54\x49\xbe\x26\x38\x98\xaa\x8a\xe4\x19\x07\x67\xb2\x46\x1e\x0c\xd1\x03\x69\xe3\xc5\x19\x25\x7f\x1f\x7a\x51\x46\xb9\x4b\x7b\x36\x98\x2f\x06\x32\xa9\x90\xe7\x1c\xb5\x45\xf0\xe1\x38\x1e\xbe\x4b\xed\xeb\x66\x4b\x88\xe1\x4b\xd5\x76\x9e\x49\x21\x44\x31\xac\x35\xa4\xaf\xae\x72\xa4\xb8\x0f\xf7\xdc\x39\x24\xe8\x86\x60\xf7\xa1\xed\x61\xdc\x1b\xb6\x3d\x21\xe5\xf0\x25\xf2\x01\x29\xa7\xc2\x64\x10\x18\xe5\xf1\x91\x9b\xd4\x3a\x6a\xdd\xbf\x44\xb2\x94\x6e\x9e\x90\x2b\x65\x9b\xe7\x4b\x95\x88\x52\xd0\x24\xf9\x5e\x22\xd0\xe6\xc3\xea\x13\x42\x6d\x3e\xb5\x3e\x5f\x30\xe1\xc6\x26\xae\x73\x96\xbb\x7a\x5b\xc3\x02\x09\xde\x1e\xcc\xca\x8f\x08\xbb\x97\x91\x9f\x90\x79\xef\x1b\xec\x97\xe8\x74\x60\x9a\x2e\x9e\x77\xfd\xf6\xf9\xe2\x1f\x8c\xf4\x7d\xac\x29\x60\xef\x1b\xfc\x81\xbd\x1e\xdd\x0a\xe5\x1c\x82\x8b\x69\x95\x0f\xd6\x89\x25\x4e\x47\xe2\x62\xf3\x61\x05\x7e\xff\xe3\xc8\x07\x11\x22\x9b\x59\x54\x54\x26\xa3\xbc\xd9\xfd\xa5\xc3\xf1\x31\xbf\x0c\x3f\x5a\xe0\x57\x02\x35\x95\x7e\xd3\x01\xbf\xfc\x7a\x94\x58\xa1\xfc\x69\xf8\x89\x01\x0d\xfe\x37\x00\x00\xff\xff\x61\x8c\x1e\xdb\x4d\x22\x00\x00") - -func deployManagedCommonAppsOpenClusterManagementIo_subscriptionreports_crd_v1alpha1YamlBytes() ([]byte, error) { - return bindataRead( - _deployManagedCommonAppsOpenClusterManagementIo_subscriptionreports_crd_v1alpha1Yaml, - "deploy/managed-common/apps.open-cluster-management.io_subscriptionreports_crd_v1alpha1.yaml", - ) -} - -func deployManagedCommonAppsOpenClusterManagementIo_subscriptionreports_crd_v1alpha1Yaml() (*asset, error) { - bytes, err := deployManagedCommonAppsOpenClusterManagementIo_subscriptionreports_crd_v1alpha1YamlBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "deploy/managed-common/apps.open-cluster-management.io_subscriptionreports_crd_v1alpha1.yaml", size: 8781, mode: os.FileMode(436), modTime: time.Unix(1646042069, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _deployManagedCommonAppsOpenClusterManagementIo_subscriptions_crd_v1Yaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x3c\x7f\x6f\xe3\x36\x96\xff\xcf\xa7\x78\x48\x0f\x98\x0e\xd6\x96\x3b\xed\x2d\xee\x2e\xb8\xbb\x45\x3a\x3f\x76\x73\x3b\x9b\x19\x4c\xd2\xed\x01\x9d\x62\x40\x4b\xcf\x36\x1b\x89\xd4\x92\x54\x1c\xb7\xd7\xef\x7e\x78\x8f\x94\x2c\xdb\xa2\xa4\x38\x93\x76\x16\x08\xff\x49\x2c\x91\x8f\x8f\x8f\xef\x37\xf9\x24\x4a\xf9\x77\x34\x56\x6a\x75\x0a\xa2\x94\x78\xeb\x50\xd1\x2f\x9b\x5c\xff\xbb\x4d\xa4\x9e\xdd\x3c\x7f\x72\x2d\x55\x76\x0a\x2f\x2a\xeb\x74\xf1\x1e\xad\xae\x4c\x8a\x2f\x71\x21\x95\x74\x52\xab\x27\x05\x3a\x91\x09\x27\x4e\x9f\x00\x28\x51\xe0\x29\xd8\x6a\x6e\x53\x23\x4b\xc7\x80\x44\x59\xda\x44\x97\xa8\xa6\x69\x5e\x59\x87\x66\x5a\x08\x25\x96\x58\xa0\x72\x89\xd4\x4f\x6c\x89\x29\x8d\x5d\x1a\x5d\x95\x84\x45\x7f\x77\x3f\x89\xa5\x11\x00\x1e\xb5\xcb\xd6\x7c\xfc\x38\x97\xd6\xfd\xf5\xe0\xd5\x1b\x69\x1d\xbf\x2e\xf3\xca\x88\x7c\x0f\x4f\x7e\x63\x57\xda\xb8\x8b\x2d\xfc\x29\xa3\x53\xcd\xfd\x4b\xa9\x96\x55\x2e\xcc\xee\xc0\x27\x00\x36\xd5\x25\x9e\x02\x8f\x2b\x45\x8a\xd9\x13\x80\x1b\x4f\x55\x86\x33\x05\x91\x65\x4c\x2c\x91\xbf\x33\x52\x39\x34\x2f\x74\x5e\x15\xaa\x99\x25\xc3\x06\xde\x2e\x74\xb0\x4e\xb8\xca\x23\x07\xf0\x93\xd5\xea\x9d\x70\xab\x53\x48\xfc\xf3\xa4\x5c\x09\x8b\xe1\xad\x27\xfe\x65\x7b\x80\xdb\x10\x62\xd6\x19\xa9\x96\x61\xaa\x16\x8c\x7a\xe7\x92\xd4\xa0\xa0\xd9\xae\x64\x81\xd6\x89\xa2\xdc\x81\x78\xb6\xc4\x1d\x70\x99\x70\x78\x08\x8c\xb6\x31\x29\x73\x91\xfa\x9d\xca\x75\x2a\xf2\x1d\x30\x6f\xe8\x09\x34\x3d\x76\x40\xce\xb5\xce\x51\xa8\x08\x54\x27\x0b\x5c\x4b\x95\xe9\x75\xe2\xff\xd0\xa0\x1d\xd8\x84\x38\xf8\x77\xb1\x95\xfb\x8e\x37\xcf\xfd\x56\xa6\x2b\x2c\xc4\x69\xe8\x4b\xdc\x76\xf6\xee\xfc\xef\xdf\x5c\xee\x3c\x86\xdd\x6d\x69\xb3\x12\x48\x0b\x6e\x85\xe0\x07\xc0\x42\x1b\xfe\xb9\xc3\x50\x70\xf6\xee\xbc\x81\x54\x1a\x5d\xa2\x71\xb2\x66\x2c\xdf\x5a\xd2\xd7\x7a\xba\x37\xef\x53\x42\xcd\xf7\x82\x8c\xc4\x0e\xfd\xdc\x81\xc3\x30\x0b\xab\x01\xbd\x00\xb7\x92\x16\x0c\x96\x06\x2d\x2a\x27\x1a\x81\xd8\x36\xbd\x00\xa1\x40\xcf\x7f\xc2\xd4\x25\x70\x89\x86\xc0\x10\xdf\x57\x79\x06\xa9\x56\x37\x68\x1c\x18\x4c\xf5\x52\xc9\x9f\x1b\xd8\x16\x9c\xe6\x49\x73\xe1\xd0\xba\x3d\x98\xcc\xd1\x4a\xe4\x70\x23\xf2\x0a\x27\x20\x54\x06\x85\xd8\x80\x41\x9a\x05\x2a\xd5\x82\xc7\x5d\x6c\x02\x7f\xd3\x06\x41\xaa\x85\x3e\x85\x95\x73\xa5\x3d\x9d\xcd\x96\xd2\xd5\x5a\x27\xd5\x45\x51\x29\xe9\x36\xb3\x54\x2b\x67\xe4\xbc\x72\xda\xd8\x59\x86\x37\x98\xcf\xac\x5c\x4e\x85\x49\x57\xd2\x61\xea\x2a\x83\x33\x51\xca\x29\xa3\xae\xbc\xc6\x29\xb2\x2f\x4c\xd0\x53\xf6\xe9\x0e\xae\x07\x5c\xe1\x1b\xab\x91\x9e\x1d\x20\x5d\x42\x5b\x2e\xc2\x50\xbf\x8a\x2d\xa1\xe9\x11\x51\xe7\xfd\xab\xcb\x2b\xa8\xa7\xe6\xcd\xd8\xa7\x3e\xd3\x7d\x3b\xd0\x6e\xb7\x80\x08\x26\xd5\x02\x8d\xdf\xc4\x85\xd1\x05\xc3\x44\x95\x95\x5a\x2a\xc7\x3f\xd2\x5c\x6e\x45\xa7\x6e\xb6\x9a\x17\xd2\xd1\xbe\xff\xa3\x42\xeb\x68\xaf\x12\x78\x21\x94\xd2\x0e\xe6\x08\x55\x49\x02\x9b\x25\x70\xae\xe0\x85\x28\x30\x7f\x21\x2c\x3e\xf8\x06\x10\xa5\xed\x94\x08\x3b\x6e\x0b\xda\x56\x64\xbf\xb3\xa7\x5a\xeb\x45\x6d\x32\x22\xfb\xd5\x96\xd4\xcb\x12\xd3\x1d\xb1\xc9\xd0\x4a\x43\x8c\xed\x84\x43\x12\x87\x03\xeb\x51\xb7\x6e\x99\xa5\x96\xae\x84\x52\x98\xef\x3f\x8e\x2e\x8e\x71\xc6\x54\xab\x4c\x98\xcd\x8b\x23\x06\xaf\xb4\xbe\xb6\x98\x1a\x74\x06\x17\x87\x23\x77\xb9\xf5\x2d\x93\xeb\x3d\x2e\xd0\xa0\x4a\x91\xa4\xda\x09\xa9\x2c\xa0\xd2\xd5\x72\xc5\x9b\x6e\x0a\x56\x0e\x24\xd6\x39\x3a\xd8\xe8\xea\x00\x28\xc9\x35\x11\xda\x81\x36\x50\xe8\x4c\x2e\x36\x4c\x40\x43\x80\x89\x82\xb5\x12\x99\x4e\xa7\x70\x81\x6b\xa8\x2c\xda\x46\x09\xb5\x54\x74\xbb\x09\x83\x90\x49\x9b\xea\xca\x88\x25\x66\x30\xc7\x54\x54\x96\xf7\x21\x93\x8b\x85\x4c\xab\xdc\x6d\xc2\x7a\xe6\x24\x56\xc4\xd8\x95\x15\x4b\x84\xf5\x0a\xf7\x95\x19\x35\x2c\xe6\x98\x65\x98\x81\x54\xa4\x71\x6d\x02\xf0\x3c\x81\xf3\xa5\xd2\x84\xe3\x42\x62\x9e\xd1\xb3\x73\x07\x52\xa5\x79\x95\x21\x89\x9a\xda\x84\x37\xb0\x5e\xc9\x74\x15\x41\x94\x04\x68\x89\x0a\x8d\xc8\xf3\x0d\xac\x34\x83\x4c\x00\x5e\x6b\x43\xb4\x71\x42\xa5\x38\x81\xda\x25\xaa\x75\x34\x69\xbf\xd7\x04\x9c\x4c\x58\x04\xf2\x5c\xbb\x15\x29\xf0\x0d\x18\x61\x30\xdf\x90\x42\x91\xbc\x04\x91\xba\x4a\xe4\x7e\xc9\x09\xc0\xd7\x24\xb6\xfe\xa5\xa7\xc2\x0a\xf3\x92\x97\xd3\xb5\x5f\x16\x64\x51\x6a\x6b\xe5\x3c\x47\xda\x5a\x91\x65\x2c\x2b\x72\x21\x53\x1e\xc9\x96\x4a\xaa\x4c\xde\xc8\xac\x3d\xcd\xb9\x82\x42\x1f\xe8\xf5\x1d\xf2\x72\x57\x3b\x21\x16\x30\xc8\x8b\x28\x85\x71\xb4\x61\xc2\x70\x4f\x83\xc4\xba\xa9\xb7\x7d\xb9\xbc\xc6\x09\x9c\x14\x55\x27\x50\x66\x21\xd0\x2a\xdf\xb0\x5d\x21\x55\x01\x67\x4c\xb8\x6f\x4f\x88\xdb\x4e\xbe\x3b\x7f\xc9\xd4\x0f\x34\xf7\x0f\xc9\x82\x43\x04\xe2\x1c\x9b\xf9\x31\x3b\x49\xf8\xd9\xd5\x4a\x5b\x84\xb4\x51\x84\x6b\xcc\xf3\x9a\xb5\x30\x63\x7e\x6a\x96\x97\x00\x7c\x93\x74\xc0\x3d\x57\xa9\x56\x56\x5a\x87\xca\xf9\x4d\x62\xb9\x49\x00\xbe\x0d\x9c\x4b\x22\xe1\x69\x13\x98\x7b\xc1\x72\xe7\x98\x52\x1d\x10\xb7\x40\xc0\x54\xf9\xfe\x28\x98\x6f\x3c\xb4\x89\xe7\x4c\x28\xc4\x35\x5a\x90\x0e\x56\xc2\x64\xb4\x7d\x1d\x20\x2b\x4b\x06\xc4\x69\x28\x0d\x66\x32\x75\xb0\x5e\x09\x07\x6b\x99\xe7\xb0\x12\x65\x89\x84\xee\xbf\x26\x70\xb5\xc2\x9a\xeb\x1b\x1e\x94\x45\x69\x30\x95\xb6\x53\x56\x55\x06\xfa\x06\x4d\xbe\x81\xd0\x29\x01\xa8\x4d\x21\xd1\x54\xd4\xcf\xa1\x10\x65\xc9\x46\x50\x83\x80\xef\xde\xbf\xa1\xc9\x0e\x8c\x1f\xb5\x54\x28\xd2\xab\x59\x95\x22\x88\x62\x2e\x97\x95\x74\x1b\x7e\x93\x55\x6c\x59\xd9\x97\x28\x0d\x7a\xe7\x85\x71\x20\xbb\x26\x89\xe7\xd8\xbe\x76\x00\x0d\xb3\x6f\xf9\x18\x52\x61\x03\xaf\x42\x86\x25\xaa\x0c\x55\xba\x21\xb4\x49\xe5\xad\xd0\xc7\x1a\x93\xda\x52\x77\x80\x74\x55\x99\x63\x43\x85\x96\xbb\xe5\x15\x1c\xd6\x72\x6a\x9d\xa9\x52\xc7\x92\x67\x0c\xe6\x78\x23\x94\x4b\x00\xfe\xd8\xc5\x4b\xdf\x37\xcc\x88\xc2\xca\x7c\xc3\x66\x64\x89\x20\xdd\x0e\x3b\x05\xe5\x49\x30\xdb\xba\x8d\x94\x56\x07\x50\xf2\xb3\x59\xe4\x26\xc1\xd0\x07\x57\xad\x86\x42\x8d\x39\x41\x2c\x16\xa4\xcb\x55\x55\xa0\xd1\x95\xad\x1d\xbb\x04\xe0\xa5\x56\x4f\x9f\x76\x09\x15\xf1\x1e\x28\x5c\xb3\x5e\xf5\xc8\x90\xf3\x58\xa9\x0c\x4d\x50\x2b\x98\xd1\x4b\x3f\x95\x5b\xe1\x06\x32\xcd\xac\xc1\x5e\x83\xce\xbb\x45\xca\x3a\x14\x19\x11\xb2\xb2\xde\x73\x0a\xc8\x4e\x80\x03\x11\xda\x69\x0e\x1f\x98\xf1\xf4\x8d\xcc\x78\x5e\x52\x41\x98\xc5\x0c\x8b\x23\x96\x97\x96\x85\x7c\xba\xd0\x29\xf7\xd5\x8a\x2c\x9b\xf1\xfa\x86\x6c\x61\xc2\xba\x1b\x6f\x45\x51\xe6\x38\x61\xdf\x4b\xa6\xd8\x98\xca\x2e\x8e\x25\x8d\x29\xb2\x42\x5a\xde\x7d\x83\x4b\x69\x9d\x11\xde\xd4\xb6\x1c\xa7\x55\x35\x4f\x52\x5d\xcc\xae\xab\x39\x1a\x85\x0e\x2d\x79\x45\xb3\x79\xae\xe7\x33\x62\x0c\x61\x71\xfa\x3c\x79\xfe\x6f\xb3\x06\x56\x1b\xd4\xec\xe6\xf9\x8c\xd5\x60\xb2\xd4\x5f\xbc\xf9\xe3\x37\xdf\x74\x20\x92\x3c\x3d\x78\x18\xf7\x50\xa0\x27\xba\xa8\xdb\x8e\xd7\x40\xbb\xb8\xc7\xe2\x81\x6a\xae\x6b\x13\x7b\xbd\x15\x26\x5b\x6d\x01\x47\xcc\xfd\xf4\x7c\x11\xbc\x8a\x46\x87\x94\x12\x53\xdc\x09\x56\xd8\xe2\x7a\xbe\xe9\x84\x48\x92\x0a\xe4\x80\x1a\x0c\x23\x26\x9e\xb3\x82\xcb\xbe\x0d\x71\xc8\x19\x02\x11\x4c\xee\xff\x5c\xbe\xbd\x98\xfd\x59\x47\x40\xf2\x2a\x40\xa4\x29\x5a\xeb\x3d\xc6\x82\x55\xbb\xad\xd2\x15\x08\x5b\x3b\x93\x14\x73\x63\x52\x08\x25\x17\x68\x5d\x12\xe6\x40\x63\x7f\xf8\xfa\xc7\x6e\xea\xc1\x2e\x23\x4a\x4f\xf1\x26\x3c\xa8\x5d\x37\x69\x3d\x39\x1a\x88\xb0\x96\x6e\x25\xbb\xfc\x20\xa6\x00\x94\x3a\x0b\xcb\x5e\xf3\x72\x1d\x89\xb0\x0e\xcb\xad\x90\xed\xf2\x29\x9c\x70\x58\xbd\x45\xf3\x17\x32\xad\xbf\x9e\x44\xa0\x7e\xb9\x66\x93\xcf\xf6\xf7\xc4\x23\xd7\xc4\x83\x6c\x93\x03\xbf\x6c\x91\x64\x61\x74\x46\x2e\x97\x68\x38\x1b\xd2\xd5\x38\xb8\xa1\x90\xe1\x19\x59\x77\xb9\x00\xa5\x5b\x20\x18\x30\xed\x5e\xa3\x67\xf6\x91\xfe\xe1\xeb\x1f\xa3\x18\xef\xd2\x8b\x3c\x1e\xbc\x85\xaf\x49\x8d\x32\x6d\x4a\x9d\x3d\xf3\x26\x0a\xec\x46\x39\x71\x4b\x33\xa5\xe4\x2e\xc4\x28\x5b\xfb\x2a\x2b\x71\x83\x60\x75\xe1\xbd\x89\xa9\x0f\x2c\x32\x58\x8b\x0d\x51\xa1\xde\x38\xe2\x37\xc1\xfe\x51\x2f\xb7\xd6\x0e\xf4\xd5\xdb\x97\x6f\x4f\x3d\x66\xc4\x50\x4b\x55\x1b\xd8\x85\xa4\xa8\xda\x5b\x20\x8a\x09\x99\x1b\x3b\xed\x2a\xf8\x38\x90\xd9\xc7\xe9\xc6\xb2\x78\x6b\xb7\xa8\x28\x4a\xeb\xd0\x1f\x30\x2c\xc7\x87\xa1\x71\xdd\x3a\x42\xe4\x7d\xc5\xf1\xbb\x05\x99\x23\x17\xc7\x39\xa1\x11\x8b\xbb\x68\x71\x79\xef\xe2\xb6\xda\x9f\xd6\x97\xe9\xd4\xd2\xd2\x52\x2c\x9d\x9d\x91\x2b\x75\x23\x71\x3d\x5b\x6b\x73\x2d\xd5\x72\x4a\xac\x39\xf5\x3c\x60\x67\x9c\xd4\x9c\x7d\xc1\x7f\x8e\x5e\x0b\x67\x1f\xc7\x2e\x88\x3b\xff\x16\xab\xa2\x79\xec\xec\xa8\x45\x99\xdd\xd8\x6a\xcc\xd2\x2e\xeb\x78\x67\x6f\x2c\x89\x85\x77\xa9\x43\x92\x2c\xe8\xd8\x88\x30\x49\x0a\x13\x33\xaf\x9a\x85\xda\x3c\x38\x2b\x13\x41\x2b\x43\x18\x6d\xa6\xc1\x79\x9a\x0a\x95\x4d\x9b\xf0\x23\xdd\x1c\x45\xc1\x4a\x8e\x12\x5f\x0a\xb8\x7e\x13\x06\xaf\xe4\x51\xb2\x1a\x49\x04\x41\x54\x88\x77\x96\x77\xa5\x83\x1d\xd9\xc0\x73\x28\x45\x7a\x2d\xbc\x72\x0c\x79\x9c\xbb\x64\x62\x68\x91\x46\x66\x5d\x1e\xd7\xce\x94\xe4\x36\xae\xaa\x39\x70\x72\x23\x18\x8f\x1a\x07\x36\xf5\x35\x1c\x1f\x87\x8a\xb2\xcc\xbb\xdc\x7b\xd2\xe5\xfe\x18\xe4\x50\xeb\x4b\x87\x45\xa7\xe3\xb7\x83\xc8\xdb\x66\xa2\x60\x3e\x14\x85\x44\xb9\xde\x88\x79\xde\xc5\xfc\xfd\x3e\x25\xd4\xe8\x5c\x44\x55\xe7\x20\x4b\x36\x30\xde\xc6\x69\x39\xb0\xc2\xf6\x3c\x9d\x4c\xb1\x6d\xb7\xd3\x2d\xcf\x4e\x39\xed\x6a\x6e\x70\x5a\xa9\x6b\xa5\xd7\x6a\xea\xe3\xe1\x53\x70\xa6\x8a\x69\x82\x42\xaa\x73\xc6\x03\x9e\xf7\xae\x57\x18\x23\xba\xb6\x30\x84\xaf\x9d\x62\x38\x6d\x93\xb3\xef\x7d\x43\xaa\x2e\x1e\xe9\x23\x43\x1c\xb7\x20\x07\xaf\x65\xee\xd0\x8c\x17\xa0\x82\x94\x82\x5b\x09\x35\x4e\x94\x06\x42\x14\x0a\x87\x7d\xfc\xda\xbd\xcd\xed\x83\xb3\x7e\xbe\x1c\xc1\x76\x03\xfc\xb2\x60\x4a\xbc\xef\x4a\xb0\x1e\x10\x84\x0f\xb3\xee\x90\x68\x8d\xa1\xdc\xa4\x5f\x7d\x20\x8f\x6d\x0d\x9c\x36\x39\x56\x8a\x7d\x64\xe6\x5f\x5a\xf2\x45\x1a\xbb\xda\x1d\x5d\x0c\xc9\x70\x9f\xe7\x73\xb0\xd4\xdf\xda\xfb\x89\x62\x05\xc1\x51\x3e\xcb\x32\xd0\x6e\x85\x86\x94\xeb\xa2\xca\x9b\x24\xef\x36\xe0\x9d\xb0\xdf\x3a\x21\xeb\xf7\xa7\x6e\x6b\x03\x9f\x80\x61\x72\x31\xc7\xfc\x12\x73\x4c\x9d\xee\x90\xa0\x03\x4a\x9e\xf9\x11\x60\xc3\x10\x7f\xa4\xe4\x9f\xfd\xa3\x42\xb3\x61\xab\x00\x02\x2c\x3a\x1f\x4e\x84\x43\xac\x58\x0c\x79\xc5\x3b\x62\xab\x9c\xbb\x17\xc2\xa5\xab\x37\x04\xcd\x86\x23\x38\x97\xae\x5e\xdd\x92\xce\xe3\xa3\x68\xce\xfa\x9d\x5d\xbc\xc4\x2c\x81\xb3\x18\x47\x62\x51\xba\xcd\x3e\x9e\x0c\x09\x2d\x88\x3c\x0f\xd4\xb0\x09\x9c\x81\xaa\xf2\x7c\xaf\x6b\x4c\x87\x06\x00\x4a\x37\xe3\x8f\x64\xdc\xfd\x45\x8d\x64\xe2\x03\x5a\x78\xd2\x4b\xcb\x94\x1b\xb5\x06\xd8\xea\xf2\xc2\x1f\xdd\x79\xf2\x6f\x9f\xb4\x08\x1c\x85\x31\x60\xd2\x86\x38\xa6\x35\x5d\x38\x90\x1c\x46\x3a\x24\xc7\x1a\xed\xe4\x8f\x60\x27\x20\xe0\x1a\x37\xfe\xb4\x96\x82\xd1\x12\x8d\x70\x3a\x04\xef\x06\xf9\xa4\x77\x00\x2a\x12\x04\x06\x10\x8e\x75\x7b\xfa\x0f\x6f\xad\x6f\xd7\xb8\xe9\xef\xb0\x47\x22\xc2\x20\x9c\xc6\x7b\x5a\xd1\x03\x9f\x80\x20\x6d\x39\x86\x3c\xc0\xc9\xb2\x32\x97\x9c\x3c\xed\x5b\x04\x8c\xd1\x1a\x75\xab\x29\x7a\xa7\xe5\x34\xdb\xb0\x3d\x23\xf6\x1b\xf5\xd4\xfa\x4d\x21\xee\x5d\xc9\x72\x70\x41\x9c\x37\x0a\x8a\xa4\x3e\x74\xff\x3b\xa7\xbc\xea\x29\x3c\xbf\x9e\xab\x09\x5c\x68\x77\xae\x26\x83\x20\x5f\xdd\x4a\xeb\xbc\x6e\x79\xa9\xd1\x5e\x68\xc7\x4f\x3e\x19\xc1\x3c\x9a\x77\x22\x97\x1f\xc2\xa2\xa0\xbc\x97\x43\xeb\x6d\x9f\xd2\xdb\x04\xce\x63\x39\x98\x16\x8e\xe4\x92\xd7\xa4\x97\x16\xce\x15\x68\x13\xe8\xe2\xd3\xff\x7e\x22\x3f\x45\xe4\x10\x6a\xb7\xcd\x11\x94\x56\x53\x56\xa8\x84\xc3\xc1\x1c\x81\x9c\xda\xec\x50\x73\x78\x1b\x3a\xd1\xa1\xe9\xc2\x54\x9c\xd7\xf2\x6f\xfc\x6d\x90\x3c\xdc\x49\x1a\xa0\xab\x3f\x80\xe1\x3b\x0e\xc2\xe1\x52\xa6\x50\xa0\x59\x22\x94\xa4\x3b\x87\x36\x79\x50\xaf\x05\xdc\xc7\xf2\xc2\x90\x57\x5d\xb7\x3e\xef\xba\x6e\x53\x92\x9f\xde\xf7\xf5\xb6\xf4\x74\x1a\x15\x6c\x0c\xe3\xdc\x32\xd2\x71\x94\xef\xe2\xf5\xc2\x58\xaa\x1e\xda\xc3\xe0\x2b\xb0\x1d\x29\x44\x49\x92\xf3\x0b\x99\x04\x66\xae\x5f\xa1\x14\xd2\x90\x9d\xef\x99\xd8\x4a\xb5\xcc\x71\x67\x54\xc8\x39\xb6\x27\x20\xd8\xd2\x02\xed\xd4\x8d\xc8\x0f\x2f\xb0\xec\x2c\x45\x73\x1e\x3f\xf7\x26\xae\xf6\x6a\x5a\x96\x7b\x02\x6b\x3e\xd7\x25\x35\x5f\x27\x44\xe1\xe4\x1a\x37\x27\x7d\x92\xb3\x2f\x7b\x27\xe7\xea\x64\xb2\x3d\xdb\x6b\x4b\x53\x63\x27\x29\x6c\xef\x01\x79\xc2\xa3\x4e\x8e\x73\x03\x06\xb9\x69\xa0\xc3\x4d\x5f\x42\xac\x14\xce\xa1\x51\xa7\xf0\xe5\x0f\x5f\x4d\xff\xe3\xc7\x3f\x3c\xfb\xf2\xcb\x0f\x49\xfd\x6f\xf3\xdf\xff\x6d\xff\xfd\x13\xfd\x7b\xfb\xbf\x3f\x3e\x7b\xf6\x2f\x9f\x34\x35\x13\xe2\xc3\x9e\x38\x7f\x3f\xca\x0c\xe7\x7d\xb0\xc8\xf1\x56\xce\x65\x2e\x1d\x67\x4e\xea\x6c\xc9\x98\x88\x13\x7c\xce\x9f\x4f\x10\x41\xaa\xb2\x3a\xa4\xdf\xef\x93\x39\x09\xb8\x9f\xe5\x52\x1c\x1f\xc3\x06\x20\xf7\x4a\xbf\x0c\x6f\x8b\x6f\x9f\x45\xfa\xe5\x3e\xc9\x95\x16\xb1\x3e\x5d\xde\x44\xe4\xb9\x5e\x0f\x73\x32\x77\x0b\x0c\x53\xeb\x32\x8a\x37\x30\xdb\xc6\x75\x47\x32\xe6\xa5\xf7\xea\xb6\x84\xf5\xf7\x19\xb6\x70\xfd\xe4\x98\x91\xe8\xcc\x31\x20\xd1\xe9\x02\x0c\xf1\xec\xd0\x19\xf2\x08\x6e\xe3\xe3\x99\x7b\xb1\x58\xaf\x61\xbb\x0f\x7f\x6c\x57\xd7\xf9\x9a\x31\xff\x74\x8c\x93\xa1\xea\x08\x6d\xf6\xf9\x86\x7a\xfd\x5e\x6c\xc3\x97\x7a\x1e\x59\xc7\xb7\xcf\x89\x75\xd6\xe4\x04\xfd\x05\xf3\xa2\x39\xb8\xbb\x4c\x75\x89\x59\x7d\xf7\x70\xc8\xb2\x7e\x3f\x34\x9e\x7c\x22\x7f\xbd\x46\x03\x2a\x32\x70\x7e\x4e\x8a\x08\x9a\x64\xa3\x2f\x74\x00\x82\x43\xd6\x97\x2f\x8a\xc7\x58\xf2\xf0\x5e\xff\xb6\x35\x35\x00\x03\x58\xbf\xde\x3b\x43\x99\xb4\x0f\x51\xfc\x59\x5e\x7d\x38\x42\x6f\x96\x1a\xdc\xe1\x45\x8e\x7e\x36\x0d\xe3\x1f\x93\x78\x8f\x49\xbc\xc7\x24\xde\x63\x12\xef\xb0\x3d\x26\xf1\x02\x26\x8f\x49\xbc\xc7\x24\x5e\x8d\xfb\x63\x12\xef\x31\x89\xf7\x98\xc4\xbb\x77\x12\xaf\x76\x5e\xbb\xb9\xa2\x57\x18\x77\xf8\xe0\xcf\xa8\xd0\xc8\xf4\x85\x07\xb7\xbd\x8f\x30\xe5\x82\xa2\x5c\x2e\x15\xef\x03\xa7\xc5\x28\xfa\x5b\x44\x15\xc9\x18\xfb\xde\x7f\x75\x60\x14\x1f\x0f\xc9\xfb\x94\x27\xe9\x8d\xda\x06\xa9\x1e\x93\x5f\xce\x0b\x76\x4f\xdc\x17\xb3\x40\x3b\x6e\x19\x77\x47\xe4\x88\x42\xbc\xc8\x92\x37\xba\xba\x4f\x31\x5e\x0f\x21\xef\x51\x90\x17\x81\xba\x53\x56\x75\xc7\xa2\xbc\x08\xc8\x76\xa9\xde\xf1\x85\x79\x11\xe0\x3b\xe5\x7a\x77\x2d\xce\x8b\xc0\x8c\x94\xec\x8d\x2c\xd0\x8b\xe5\x3b\xa2\x65\x7b\x47\x16\xe9\x45\xe6\x69\x95\xee\xdd\xbd\x50\x2f\x02\x73\xa7\x7c\xef\x88\x62\xbd\x31\xbc\xc6\x25\x7c\x77\x2a\xd8\x8b\x71\xc4\x41\x19\xdf\xe8\xa2\xbd\x28\x9e\x9d\xa5\x7c\x23\x0b\xf7\x7a\xf2\x06\xd1\x72\xbe\xc1\xe2\xbd\xd8\xda\x07\x4a\xfa\x06\x0b\xf8\xa2\xcc\x3b\x50\xd6\xd7\x5b\xc4\x17\x35\x82\x83\xa5\x7d\xf1\x42\xbe\x18\xa7\x8e\x2b\xef\x8b\x15\xf3\x45\x73\x95\x63\x4b\xfc\x3a\x0a\xfa\x62\xea\xfb\xa8\x32\x3f\xe6\xc2\x08\xc4\x4f\x5e\xea\x07\xf7\x2e\xf7\xeb\x33\x5d\x0f\x56\xf2\x07\x9f\x53\xd9\x1f\x74\x97\xfe\xc1\x28\x6f\x6d\x38\x07\x7f\xdf\x32\x40\x18\xe7\xf1\x0d\x94\x03\x1e\xe0\x71\xa7\x92\xc0\x1e\x67\xd4\x77\xbf\x73\x59\x60\x0f\xc4\x50\x30\xf8\x90\xa5\x81\xf0\x40\xe5\x81\xf0\x60\x25\x82\xf0\x70\x65\x82\xf0\xb0\xa5\x82\xf0\x20\xe5\x82\x70\x8f\x92\xc1\x41\x6e\x3e\xaa\x6c\xb0\x07\x2a\x2d\xeb\xa8\xd2\x41\x18\x27\xfb\xf1\x12\x42\xf8\x27\x29\x23\x1c\xb9\xd0\xcf\xf8\x52\xfd\xbd\xd7\xd5\x53\x5a\xd8\xbd\xb8\xcf\xa2\xbc\x70\xe4\x02\x47\x95\x19\x1e\x2e\xf3\x13\x95\x1a\xc2\x3f\x53\xb9\xe1\x48\x8a\x46\xcb\x0e\x0f\xa9\xf8\x19\x94\x1e\x8e\x5a\xd4\x88\xa3\xfb\xce\x97\xdb\xaf\xd7\x0d\x1c\x77\x73\xfc\x4f\x21\x61\xed\x52\xfb\xf8\x76\xff\xc3\x72\xde\xcf\x67\xab\xed\x9d\xfd\x3b\x1e\x79\x67\x62\x63\xf5\x62\x8d\x78\x3d\x22\x87\x45\xdd\x68\x00\xd4\x66\x8b\x3f\xa9\xe2\x4d\x17\xfd\x4b\xef\xc3\xe7\xef\xc8\x19\x91\xd1\xac\x9d\xa7\xc0\x96\x97\x75\x2e\xd4\x32\xd1\x66\x39\x2b\xaf\x97\x33\x1a\x38\xfb\xe2\x7b\x3f\xd9\xdd\xb3\xa1\x23\xf7\x2e\x96\x12\x5c\xe9\xea\xfe\x49\xd8\xbf\xe8\xca\xbc\x67\xd3\x49\x8b\x01\x9f\xd9\x63\xd2\xa0\x20\x4d\xe0\xbf\x50\x98\xe7\x30\x47\xf8\xab\x74\x69\xf7\xd7\xac\x7c\xf3\x83\x27\x0d\xd1\x85\xeb\x27\x5c\x79\xbd\x64\xc9\x75\x42\xb9\x58\x40\x33\x26\xb5\x8b\x7d\x86\x7a\xe4\x09\x85\x75\xc2\x74\x5c\xec\xb8\x13\x94\x4f\x90\xe2\x75\xe3\xca\xc5\x6b\xb2\xa2\x4a\xd6\xf2\x5a\x96\x98\x49\xc1\xc4\xa5\x5f\xb3\x37\xd2\xba\x8f\x7a\xf1\xd1\xfd\xfc\x31\x13\x4e\xcc\x85\xc5\x8f\x44\xf1\x8f\x3f\x6b\x15\x89\x1c\x07\x56\xb7\xfd\x7e\xe5\x98\x04\xb2\x48\x9d\xbc\xc1\x9a\x77\x58\x80\xb4\x21\x17\xcf\x87\x04\x8d\x62\xe1\xd3\x1f\xee\x1b\xcb\x40\x39\xd2\x24\xfe\x32\x97\xe7\x42\xf6\x4e\xeb\xf3\xf2\x70\x6a\xe8\x56\x68\xeb\x89\x2c\x5c\x68\xc7\xf6\xa8\x27\x27\xbd\x16\x8a\x7d\x46\x9f\x8b\x65\xe5\x94\x9a\xcc\x3b\xd1\xf5\x41\xcd\xd4\x66\xd7\x70\xf3\x55\xf2\xfc\xab\xe4\xab\x89\xc7\x23\x9e\xd1\x59\xe8\x3c\xd7\x6b\xc2\x25\x97\x0a\xeb\xe0\x6c\x8e\xa7\xf0\x9f\x7f\x20\xfd\x3f\xaf\x64\x9e\xa1\x39\xdd\xe6\xe3\x4e\x5f\xa9\xaa\xf8\xaf\xb0\xf8\x79\xae\xd3\x6b\xcc\x26\x67\xfe\xe7\xb7\xfe\xe7\x7f\x77\x2b\x7d\x54\x55\xd1\xbd\x09\xd3\x40\xcc\xc8\xcb\x30\x4b\xe4\xed\x59\xdf\xd0\x6f\x7b\x86\x1e\x77\xc9\xba\xfb\x28\x65\xda\x79\x3b\x3a\xf6\x35\x45\xfe\x62\x6c\xcf\xf7\x14\x4f\x76\x3e\xa8\xc8\xbd\x77\x3e\xa9\xa8\xe7\x7c\xab\x77\xcc\x37\x15\x01\x5e\xf9\xa0\xd6\xc2\x34\x4c\xcc\x51\xcd\xae\x85\xd3\x8a\xef\x7d\xf9\xa9\x4e\xe1\x83\xe3\xcf\xdc\x9e\xc2\x3b\xa3\x4b\xb1\x14\xee\x80\x82\x1f\x9c\x87\x85\xdc\x1b\x60\x2d\xec\x2a\x4b\xe9\xff\x0f\x2e\x5c\x02\xb6\xfe\x17\x80\x5a\x4a\x75\xeb\x7f\x34\x80\x03\xbe\x87\x99\x66\x3f\xa4\xd0\x6a\xa9\xb3\xf9\xde\xa0\xd7\x42\xe6\x98\x85\x67\xef\x51\x58\xa2\xd5\x87\x13\xbe\x44\x59\xb9\x95\x36\xf2\x67\xcc\x3e\xec\x07\x9e\xbe\xfb\xdf\xd0\x5a\xb1\x44\xea\xcf\x16\xff\xf6\xf6\x16\x32\x1d\xae\x60\x72\xc4\x58\xa2\xa9\xb3\x4f\x4e\x7b\xad\x4a\x81\xe8\x87\x93\x00\xa1\xf6\x39\x2f\x3b\x76\x0f\xe0\x97\x5f\x79\xc3\xb5\xd1\xca\xe9\x63\xe8\xc0\xcf\xf7\x51\x8f\x10\xa2\x35\xea\xb2\x67\x4b\xfd\x77\x9c\xf7\x29\x1c\x0e\x41\x5b\x5a\x89\x97\xff\xbc\x79\xd1\x9c\x45\x97\xc9\x2e\x2d\xe3\x16\x4d\x28\x3e\x61\xf9\x49\xcf\x3b\x8c\x5d\xbf\x21\xcc\x85\x75\xa5\xb6\x6e\xa5\xf5\xf5\x4f\x7a\xde\x77\x50\x18\x55\xf2\x0c\xc3\xe0\x7d\x40\xb4\x50\xb0\x2b\x69\x9d\x36\x91\x0b\x55\x0f\xe9\x17\x6d\xd7\xf0\x7b\xe1\xd0\xe3\x08\x10\x91\xbf\xe3\x04\xf9\x95\xec\x0a\xbb\xbd\x0f\xe5\xbf\x56\x3d\xed\x74\x4c\x7b\x30\x2b\x82\x78\xde\x65\x8c\x17\x86\x7e\x17\xff\xe9\xf9\xc5\xe5\xab\xf7\x57\x70\xf6\xf2\xe5\xf9\xd5\xf9\xdb\x8b\xb3\x37\x70\x79\x75\x76\xf5\xdd\x25\xbc\x3e\x7f\xf5\xe6\x25\x7f\x09\x9c\xf4\xea\x9e\x4a\xed\xa0\x9b\x5e\x34\x02\x72\x5e\x94\xda\x90\xeb\x77\x0a\xef\x2b\x05\x27\x85\xb8\xc6\x13\x52\x1a\x06\x83\x61\x46\x48\x75\x46\xe1\x02\x75\xf7\xa7\xc7\xdd\xbb\x11\xf2\x45\x39\x1e\x9a\xcc\x9e\x95\x1b\xaf\xfb\xee\x32\xa4\x51\xd7\x07\x83\xc6\x5e\x9b\x89\x7e\xf1\xf7\x1d\x9a\x70\x13\x62\xcf\x54\x05\x73\x43\x2e\xb9\x8d\xdb\x27\xdf\xa4\xf2\x6e\x7b\xa0\xf1\xa4\xbe\xa1\x58\xd7\x1f\x45\xee\x27\x8c\x2c\x01\x8a\xe7\xeb\xef\x74\x67\x28\x4a\x82\xef\x94\x74\xdd\x8b\x67\xc5\x5c\x29\xd9\x97\x65\xfc\x72\x57\x71\x9b\x1a\xeb\x67\xd1\x31\xe3\xae\x85\x0e\x49\x6c\xbb\x0d\x4b\x6f\xbb\x8d\xbc\x90\x16\x95\xea\x23\x60\x45\xa4\xbd\xdd\x76\xb6\xe7\x1d\xf5\xe7\x83\xda\xad\x13\x43\x4e\xbc\xf4\xa7\x8b\xde\xe1\xd1\x26\xee\x89\xec\xb7\xf6\xd8\xfa\x1b\xe1\x9f\x62\x61\x31\x61\x3e\x0a\x54\x9f\x8b\xd2\x05\x72\xe0\x66\x1e\x7c\x8a\x82\xb2\x31\xd7\x0d\xa7\x7b\xcc\x3a\x90\x35\xea\x45\x7b\xa0\x4b\xef\xeb\x83\x72\x88\x7a\xa7\x27\x61\xf3\x39\x39\xd4\x88\x76\x5b\x70\x6b\x95\xd5\xa5\xa5\xbc\x3c\x93\x0e\x9b\xd4\x45\x16\x0c\x50\x2c\x97\x06\x97\xfc\x11\x59\x91\xe7\x01\x70\xa3\xfb\x6a\x7b\xd3\xa9\xfb\xa2\xcb\xe8\x7c\x71\xb8\x03\x53\x3e\xbe\x79\x12\x1d\xe5\xcd\x61\x6b\x63\xc9\x1f\x61\x0f\x7a\xfb\xa4\x9a\x9b\xfd\x7a\x98\x10\xdb\xc0\x2f\xbf\x3e\xf9\xff\x00\x00\x00\xff\xff\x7b\x8d\x6d\x64\xeb\x64\x00\x00") - -func deployManagedCommonAppsOpenClusterManagementIo_subscriptions_crd_v1YamlBytes() ([]byte, error) { - return bindataRead( - _deployManagedCommonAppsOpenClusterManagementIo_subscriptions_crd_v1Yaml, - "deploy/managed-common/apps.open-cluster-management.io_subscriptions_crd_v1.yaml", - ) -} - -func deployManagedCommonAppsOpenClusterManagementIo_subscriptions_crd_v1Yaml() (*asset, error) { - bytes, err := deployManagedCommonAppsOpenClusterManagementIo_subscriptions_crd_v1YamlBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "deploy/managed-common/apps.open-cluster-management.io_subscriptions_crd_v1.yaml", size: 25835, mode: os.FileMode(436), modTime: time.Unix(1661072854, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _deployManagedCommonAppsOpenClusterManagementIo_subscriptionstatuses_crd_v1alpha1Yaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x56\xcd\x8e\x23\x35\x10\xbe\xf7\x53\x94\x96\xc3\x5e\xe8\xce\xae\x10\x12\xea\x1b\x1a\x38\xac\x80\xd5\x68\xb3\x3b\x17\xc4\xa1\x62\x57\x12\x33\xfe\xc3\x55\x8e\x08\x88\x77\x47\xb6\x3b\x49\x27\x93\xcc\xc2\x20\x72\x8a\xcb\x55\xf5\x55\x7d\xf5\xd3\xee\xfa\xbe\xef\x30\x9a\x07\x4a\x6c\x82\x1f\x01\xa3\xa1\xdf\x85\x7c\x39\xf1\xf0\xf8\x0d\x0f\x26\x2c\x76\x6f\xbb\x47\xe3\xf5\x08\x77\x99\x25\xb8\x0f\xc4\x21\x27\x45\xdf\xd1\xda\x78\x23\x26\xf8\xce\x91\xa0\x46\xc1\xb1\x03\x40\xef\x83\x60\x11\x73\x39\x02\xa8\xe0\x25\x05\x6b\x29\xf5\x1b\xf2\xc3\x63\x5e\xd1\x2a\x1b\xab\x29\x55\xe7\x07\xe8\xdd\x9b\xe1\xeb\xe1\x4d\x07\xa0\x12\x55\xf3\x8f\xc6\x11\x0b\xba\x38\x82\xcf\xd6\x76\x00\x1e\x1d\x8d\xc0\x79\xc5\x2a\x99\x58\x21\x04\x25\x33\xf1\x80\x31\xf2\x10\x22\xf9\x5e\xd9\xcc\x42\xa9\x77\xe8\x71\x43\x8e\xbc\x0c\x26\x74\x1c\x49\x95\x70\x36\x29\xe4\x58\xf2\x7c\x5e\xbd\x61\x4d\x09\xb4\xe4\x97\x33\xd8\x65\x85\xad\x97\xd6\xb0\xfc\x70\x43\xe1\x47\xc3\x52\x95\xa2\xcd\x09\xed\xf5\xd0\xab\x02\x6f\x43\x92\xf7\x27\xc8\xbe\x46\x98\x57\x7c\x02\x62\xe3\x37\xd9\x62\xba\xe6\xa5\x03\x60\x15\x22\x8d\x50\x7d\x44\x54\xa4\x3b\x80\x89\xdb\xea\xb3\x9f\xd8\xdb\xbd\x45\x1b\xb7\xf8\xb6\xf9\x54\x5b\x72\xd8\x20\x01\x0a\x1f\xdf\xde\xbf\x7b\xf8\x6a\x79\x26\x06\xd0\x74\xc4\xbb\x96\x26\xe8\xd2\x09\xc4\x20\x5b\x82\x16\x10\x84\x35\x44\x54\x8f\xb8\x21\xd0\x14\x6d\xd8\x17\x66\xf9\xe8\x31\xa6\x10\x29\x89\x39\xe4\xdb\x7e\xb3\x4e\x9c\x49\x2f\xf0\x5f\x97\x10\x9b\xd6\x19\xf0\x94\x2c\xe9\x29\xab\x12\x82\x6c\x0d\x43\xa2\x98\x88\xc9\xb7\xa6\x2c\x62\xf4\x10\x56\xbf\x92\x92\x01\x96\x94\x8a\x61\x29\x40\xb6\xba\xf4\xea\x8e\x92\x40\x22\x15\x36\xde\xfc\x71\xf4\xc6\x20\xa1\xc2\x58\x14\x62\x01\xe3\x85\x92\x47\x0b\x3b\xb4\x99\xbe\x04\xf4\x1a\x1c\xee\x21\x51\xf1\x0b\xd9\xcf\x3c\x54\x15\x1e\xe0\xa7\x90\x08\x8c\x5f\x87\x11\xb6\x22\x91\xc7\xc5\x62\x63\xe4\x30\x65\x2a\x38\x97\xbd\x91\xfd\xa2\x0e\x8c\x59\x65\x09\x89\x17\x9a\x76\x64\x17\x6c\x36\x3d\x26\xb5\x35\x42\x4a\x72\xa2\x05\x46\xd3\xd7\x60\x7d\xed\x82\xc1\xe9\x2f\xd2\x34\x97\xfc\xfa\x8c\x3c\xd9\x97\xbe\x60\x49\xc6\x6f\x66\x17\xb5\xa9\x9f\x61\xb9\xf4\x34\x18\x06\x9c\x4c\x5b\x16\x27\x32\x8b\xa8\xf0\xf1\xe1\xfb\xe5\x47\x38\x40\x37\xc2\x1b\xb7\x27\x55\x3e\xd1\x5c\x28\x32\x7e\x4d\xa9\x69\xae\x53\x70\xd5\x0b\x79\x1d\x83\xf1\x52\x0f\xca\x1a\xf2\x52\xda\xdc\x19\x29\xf5\xfb\x2d\x13\x4b\xa9\xc0\x00\x77\x75\xbd\xc0\x8a\x20\x47\x8d\x42\x7a\x80\x77\x1e\xee\xd0\x91\xbd\x43\xa6\xff\x9d\xe4\xc2\x26\xf7\x85\xbc\x7f\x46\xf3\x7c\x33\x5e\x2a\x37\x9e\x66\x17\x87\x95\xf0\x4c\x5d\x96\x93\xca\x8c\x5d\x40\x6b\x2b\x6f\xc7\x06\x98\x46\x8e\x34\xac\xf6\x6d\x28\x67\x33\x0b\x91\x12\x4c\x5b\xef\x0c\xe7\xfa\x4c\xd6\x9b\x36\xc9\x4f\xe4\x00\x46\xc8\x5d\x11\x3f\xb3\x32\x3e\x79\x23\x17\x6b\xe3\xb4\x32\xf0\xca\xd2\x18\xae\x78\xbf\x1d\x6a\xfb\xdd\x5a\x24\x97\x15\x78\x52\xae\xd3\xef\xe9\x7c\xfc\x0b\x63\x8b\x2c\x9f\x6a\x7f\x96\x8f\xd8\x2d\x37\xeb\x90\x1c\xca\x08\x45\xaf\x17\xe3\xe8\xa5\x70\x8e\x98\x71\x73\x13\xe7\xb3\xf6\xf5\xcb\xf0\x5f\x8c\xeb\x17\xe7\xc5\x1e\xe2\x16\xf9\xa6\xf5\x59\x23\xdd\xb7\xee\xb8\x2f\x06\x67\xcb\xbf\xb8\x28\x1b\xa9\xf6\xd0\xa4\xf5\xb2\x70\xca\xb6\x31\x89\xae\xd6\xbe\xbf\x28\xec\x15\x95\x1b\x93\x3d\xbf\xc4\x94\x70\xff\xf9\x75\xf0\x44\xc8\x65\x87\xea\x11\x24\xe5\x86\xcc\x12\x52\x29\xfb\x4c\x92\x57\xc7\x25\x70\x48\xa0\x4d\xd7\x08\x7f\xfe\xd5\x4d\x7f\xcb\x23\x4d\x29\x8a\x42\xfa\xfd\xe5\x2b\xe7\xd5\xab\xb3\x07\x4b\x3d\xaa\xe0\xb5\x69\x0f\x3a\xf8\xf9\x97\xae\x01\x93\x7e\x38\xbc\x2e\x8a\xf0\xef\x00\x00\x00\xff\xff\xd6\x1f\x83\xeb\x4a\x0a\x00\x00") - -func deployManagedCommonAppsOpenClusterManagementIo_subscriptionstatuses_crd_v1alpha1YamlBytes() ([]byte, error) { - return bindataRead( - _deployManagedCommonAppsOpenClusterManagementIo_subscriptionstatuses_crd_v1alpha1Yaml, - "deploy/managed-common/apps.open-cluster-management.io_subscriptionstatuses_crd_v1alpha1.yaml", - ) -} - -func deployManagedCommonAppsOpenClusterManagementIo_subscriptionstatuses_crd_v1alpha1Yaml() (*asset, error) { - bytes, err := deployManagedCommonAppsOpenClusterManagementIo_subscriptionstatuses_crd_v1alpha1YamlBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "deploy/managed-common/apps.open-cluster-management.io_subscriptionstatuses_crd_v1alpha1.yaml", size: 2634, mode: os.FileMode(436), modTime: time.Unix(1646042069, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _deployManagedCommonClusterroleYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xcb\xbf\x0a\xc2\x30\x10\x80\xf1\x3d\x4f\x71\x5b\x41\x48\xc5\x4d\xb2\x3a\xb8\x3b\xb8\x5f\xdb\x43\x8f\xa6\xb9\x70\x7f\x3a\xf8\xf4\x22\x2e\xba\xfe\xf8\x3e\xec\x7c\x27\x35\x96\x56\x40\x27\x9c\x47\x0c\x7f\x8a\xf2\x0b\x9d\xa5\x8d\xeb\xd9\x46\x96\xe3\x7e\x4a\x2b\xb7\xa5\xc0\xa5\x86\x39\xe9\x4d\x2a\xa5\x8d\x1c\x17\x74\x2c\x09\xa0\xe1\x46\x05\xb6\xa8\xce\xf3\x37\xc9\xd2\x49\xd1\x45\x2d\xe3\x83\x9a\x27\x8d\x4a\x56\x52\x06\xec\x7c\x55\x89\x6e\x9f\x31\xc3\x70\x18\x12\x80\x92\x49\xe8\x4c\x7f\xb8\x93\x4e\x3f\xf0\x0e\x00\x00\xff\xff\x96\xff\x07\x4e\xac\x00\x00\x00") - -func deployManagedCommonClusterroleYamlBytes() ([]byte, error) { - return bindataRead( - _deployManagedCommonClusterroleYaml, - "deploy/managed-common/clusterrole.yaml", - ) -} - -func deployManagedCommonClusterroleYaml() (*asset, error) { - bytes, err := deployManagedCommonClusterroleYamlBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "deploy/managed-common/clusterrole.yaml", size: 172, mode: os.FileMode(436), modTime: time.Unix(1646042069, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _deployManagedCommonClusterrole2Yaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x8e\xb1\x4e\x43\x31\x0c\x45\x77\x7f\x85\xd5\xa5\x12\x52\x82\xd8\x50\x56\x06\x76\x06\x76\xe7\xd5\x7a\x58\x4d\xe2\xc8\x76\x3a\xf0\xf5\xe8\xd1\x4a\x6c\x8c\x96\xef\xb9\xe7\xd2\x94\x4f\x36\x17\x1d\x05\xad\xd2\x96\x69\xc5\x97\x9a\x7c\x53\x88\x8e\x7c\x7d\xf5\x2c\xfa\x7c\x7b\x81\xab\x8c\x4b\xc1\xb7\xb6\x3c\xd8\x3e\xb4\x31\x74\x0e\xba\x50\x50\x01\xc4\x41\x9d\x0b\xd2\xbe\x1b\xef\x14\x9c\x68\x4e\x5f\x35\xd1\xa5\xcb\x00\xc4\x46\x95\x9b\x1f\x41\xfc\xc7\xf2\x87\x87\xde\xd1\x82\xa7\xb0\xc5\x27\xb0\xd5\xd8\x0b\x24\xa4\x29\xef\xa6\x6b\xfe\x96\x1d\xe7\xf4\xac\x93\x47\xda\xee\xcb\x52\xa7\x41\x3b\x77\x1e\x91\x45\x01\xd1\xd8\x75\xd9\xc6\x0f\xc0\x57\xf5\xcd\x64\x1e\x5e\x07\xc4\x1b\x5b\x7d\xbc\xce\x4f\x67\xf8\x09\x00\x00\xff\xff\xd2\x32\x61\x56\x0f\x01\x00\x00") - -func deployManagedCommonClusterrole2YamlBytes() ([]byte, error) { - return bindataRead( - _deployManagedCommonClusterrole2Yaml, - "deploy/managed-common/clusterrole2.yaml", - ) -} - -func deployManagedCommonClusterrole2Yaml() (*asset, error) { - bytes, err := deployManagedCommonClusterrole2YamlBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "deploy/managed-common/clusterrole2.yaml", size: 271, mode: os.FileMode(436), modTime: time.Unix(1646042069, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _deployManagedCommonClusterrole_bindingYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\x31\x4e\xc5\x30\x0c\x40\xf7\x9c\xc2\x17\x48\x11\x1b\xca\x06\x0c\xec\x1f\x89\xdd\x4d\x4c\x31\x4d\xec\xc8\x71\x3a\x70\x7a\x84\x0a\x13\x12\xfc\xd9\xd6\x7b\xcf\xde\x59\x4a\x82\xc7\x3a\x87\x93\x5d\xb4\xd2\x03\x4b\x61\xd9\x02\x76\x7e\x21\x1b\xac\x92\xc0\x56\xcc\x0b\x4e\x7f\x53\xe3\x0f\x74\x56\x59\xf6\xbb\xb1\xb0\xde\x1c\xb7\xa1\x91\x63\x41\xc7\x14\x00\x04\x1b\x25\x68\xb3\x3a\xe7\x13\x19\xb5\x93\xa1\xab\x8d\x88\x1b\x89\x87\x31\xd7\x77\xca\x3e\x52\x88\x70\xca\x9f\xc9\x0e\xce\x74\x9f\xb3\x4e\xf1\x7f\x28\xdf\xe3\xd1\x31\x53\x02\xed\x24\xf1\x67\xa7\xa1\xe0\x46\x8d\xc4\x4f\x55\xc4\x52\x54\x82\x69\xa5\x0b\xbd\x7e\xe5\xfd\x3a\xf6\xba\x64\x00\xec\xfc\x64\x3a\xfb\x1f\xaf\x08\x9f\x01\x00\x00\xff\xff\x6e\x5d\xc4\x8f\x4a\x01\x00\x00") - -func deployManagedCommonClusterrole_bindingYamlBytes() ([]byte, error) { - return bindataRead( - _deployManagedCommonClusterrole_bindingYaml, - "deploy/managed-common/clusterrole_binding.yaml", - ) -} - -func deployManagedCommonClusterrole_bindingYaml() (*asset, error) { - bytes, err := deployManagedCommonClusterrole_bindingYamlBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "deploy/managed-common/clusterrole_binding.yaml", size: 330, mode: os.FileMode(436), modTime: time.Unix(1646042069, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _deployManagedCommonServiceYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x90\x31\x6a\x03\x41\x0c\x45\xfb\x39\x85\x2e\xb0\x45\x88\x8b\x30\x5d\x70\x95\x26\x2c\x24\xa4\x97\x67\xbf\x97\x21\xb3\xd2\x20\x69\x0d\xbe\x7d\xd8\x09\x81\xb4\x6e\xc4\x47\xfc\x07\x4f\xe2\x5e\xbf\x60\x5e\x55\x32\xdd\x9e\xd2\x77\x95\x25\xd3\x07\xec\x56\x0b\xd2\x86\xe0\x85\x83\x73\x22\x6a\x7c\x41\xf3\x23\x11\x09\x6f\xc8\xb4\xed\x2d\x6a\x69\xbb\x07\x6c\xd2\x0e\xe3\x50\xf3\xc9\xf7\x8b\x17\xab\x3d\xaa\x4a\x7a\xbc\xeb\x9d\x0b\x32\x69\x87\x4c\x7f\xc0\xc6\xc2\x2b\x36\x48\x4c\xbc\x8e\xb9\x2c\x2a\xc9\x3b\xca\x21\xd4\xd5\x62\x98\x4d\x23\x66\x7a\x39\x9d\x9e\x87\x68\x37\x0d\x2d\xda\x32\x7d\x9e\xe7\xb1\x09\xb6\x15\x31\xff\xaf\x39\x1a\x4a\xa8\x3d\x7e\x9b\xc3\x8f\xcf\xbd\x5e\xaf\x55\x6a\xdc\x33\xbd\xab\x20\x11\xc5\xbd\x23\xd3\xf9\x17\x7f\x9b\xd3\x4f\x00\x00\x00\xff\xff\x22\x67\x7f\x9c\x65\x01\x00\x00") - -func deployManagedCommonServiceYamlBytes() ([]byte, error) { - return bindataRead( - _deployManagedCommonServiceYaml, - "deploy/managed-common/service.yaml", - ) -} - -func deployManagedCommonServiceYaml() (*asset, error) { - bytes, err := deployManagedCommonServiceYamlBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "deploy/managed-common/service.yaml", size: 357, mode: os.FileMode(436), modTime: time.Unix(1664720806, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _deployManagedCommonService_accountYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\xca\x31\x0a\x03\x21\x10\x85\xe1\xde\x53\xcc\x05\x2c\xd2\xda\xe5\x0c\x81\xf4\x0f\x7d\x2c\x92\x75\x46\xc6\x71\xcf\x1f\x08\xd9\xe6\x6f\xfe\x0f\xb3\xbf\xe9\xab\x9b\x16\xb9\x1e\xe9\xd3\xb5\x15\x79\xd1\xaf\x5e\xf9\xac\xd5\xb6\x46\x1a\x0c\x34\x04\x4a\x12\x51\x0c\x16\x19\xfb\x8c\x5e\xcf\xbd\x82\x9e\x6d\xd2\x11\xe6\xeb\xbf\xd7\x44\x65\x11\x9b\xd4\x7c\x9b\x01\xc5\xc1\x41\x8d\x8c\xe3\xd7\xd6\x4c\xd3\x37\x00\x00\xff\xff\x79\x5b\xb0\xbe\x7e\x00\x00\x00") - -func deployManagedCommonService_accountYamlBytes() ([]byte, error) { - return bindataRead( - _deployManagedCommonService_accountYaml, - "deploy/managed-common/service_account.yaml", - ) -} - -func deployManagedCommonService_accountYaml() (*asset, error) { - bytes, err := deployManagedCommonService_accountYamlBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "deploy/managed-common/service_account.yaml", size: 126, mode: os.FileMode(436), modTime: time.Unix(1646042069, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _deployManagedMetrics_serviceYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x50\xbd\x6a\x03\x31\x0c\xde\xfd\x14\x7a\x01\x0f\xa5\xcb\xe1\xad\x64\xea\x52\x0e\x5a\xba\x2b\x3a\xe5\x30\xb5\x25\x63\x29\x81\xbc\x7d\xf1\x5d\xae\x74\x8b\x07\x23\x3e\x7d\x7c\x3f\xc2\x96\xbf\xb9\x5b\x56\x49\x70\x7b\x09\x3f\x59\x96\x04\x9f\xdc\x6f\x99\x38\x54\x76\x5c\xd0\x31\x05\x80\x82\x67\x2e\x36\x26\x00\x6c\x2d\x41\xa5\x68\xd7\xb3\x51\xcf\xcd\xb3\x4a\xac\xec\x3d\x93\x05\x00\xc1\xca\xcf\xf6\xd6\x90\x38\x81\x36\x96\x48\xe5\x6a\xce\x3d\x56\x14\x5c\xb9\xb2\x78\xc4\x75\xfb\x97\x45\x25\x58\x63\x1a\xbe\x4d\xbb\x3f\x02\xc4\xc3\xe3\x4f\x73\xbc\x41\x48\x30\xbd\x4e\xd3\x01\x74\x75\x25\x2d\x09\xbe\x4e\xf3\x03\x73\xec\x2b\xfb\xfc\x9f\x6a\x5c\x98\x5c\xfb\xae\x4d\x5a\x9b\x0a\x8b\xa7\xd1\xb3\x64\xc2\x3d\xfe\x16\xae\x6f\x74\x1b\xf7\x7a\xbb\x5c\xb2\x64\xbf\x27\xf8\x50\xe1\x00\xe0\xf7\xc6\x09\x4e\x7b\x99\xf7\x39\xfc\x06\x00\x00\xff\xff\xd9\x3e\xd3\x28\x5b\x01\x00\x00") - -func deployManagedMetrics_serviceYamlBytes() ([]byte, error) { - return bindataRead( - _deployManagedMetrics_serviceYaml, - "deploy/managed/metrics_service.yaml", - ) -} - -func deployManagedMetrics_serviceYaml() (*asset, error) { - bytes, err := deployManagedMetrics_serviceYamlBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "deploy/managed/metrics_service.yaml", size: 347, mode: os.FileMode(436), modTime: time.Unix(1664797260, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _deployManagedOperatorYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x54\xcb\x6e\xdb\x3a\x10\xdd\xfb\x2b\x06\xb9\x6b\x45\x71\x6e\x16\x01\x81\x2c\x7c\x13\x5f\xb4\x80\x1f\x42\x1a\xb4\xe8\xca\x18\x53\x63\x87\x08\xc9\x61\xf8\x30\xe0\xbf\x2f\x68\xc9\xb6\xfc\x2a\x6a\xa0\x5a\x18\x16\xcf\xcc\x39\x33\x67\xa8\x41\xa7\xbe\x93\x0f\x8a\xad\x00\x74\x2e\x94\xab\x7e\xef\x43\xd9\x5a\xc0\x0b\x39\xcd\x6b\x43\x36\xf6\x0c\x45\xac\x31\xa2\xe8\x01\x58\x34\x24\xc0\x24\x1d\x95\xd4\x29\x44\xf2\x05\x3b\xf2\x18\xd9\x87\x22\xa4\x79\x90\x5e\xb9\xa8\xd8\xb6\xb1\xc1\xa1\x24\x01\xec\xc8\x16\xdb\x04\x83\x16\x97\x94\xa9\x0b\x5c\x6e\x7e\xeb\x7a\x93\xa0\x71\x4e\x3a\x64\x99\x6b\x84\x82\x23\x99\x73\x3c\x39\xad\x24\x06\x01\xfd\x1e\x40\x20\x4d\x32\xb2\x6f\xd8\x0c\x46\xf9\x3e\xea\xd0\x5f\xd7\x49\x24\xe3\x34\x46\x6a\xc9\x3a\x7e\xe4\x47\x1f\xf0\x5e\xc7\x0c\xb0\x2d\x7f\xf3\x9f\xfc\x4a\x49\x1a\x48\xc9\xc9\xc6\xc9\x6f\x78\xda\x84\x15\xeb\x64\x68\xa7\x5d\xb4\xda\x1f\x4d\xb8\xa6\x58\x48\xb6\x0b\xb5\xdc\xd5\x16\x48\x7a\x8a\xfb\x5a\x01\x6a\x5a\x60\xd2\x71\xcc\x35\x09\x78\xb8\xbf\xeb\x40\x4d\x70\x53\x06\xba\x8d\xbb\xb9\xec\x76\x80\xbe\x78\x4f\xf3\xe2\x23\xcd\xe9\x40\x43\xb2\x8d\xa8\x2c\xf9\x8e\x23\xc5\x95\x9e\x34\x8f\x32\xb8\x24\x01\x9f\x09\xd7\xb7\x8a\xcb\x0b\x77\xa8\x6c\x49\x39\xd5\x17\x28\x45\x1e\x5d\x88\x1d\x66\xc7\x3e\x86\xae\x09\xc5\xbe\xec\x8a\x7d\x14\xf0\xf8\xf0\xf0\x6f\x07\x97\x6c\x0c\xda\xfa\x30\xa5\x4c\xc1\x97\x9a\x25\xea\x72\xae\x6c\x79\x5d\x73\x05\x14\x05\xea\xc0\x9a\x97\x91\x43\xac\xc9\xfb\x23\x74\x4b\x95\xad\x7b\x6a\xfa\xad\x67\xed\xe1\x2c\x1f\xc2\x3f\xd0\xbe\xf6\x8f\x52\xf3\x60\xb6\xe9\xcd\x70\x16\x4a\xd3\x53\xb9\x42\x5f\xfa\x64\xcb\xfd\xfd\x28\x4f\xe6\xb7\x73\xbe\x4a\x5a\x57\xac\x95\x5c\x0b\xf8\xba\x98\x70\xac\x3c\x85\xbc\x0f\xf6\x71\x64\x57\x5d\x4b\xf6\x83\xfe\x31\x78\x7b\xfe\x32\x9b\x0c\xc6\xc3\x6f\xd5\xe0\x79\x78\x36\xa6\x9a\xbe\x6c\x22\x0e\x40\x80\x15\xea\x44\xff\x7b\x36\xe2\x08\x00\x58\x28\xd2\xf5\x2b\x2d\x4e\x91\x16\xab\x30\xbe\x8b\xdd\xf7\x79\x9b\x75\xce\x4a\x4f\xab\xe1\xeb\xe0\x6d\xfa\x7a\x51\x5f\xc0\xcd\x1f\x8c\xf3\xe6\x2c\xf9\xcb\xb0\x1a\x4d\x7f\x8e\x87\x93\xb7\xd9\x68\xf0\xdf\x70\xf4\x77\xf8\x3d\x05\x4e\x5e\x52\x38\x6e\xde\xd3\x67\xa2\x10\x4f\xce\x01\xa4\x4b\x02\xfa\x77\x77\xe6\x04\x31\x64\xd8\xaf\x05\xf4\xef\x1f\xc7\xaa\x83\x36\xeb\x64\x9c\x97\xcf\xd1\xe7\x61\xf2\x59\x63\xef\x99\x5b\x74\x20\x70\x69\x05\xfd\x0a\x00\x00\xff\xff\xf6\x7e\x85\x1b\x6c\x06\x00\x00") - -func deployManagedOperatorYamlBytes() ([]byte, error) { - return bindataRead( - _deployManagedOperatorYaml, - "deploy/managed/operator.yaml", - ) -} - -func deployManagedOperatorYaml() (*asset, error) { - bytes, err := deployManagedOperatorYamlBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "deploy/managed/operator.yaml", size: 1644, mode: os.FileMode(436), modTime: time.Unix(1664797233, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -// Asset loads and returns the asset for the given name. -// It returns an error if the asset could not be found or -// could not be loaded. -func Asset(name string) ([]byte, error) { - cannonicalName := strings.Replace(name, "\\", "/", -1) - if f, ok := _bindata[cannonicalName]; ok { - a, err := f() - if err != nil { - return nil, fmt.Errorf("Asset %s can't read by error: %v", name, err) - } - return a.bytes, nil - } - return nil, fmt.Errorf("Asset %s not found", name) -} - -// MustAsset is like Asset but panics when Asset would return an error. -// It simplifies safe initialization of global variables. -func MustAsset(name string) []byte { - a, err := Asset(name) - if err != nil { - panic("asset: Asset(" + name + "): " + err.Error()) - } - - return a -} - -// AssetInfo loads and returns the asset info for the given name. -// It returns an error if the asset could not be found or -// could not be loaded. -func AssetInfo(name string) (os.FileInfo, error) { - cannonicalName := strings.Replace(name, "\\", "/", -1) - if f, ok := _bindata[cannonicalName]; ok { - a, err := f() - if err != nil { - return nil, fmt.Errorf("AssetInfo %s can't read by error: %v", name, err) - } - return a.info, nil - } - return nil, fmt.Errorf("AssetInfo %s not found", name) -} - -// AssetNames returns the names of the assets. -func AssetNames() []string { - names := make([]string, 0, len(_bindata)) - for name := range _bindata { - names = append(names, name) - } - return names -} - -// _bindata is a table, holding each asset generator, mapped to its name. -var _bindata = map[string]func() (*asset, error){ - "deploy/managed-common/apps.open-cluster-management.io_helmreleases_crd.yaml": deployManagedCommonAppsOpenClusterManagementIo_helmreleases_crdYaml, - "deploy/managed-common/apps.open-cluster-management.io_placementrules_crd.yaml": deployManagedCommonAppsOpenClusterManagementIo_placementrules_crdYaml, - "deploy/managed-common/apps.open-cluster-management.io_subscriptionreports_crd_v1alpha1.yaml": deployManagedCommonAppsOpenClusterManagementIo_subscriptionreports_crd_v1alpha1Yaml, - "deploy/managed-common/apps.open-cluster-management.io_subscriptions_crd_v1.yaml": deployManagedCommonAppsOpenClusterManagementIo_subscriptions_crd_v1Yaml, - "deploy/managed-common/apps.open-cluster-management.io_subscriptionstatuses_crd_v1alpha1.yaml": deployManagedCommonAppsOpenClusterManagementIo_subscriptionstatuses_crd_v1alpha1Yaml, - "deploy/managed-common/clusterrole.yaml": deployManagedCommonClusterroleYaml, - "deploy/managed-common/clusterrole2.yaml": deployManagedCommonClusterrole2Yaml, - "deploy/managed-common/clusterrole_binding.yaml": deployManagedCommonClusterrole_bindingYaml, - "deploy/managed-common/service.yaml": deployManagedCommonServiceYaml, - "deploy/managed-common/service_account.yaml": deployManagedCommonService_accountYaml, - "deploy/managed/metrics_service.yaml": deployManagedMetrics_serviceYaml, - "deploy/managed/operator.yaml": deployManagedOperatorYaml, -} - -// AssetDir returns the file names below a certain -// directory embedded in the file by go-bindata. -// For example if you run go-bindata on data/... and data contains the -// following hierarchy: -// data/ -// foo.txt -// img/ -// a.png -// b.png -// then AssetDir("data") would return []string{"foo.txt", "img"} -// AssetDir("data/img") would return []string{"a.png", "b.png"} -// AssetDir("foo.txt") and AssetDir("notexist") would return an error -// AssetDir("") will return []string{"data"}. -func AssetDir(name string) ([]string, error) { - node := _bintree - if len(name) != 0 { - cannonicalName := strings.Replace(name, "\\", "/", -1) - pathList := strings.Split(cannonicalName, "/") - for _, p := range pathList { - node = node.Children[p] - if node == nil { - return nil, fmt.Errorf("Asset %s not found", name) - } - } - } - if node.Func != nil { - return nil, fmt.Errorf("Asset %s not found", name) - } - rv := make([]string, 0, len(node.Children)) - for childName := range node.Children { - rv = append(rv, childName) - } - return rv, nil -} - -type bintree struct { - Func func() (*asset, error) - Children map[string]*bintree -} - -var _bintree = &bintree{nil, map[string]*bintree{ - "deploy": &bintree{nil, map[string]*bintree{ - "managed": &bintree{nil, map[string]*bintree{ - "metrics_service.yaml": &bintree{deployManagedMetrics_serviceYaml, map[string]*bintree{}}, - "operator.yaml": &bintree{deployManagedOperatorYaml, map[string]*bintree{}}, - }}, - "managed-common": &bintree{nil, map[string]*bintree{ - "apps.open-cluster-management.io_helmreleases_crd.yaml": &bintree{deployManagedCommonAppsOpenClusterManagementIo_helmreleases_crdYaml, map[string]*bintree{}}, - "apps.open-cluster-management.io_placementrules_crd.yaml": &bintree{deployManagedCommonAppsOpenClusterManagementIo_placementrules_crdYaml, map[string]*bintree{}}, - "apps.open-cluster-management.io_subscriptionreports_crd_v1alpha1.yaml": &bintree{deployManagedCommonAppsOpenClusterManagementIo_subscriptionreports_crd_v1alpha1Yaml, map[string]*bintree{}}, - "apps.open-cluster-management.io_subscriptions_crd_v1.yaml": &bintree{deployManagedCommonAppsOpenClusterManagementIo_subscriptions_crd_v1Yaml, map[string]*bintree{}}, - "apps.open-cluster-management.io_subscriptionstatuses_crd_v1alpha1.yaml": &bintree{deployManagedCommonAppsOpenClusterManagementIo_subscriptionstatuses_crd_v1alpha1Yaml, map[string]*bintree{}}, - "clusterrole.yaml": &bintree{deployManagedCommonClusterroleYaml, map[string]*bintree{}}, - "clusterrole2.yaml": &bintree{deployManagedCommonClusterrole2Yaml, map[string]*bintree{}}, - "clusterrole_binding.yaml": &bintree{deployManagedCommonClusterrole_bindingYaml, map[string]*bintree{}}, - "service.yaml": &bintree{deployManagedCommonServiceYaml, map[string]*bintree{}}, - "service_account.yaml": &bintree{deployManagedCommonService_accountYaml, map[string]*bintree{}}, - }}, - }}, -}} - -// RestoreAsset restores an asset under the given directory -func RestoreAsset(dir, name string) error { - data, err := Asset(name) - if err != nil { - return err - } - info, err := AssetInfo(name) - if err != nil { - return err - } - err = os.MkdirAll(_filePath(dir, filepath.Dir(name)), os.FileMode(0755)) - if err != nil { - return err - } - err = os.WriteFile(_filePath(dir, name), data, info.Mode()) - if err != nil { - return err - } - err = os.Chtimes(_filePath(dir, name), info.ModTime(), info.ModTime()) - if err != nil { - return err - } - return nil -} - -// RestoreAssets restores an asset under the given directory recursively -func RestoreAssets(dir, name string) error { - children, err := AssetDir(name) - // File - if err != nil { - return RestoreAsset(dir, name) - } - // Dir - for _, child := range children { - err = RestoreAssets(dir, filepath.Join(name, child)) - if err != nil { - return err - } - } - return nil -} - -func _filePath(dir, name string) string { - cannonicalName := strings.Replace(name, "\\", "/", -1) - return filepath.Join(append([]string{dir}, strings.Split(cannonicalName, "/")...)...) -}