├── .codecov.yml ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── other-report.md ├── pull_request_template.md └── workflows │ ├── dco.yml │ ├── fossa.yml │ ├── go-postsubmit.yml │ ├── go-presubmit.yml │ └── go-release.yml ├── .gitignore ├── CHANGELOG ├── CHANGELOG-v0.4.md ├── CHANGELOG-v0.5.md └── CHANGELOG-v0.6.md ├── COMPONENT_NAME ├── COMPONENT_VERSION ├── CONTRIBUTING.md ├── DCO ├── LICENSE ├── Makefile ├── Makefile.prow ├── OWNERS ├── README.md ├── RELEASE_MAIN_BRANCH ├── SECURITY.md ├── addon ├── addon.go ├── addon_test.go └── manifests │ ├── chart │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── apps.open-cluster-management.io_helmreleases_crd.yaml │ │ ├── apps.open-cluster-management.io_subscriptions_crd_v1.yaml │ │ ├── apps.open-cluster-management.io_subscriptionstatuses_crd_v1alpha1.yaml │ │ ├── cluster_role.yaml │ │ ├── cluster_role_admin.yaml │ │ ├── cluster_role_binding.yaml │ │ ├── deployment.yaml │ │ ├── metrics_service.yaml │ │ ├── pre_delete_hook.yaml │ │ └── service_account.yaml │ └── values.yaml │ └── permission │ ├── role.yaml │ └── rolebinding.yaml ├── cmd ├── appsubsummary │ ├── exec │ │ ├── manager.go │ │ └── options.go │ └── main.go ├── manager │ ├── exec │ │ ├── manager.go │ │ └── options.go │ └── main.go ├── placementrule │ ├── exec │ │ ├── manager.go │ │ └── options.go │ └── main.go ├── scripts │ ├── getAppSubStatus.sh │ └── getLastUpdateTime.sh └── uninstall-crd │ └── uninstall-crd.go ├── common ├── Makefile.common.mk ├── config │ ├── .golangci.yml │ ├── .hadolint.yml │ ├── .yamllint.yml │ ├── mdl.rb │ ├── sass-lint.yml │ └── tslint.json └── scripts │ ├── gobuild.sh │ └── lint_go.sh ├── deploy ├── addon │ └── addon.yaml ├── common │ ├── 0000_03_clusters.open-cluster-management.io_placements.crd.yaml │ ├── 0000_04_clusters.open-cluster-management.io_placementdecisions.crd.yaml │ ├── apps.open-cluster-management.io_channels_crd.yaml │ ├── apps.open-cluster-management.io_helmreleases_crd.yaml │ ├── apps.open-cluster-management.io_placementrules_crd.yaml │ ├── apps.open-cluster-management.io_subscriptionreports_crd_v1alpha1.yaml │ ├── apps.open-cluster-management.io_subscriptions_crd_v1.yaml │ ├── apps.open-cluster-management.io_subscriptionstatuses_crd_v1alpha1.yaml │ ├── clusterrole.yaml │ ├── clusterrole_agent.yaml │ ├── clusterrole_binding.yaml │ ├── namespace.yaml │ ├── service.yaml │ └── service_account.yaml ├── crds │ ├── apps.open-cluster-management.io_subscriptionreports_crd_v1alpha1.yaml │ ├── apps.open-cluster-management.io_subscriptions_crd_v1.yaml │ └── apps.open-cluster-management.io_subscriptionstatuses_crd_v1alpha1.yaml ├── hub-common │ ├── apps.open-cluster-management.io_channels_crd.yaml │ ├── apps.open-cluster-management.io_helmreleases_crd.yaml │ ├── apps.open-cluster-management.io_placementrules_crd.yaml │ ├── apps.open-cluster-management.io_subscriptionreports_crd_v1alpha1.yaml │ ├── apps.open-cluster-management.io_subscriptions_crd_v1.yaml │ ├── apps.open-cluster-management.io_subscriptionstatuses_crd_v1alpha1.yaml │ ├── clusterrole.yaml │ ├── clusterrole_agent.yaml │ ├── clusterrole_binding.yaml │ ├── service.yaml │ └── service_account.yaml ├── hub │ ├── channel-operator.yaml │ ├── metrics_service.yaml │ ├── operator.yaml │ ├── placementrule-operator.yaml │ └── subscription-report-operator.yaml ├── managed-common │ ├── apps.open-cluster-management.io_helmreleases_crd.yaml │ ├── apps.open-cluster-management.io_placementrules_crd.yaml │ ├── apps.open-cluster-management.io_subscriptionreports_crd_v1alpha1.yaml │ ├── apps.open-cluster-management.io_subscriptions_crd_v1.yaml │ ├── apps.open-cluster-management.io_subscriptionstatuses_crd_v1alpha1.yaml │ ├── clusterrole.yaml │ ├── clusterrole2.yaml │ ├── clusterrole_binding.yaml │ ├── service.yaml │ └── service_account.yaml ├── managed │ ├── metrics_service.yaml │ └── operator.yaml ├── ocm │ ├── install.sh │ └── verify_app_addon.sh ├── olm-catalog │ └── multicluster-operators-subscription │ │ ├── manifests │ │ ├── app.k8s.io_applications_crd_v1beta1.yaml │ │ ├── apps.open-cluster-management.io_channels_crd_v1.yaml │ │ ├── apps.open-cluster-management.io_deployables_crd_v1.yaml │ │ ├── apps.open-cluster-management.io_gitopsclusters_crd_v1beta1.yaml │ │ ├── apps.open-cluster-management.io_helmreleases_crd_v1.yaml │ │ ├── apps.open-cluster-management.io_multiclusterapplicationsetreports.yaml │ │ ├── apps.open-cluster-management.io_placementrules_crd_v1.yaml │ │ ├── apps.open-cluster-management.io_subscriptionreports_crd_v1alpha1.yaml │ │ ├── apps.open-cluster-management.io_subscriptions_crd_v1.yaml │ │ ├── apps.open-cluster-management.io_subscriptionstatuses_crd_v1alpha1.yaml │ │ ├── gitops-addon.addonTemplates.yaml │ │ ├── gitops-addon.clusterManagementAddon.yaml │ │ ├── multicluster-applications-clustermanagementaddon.yaml │ │ ├── multicluster-operators-subscription.clusterserviceversion.yaml │ │ ├── service_metrics_hub_subscription.yaml │ │ └── service_metrics_standalone_subscription.yaml │ │ └── metadata │ │ └── annotations.yaml ├── perf │ ├── appsubstatus │ │ ├── appSub-tpl.yaml │ │ ├── appSubStatus-tpl.yaml │ │ ├── appSubStatusYamlGenerator.sh │ │ ├── batchPatch.sh │ │ ├── cluster-tpl.yaml │ │ └── singleAppsubStatusSample.yaml │ ├── manifestwork │ │ ├── 00-batchPatchClusters.sh │ │ ├── 01-channel.yaml │ │ ├── 02-placementRuleYamlGenerator.sh │ │ ├── 03-appSubYamlGenerator.sh │ │ ├── 04-deleteAppSubYamlGenerator.sh │ │ ├── appsub-tpl.yaml │ │ ├── manifestwork-tpl.yaml │ │ └── placementrule-tpl.yaml │ └── subscriptionReport │ │ ├── app-appsubreport-tpl.yaml │ │ ├── appsub-tpl.yaml │ │ ├── appsubReportYamlGenerator.sh │ │ ├── cluster-appsubreport-header-tpl.yaml │ │ ├── cluster-appsubreport-result-tpl.yaml │ │ └── cluster-tpl.yaml └── standalone │ ├── metrics_service.yaml │ └── operator.yaml ├── docs ├── development.md ├── git_server_connection_types.md ├── gitrepo_subscription.md ├── helmrepo_subscription.md ├── metrics.md ├── objectstorage_subscription.md ├── patching_subscription_image.md └── troubleshooting_guidence.md ├── e2e └── e2e_test.go ├── examples ├── ansible-post │ ├── appsub │ │ ├── 01-clustersetbinding.yaml │ │ ├── 02-channel.yaml │ │ ├── 02-placement.yaml │ │ ├── 03-subscription.yaml │ │ ├── EDITME-secret.yaml │ │ └── README.md │ └── resources │ │ ├── cfg_and_ansible.yaml │ │ └── posthook │ │ └── sub_posthook.yaml ├── ansible-pre-workflow │ ├── appsub │ │ ├── 01-clustersetbinding.yaml │ │ ├── 02-channel.yaml │ │ ├── 02-placement.yaml │ │ ├── 03-subscription.yaml │ │ ├── EDITME-secret.yaml │ │ └── README.md │ └── resources │ │ ├── cfg_and_ansible.yaml │ │ └── prehook │ │ └── ansjob_prehook_workflow.yaml ├── ansible-tags │ ├── appsub │ │ ├── 01-clustersetbinding.yaml │ │ ├── 02-channel.yaml │ │ ├── 02-placement.yaml │ │ ├── 03-subscription.yaml │ │ ├── EDITME-secret.yaml │ │ └── README.md │ └── resources │ │ ├── cm.yaml │ │ └── posthook │ │ └── ansjob_posthook_tags.yaml ├── ansible │ ├── appsub │ │ ├── 01-clustersetbinding.yaml │ │ ├── 02-channel.yaml │ │ ├── 02-placement.yaml │ │ ├── 03-subscription.yaml │ │ ├── EDITME-secret.yaml │ │ └── README.md │ └── resources │ │ ├── cfg_and_ansible.yaml │ │ ├── posthook │ │ └── sub_posthook.yaml │ │ └── prehook │ │ └── sub_prehook.yaml ├── e2e_example │ ├── git-commit-subscription-e2e.yaml │ ├── git-nested-subscription-e2e.yaml │ ├── git-tag-subscription-e2e.yaml │ ├── github_channel_e2e.yaml │ ├── github_helm_channel_e2e.yaml │ ├── helm_channel_e2e.yaml │ ├── local_deployalbe_e2e.yaml │ ├── namespace_channel_e2e.yaml │ ├── object_bucket_e2e.yaml │ └── self-host-git.yaml ├── git-simple-sub │ └── deployment.yaml ├── github-channel │ ├── .kubernetesignore │ ├── 00-namespace.yaml │ ├── 01-channel.yaml │ ├── 02-subscription.yaml │ ├── 10-namespace.yaml │ ├── 11-channel.yaml │ ├── 12-subscription.yaml │ └── sample-deployment.yaml ├── helmrepo-channel │ ├── 00-namespace.yaml │ ├── 01-channel.yaml │ └── 02-subscription.yaml ├── helmrepo-hub-channel │ ├── 00-namespace.yaml │ ├── 01-channel.yaml │ ├── 01-clustersetbinding.yaml │ ├── 02-placement.yaml │ └── 02-subscription.yaml ├── local-git-sub │ ├── 00-namespace.yaml │ ├── channel.yaml │ └── subscription.yaml ├── namespace-channel │ ├── 00-namespace.yaml │ ├── 01-channel.yaml │ ├── 02-subscription.yaml │ ├── 03-dev2-subscription.yaml │ └── rollingupdate │ │ └── rollingupdate-subscription.yaml ├── remote-git-sub-op │ ├── deployment.yaml │ ├── ingress.yaml │ └── service.yaml └── remote-git-sub │ ├── 01-clustersetbinding.yaml │ ├── 01-namespace.yaml │ ├── 02-channel.yaml │ ├── 02-placement.yaml │ └── 02-subscription.yaml ├── go.mod ├── go.sum ├── hack ├── boilerplate.go.txt └── test │ ├── 0000_00_authentication.open-cluster-management.io_managedserviceaccounts.yaml │ ├── 0000_00_work.open-cluster-management.io_manifestworks.crd.yaml │ ├── 0000_01_work.open-cluster-management.io_appliedmanifestworks.crd.yaml │ ├── 0001_01_work.open-cluster-management.io_appliedmanifestworks.crd.yaml │ ├── apps.open-cluster-management.io_channel_crd.yaml │ ├── apps.open-cluster-management.io_helmrelease_crd.yaml │ ├── apps.open-cluster-management.io_placementrules_crd.yaml │ ├── clusters.open-cluster-management.io_managedclusters.crd.yaml │ ├── placementdecisions.crd.yaml │ ├── tower.ansible.com_ansiblejobs_crd.yaml │ └── view.open-cluster-management.io_managedclusterviews.yaml ├── images └── architecture.png ├── pkg ├── apis │ ├── addtoscheme_apps_v1.go │ ├── addtoscheme_apps_v1alpha1.go │ ├── apis.go │ ├── apps │ │ ├── ansible │ │ │ ├── group.go │ │ │ └── v1alpha1 │ │ │ │ ├── ansiblejob_types.go │ │ │ │ ├── ansiblejob_types_test.go │ │ │ │ ├── groupversion_info.go │ │ │ │ ├── v1alpha1_suite_test.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── group.go │ │ ├── helmrelease │ │ │ ├── group.go │ │ │ └── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── helmrelease_types.go │ │ │ │ ├── helmrelease_types_test.go │ │ │ │ ├── register.go │ │ │ │ ├── v1_suite_test.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── placementrule │ │ │ ├── group.go │ │ │ └── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── placementrule_types.go │ │ │ │ ├── placementrule_types_test.go │ │ │ │ ├── register.go │ │ │ │ ├── v1_suite_test.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ ├── subscription_types.go │ │ │ ├── subscription_types_test.go │ │ │ ├── v1_suite_test.go │ │ │ └── zz_generated.deepcopy.go │ │ └── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ ├── subscriptionstatus_types.go │ │ │ ├── subscriptionstatus_types_test.go │ │ │ ├── v1alpha1_suite_test.go │ │ │ └── zz_generated.deepcopy.go │ └── view │ │ └── v1beta1 │ │ ├── groupversion_info.go │ │ ├── view_types.go │ │ └── zz_generated.deepcopy.go ├── controller │ ├── add_appsubsummary.go │ ├── add_helmrelease.go │ ├── add_mcm_hub.go │ ├── add_spoke_token_controller.go │ ├── add_subscription.go │ ├── appsubsummary │ │ ├── appsubsummary_controller.go │ │ ├── appsubsummary_controller_suite_test.go │ │ └── appsubsummary_controller_test.go │ ├── controller.go │ ├── mcmhub │ │ ├── ansiblejob.go │ │ ├── gitrepo_sync.go │ │ ├── gitrepo_sync_test.go │ │ ├── hook.go │ │ ├── hook_suite_test.go │ │ ├── hook_test.go │ │ ├── hub.go │ │ ├── hub_git.go │ │ ├── hub_git_test.go │ │ ├── mcmhub_controller.go │ │ ├── mcmhub_controller_propagation_test.go │ │ ├── mcmhub_controller_suite_test.go │ │ ├── mcmhub_controller_test.go │ │ ├── metaupdate.go │ │ ├── placement.go │ │ ├── placement_test.go │ │ └── propagate_manifestwork.go │ ├── spoketoken │ │ ├── spoke_toke_controller_test.go │ │ ├── spoke_token_controller.go │ │ └── spoke_token_controller_suite_test.go │ └── subscription │ │ ├── lease_controller.go │ │ ├── lease_controller_test.go │ │ ├── reference.go │ │ ├── reference_test.go │ │ ├── subscription_controller.go │ │ ├── subscription_controller_suite_test.go │ │ └── subscription_controller_test.go ├── helmrelease │ ├── client │ │ ├── client.go │ │ └── client_test.go │ ├── controller │ │ ├── add_helmrelease.go │ │ ├── controller.go │ │ └── helmrelease │ │ │ ├── helmrelease_controller.go │ │ │ ├── helmrelease_controller_suite_test.go │ │ │ ├── helmrelease_controller_test.go │ │ │ ├── helmrelease_helper.go │ │ │ └── helmreleasemgr.go │ ├── internal │ │ └── util │ │ │ └── k8sutil │ │ │ ├── k8sutil.go │ │ │ └── k8sutil_test.go │ ├── release │ │ ├── manager.go │ │ └── manager_factory.go │ └── utils │ │ ├── helmrepoutils.go │ │ ├── helmrepoutils_suite_test.go │ │ ├── helmrepoutils_test.go │ │ ├── kubernetes.go │ │ └── kubernetes_test.go ├── metrics │ ├── add_git_pull_metrics.go │ ├── add_local_deployment_metrics.go │ ├── add_propagation_metrics.go │ └── metrics.go ├── placementrule │ ├── controller │ │ ├── add_placementrule.go │ │ ├── controller.go │ │ └── placementrule │ │ │ ├── placement.go │ │ │ ├── placementdecision.go │ │ │ ├── placementrule_controller.go │ │ │ ├── placementrule_controller_suite_test.go │ │ │ ├── placementrule_controller_test.go │ │ │ └── placementrule_status_controller.go │ └── utils │ │ ├── auth.go │ │ ├── cluster.go │ │ ├── eventlog.go │ │ ├── kubernetes.go │ │ ├── label.go │ │ ├── label_test.go │ │ ├── placement.go │ │ ├── predicate_test.go │ │ ├── utils_suite_test.go │ │ └── utils_test.go ├── subscriber │ ├── add_git_subscriber.go │ ├── add_helmrepo_subscriber.go │ ├── add_objectbucket_subscriber.go │ ├── git │ │ ├── git_subscriber.go │ │ ├── git_subscriber_item.go │ │ ├── git_subscriber_suite_test.go │ │ └── git_subscriber_test.go │ ├── helmrepo │ │ ├── helm_subscriber_item.go │ │ ├── helmrepo_subscriber_suite_test.go │ │ ├── helmrepo_subscriber_test.go │ │ └── hemrepo_subscriber.go │ ├── objectbucket │ │ ├── objectbucket_subscriber.go │ │ ├── objectbucket_subscriber_item.go │ │ ├── objectbucket_subscriber_suite_test.go │ │ └── objectbucket_subscriber_test.go │ └── subscriber.go ├── synchronizer │ ├── add_kubernetes_synchronizer.go │ ├── kubernetes │ │ ├── extension.go │ │ ├── promethues.go │ │ ├── sync_appsubstatus.go │ │ ├── sync_appsubstatus_test.go │ │ ├── sync_server.go │ │ ├── sync_suite_test.go │ │ ├── synchronizer.go │ │ └── synchronizer_test.go │ └── synchronizer.go ├── utils │ ├── aws │ │ ├── objectstore.go │ │ └── objectstore_test.go │ ├── cert.go │ ├── cert_test.go │ ├── eventlog.go │ ├── git_test_helper.go │ ├── gitrepo.go │ ├── gitrepo_test.go │ ├── helmrepo.go │ ├── helmrepo_test.go │ ├── kubernetes.go │ ├── kustomize.go │ ├── kustomize_test.go │ ├── label.go │ ├── label_test.go │ ├── override.go │ ├── override_test.go │ ├── policyreport.go │ ├── policyreport_test.go │ ├── reference.go │ ├── reference_test.go │ ├── subscription.go │ ├── subscription_test.go │ ├── timewindow.go │ ├── timewindow_test.go │ ├── util_suite_test.go │ └── util_test.go └── webhook │ ├── add_webhook_listener.go │ ├── listener │ ├── bitbucket_events.go │ ├── bitbucket_events_test.go │ ├── github_events.go │ ├── gitlab_events.go │ ├── gitlab_events_test.go │ ├── webhook_listener.go │ ├── webhook_listener_suite_test.go │ └── webhook_listener_test.go │ └── webhook.go ├── sonar-project.properties ├── test ├── e2e │ ├── cases │ │ ├── 00-helm-semver │ │ │ └── semver_appsub.yaml │ │ ├── 000-git-skip-clone │ │ │ ├── channel.yaml │ │ │ ├── placement.yaml │ │ │ └── subscription.yaml │ │ ├── 01-placement │ │ │ ├── channel.yaml │ │ │ ├── clusterset.yaml │ │ │ ├── clustersetbinding.yaml │ │ │ ├── placement.yaml │ │ │ └── subscription.yaml │ │ ├── 02-placementrule │ │ │ ├── 01-channel.yaml │ │ │ ├── 02-placementrule.yaml │ │ │ └── 02-subscription.yaml │ │ ├── 03-keep-namespace │ │ │ ├── channel.yaml │ │ │ ├── clusterset.yaml │ │ │ ├── clustersetbinding.yaml │ │ │ ├── placement.yaml │ │ │ └── subscription.yaml │ │ ├── 04-helm-no-match │ │ │ ├── channel.yaml │ │ │ ├── clusterset.yaml │ │ │ ├── clustersetbinding.yaml │ │ │ ├── placement.yaml │ │ │ └── subscription.yaml │ │ ├── 05-ansiblejob │ │ │ ├── 00-secret.yaml │ │ │ ├── 01-placement-rule.yaml │ │ │ ├── 02-channel.yaml │ │ │ └── 03-subscription.yaml │ │ ├── 06-ansiblejob-post │ │ │ ├── 00-secret.yaml │ │ │ ├── 01-placement-rule.yaml │ │ │ ├── 02-channel.yaml │ │ │ └── 03-subscription.yaml │ │ ├── 07-helm-install-error │ │ │ ├── 01-channel.yaml │ │ │ ├── 02-placement.yaml │ │ │ └── 02-subscription.yaml │ │ ├── 08-helm-upgrade-error │ │ │ ├── install │ │ │ │ ├── 01-channel.yaml │ │ │ │ ├── 02-placement.yaml │ │ │ │ └── 02-subscription.yaml │ │ │ └── upgrade │ │ │ │ ├── hub │ │ │ │ ├── 01-subscription.yaml │ │ │ │ └── 02-mw.yaml │ │ │ │ └── managed │ │ │ │ └── hr.yaml │ │ ├── 09-helm-missing-phase │ │ │ ├── 00-namespace.yaml │ │ │ ├── 01-channel.yaml │ │ │ ├── 02-placement.yaml │ │ │ └── 02-subscription.yaml │ │ ├── 10-cluster-override-ns │ │ │ ├── channel.yaml │ │ │ ├── placement.yaml │ │ │ └── subscription.yaml │ │ ├── 11-helm-hub-dryrun │ │ │ ├── 01-channel.yaml │ │ │ ├── 02-placement.yaml │ │ │ └── 02-subscription.yaml │ │ ├── 12-helm-update │ │ │ ├── install │ │ │ │ ├── 01-channel.yaml │ │ │ │ ├── 02-placementrule.yaml │ │ │ │ └── 02-subscription.yaml │ │ │ └── upgrade │ │ │ │ └── subscription.yaml │ │ ├── 13-git-res-name │ │ │ ├── channel.yaml │ │ │ ├── placement.yaml │ │ │ ├── resource │ │ │ │ └── clusterrole.yaml │ │ │ └── subscription.yaml │ │ ├── 14-helm-appsubstatus │ │ │ ├── install │ │ │ │ ├── 01-channel.yaml │ │ │ │ ├── 02-placementrule.yaml │ │ │ │ └── 02-subscription.yaml │ │ │ └── upgrade │ │ │ │ └── subscription.yaml │ │ ├── 15-git-helm │ │ │ ├── install │ │ │ │ ├── channel.yaml │ │ │ │ ├── placement.yaml │ │ │ │ └── subscription.yaml │ │ │ └── update │ │ │ │ └── subscription.yaml │ │ ├── 16-helm-recreate │ │ │ ├── 01-channel.yaml │ │ │ ├── 02-placementrule.yaml │ │ │ └── 02-subscription.yaml │ │ ├── 17-ansiblejob-pre-workflow │ │ │ ├── 00-secret.yaml │ │ │ ├── 01-placement-rule.yaml │ │ │ ├── 02-channel.yaml │ │ │ └── 03-subscription.yaml │ │ ├── 19-verify-git-pull-time-metric │ │ │ ├── failed │ │ │ │ └── failed-appsub-manifestwork.yaml │ │ │ └── successful │ │ │ │ ├── 00-namespace.yaml │ │ │ │ ├── channel.yaml │ │ │ │ ├── clusterset.yaml │ │ │ │ ├── clustersetbinding.yaml │ │ │ │ ├── placement.yaml │ │ │ │ └── subscription.yaml │ │ ├── 20-verify-propagation-time-metric │ │ │ ├── common │ │ │ │ ├── 00-namespace.yaml │ │ │ │ ├── channel.yaml │ │ │ │ ├── clusterset.yaml │ │ │ │ ├── clustersetbinding.yaml │ │ │ │ └── placement.yaml │ │ │ ├── failed-no-placement │ │ │ │ └── subscription.yaml │ │ │ ├── failed-placement-wrong │ │ │ │ └── subscription.yaml │ │ │ ├── standalone │ │ │ │ └── subscription.yaml │ │ │ └── successful │ │ │ │ └── subscription.yaml │ │ ├── 21-verify-local-deployment-time-metric │ │ │ ├── 00-namespace.yaml │ │ │ ├── channel.yaml │ │ │ ├── clusterset.yaml │ │ │ ├── clustersetbinding.yaml │ │ │ ├── placement.yaml │ │ │ └── subscription.yaml │ │ ├── 22-ansiblejob-tags │ │ │ ├── 00-secret.yaml │ │ │ ├── 01-placement-rule.yaml │ │ │ ├── 02-channel.yaml │ │ │ └── 03-subscription.yaml │ │ └── 23-git-appsub-status-failed │ │ │ ├── 01-placement.yaml │ │ │ ├── 02-channel.yaml │ │ │ ├── 03-subscription.yaml │ │ │ └── resource │ │ │ └── guestbook-failed.yaml │ ├── e2e_suite_test.go │ └── github │ │ └── nestedSubscription │ │ └── secondsub.yaml ├── github │ ├── .kubernetesignore │ ├── helmcharts │ │ ├── chart1 │ │ │ ├── Chart.yaml │ │ │ ├── charts │ │ │ │ └── subchart1 │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ └── templates │ │ │ │ │ └── minio-secret.yaml │ │ │ ├── templates │ │ │ │ └── configmap.yaml │ │ │ └── values.yaml │ │ ├── chart1Upgrade │ │ │ ├── Chart.yaml │ │ │ ├── charts │ │ │ │ └── subchart1 │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ └── templates │ │ │ │ │ └── minio-secret.yaml │ │ │ ├── templates │ │ │ │ └── configmap.yaml │ │ │ └── values.yaml │ │ ├── chart2 │ │ │ ├── Chart.yaml │ │ │ ├── charts │ │ │ │ └── subchart1 │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ └── templates │ │ │ │ │ └── minio-secret.yaml │ │ │ ├── templates │ │ │ │ └── configmap.yaml │ │ │ └── values.yaml │ │ └── otherCharts │ │ │ └── chart1 │ │ │ ├── Chart.yaml │ │ │ ├── charts │ │ │ └── subchart1 │ │ │ │ ├── Chart.yaml │ │ │ │ └── templates │ │ │ │ └── minio-secret.yaml │ │ │ ├── templates │ │ │ └── configmap.yaml │ │ │ └── values.yaml │ ├── kustomize │ │ ├── base │ │ │ ├── configMap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── kustomization.yaml │ │ │ └── service.yaml │ │ └── overlays │ │ │ ├── inlinePatch │ │ │ └── kustomization.yaml │ │ │ ├── patchjson │ │ │ ├── add_to_configmap.yaml │ │ │ └── kustomization.yaml │ │ │ ├── production │ │ │ ├── deployment.yaml │ │ │ └── kustomization.yml │ │ │ └── staging │ │ │ ├── kustomization.yaml │ │ │ └── map.yaml │ ├── kustomizeLabels │ │ ├── base │ │ │ ├── KlusterletAddonConfig.yaml │ │ │ ├── ManagedCluster.yaml │ │ │ ├── Namespace.yaml │ │ │ └── kustomization.yaml │ │ └── namctigtd27d │ │ │ └── kustomization.yaml │ ├── multiresource │ │ └── multiresource.yaml │ ├── nestedKustomize │ │ ├── wordpress │ │ │ ├── kustomization.yaml │ │ │ ├── mysql │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── secret.yaml │ │ │ │ └── service.yaml │ │ │ ├── patch.yaml │ │ │ └── wordpress │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ └── service.yaml │ │ └── wordpress2 │ │ │ ├── kustomization.yaml │ │ │ ├── mysql │ │ │ ├── deployment.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── secret.yaml │ │ │ └── service.yaml │ │ │ ├── patch.yaml │ │ │ └── wordpress │ │ │ ├── deployment.yaml │ │ │ ├── kustomization.yaml │ │ │ └── service.yaml │ └── resources │ │ ├── configmap.yaml │ │ ├── deploy │ │ ├── crds │ │ │ └── crontab.yaml │ │ ├── sub1_cm.yaml │ │ ├── sub1_invalid.yaml │ │ └── sub1_secret.yaml │ │ ├── invalid.yaml │ │ ├── multiresource.yaml │ │ ├── namespace.yml │ │ ├── rbac │ │ ├── clusterrole.yml │ │ ├── clusterrolebinding.yaml │ │ └── sa.yaml │ │ └── secret.yaml └── hooks │ └── ansible │ ├── post-only │ ├── cfg_and_ansible.yaml │ └── posthook │ │ └── sub_posthook.yaml │ └── pre-and-post │ ├── cfg_and_ansible.yaml │ ├── posthook │ └── sub_posthook.yaml │ └── prehook │ └── sub_prehook.yaml └── testhr ├── e2e ├── index.yaml ├── ingress-0.1.0.tgz ├── ingress-0.2.0.tgz ├── install-ingress │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── ingress.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ └── tests │ │ │ └── test-connection.yaml │ └── values.yaml ├── preinstall-hook-0.1.0.tgz ├── preinstall-hook │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── ingress.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── tests │ │ │ └── test-connection.yaml │ │ └── wait-long-job.yaml │ └── values.yaml └── upgrade-fail-ingress │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── bad-deployment.yaml │ ├── hpa.yaml │ ├── ingress.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ └── tests │ │ └── test-connection.yaml │ └── values.yaml ├── github ├── nginx-chart-upgrade │ └── nginx-chart │ │ ├── Chart.yaml │ │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ └── service.yaml │ │ └── values.yaml ├── nginx-chart │ ├── Chart.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ └── service.yaml │ └── values.yaml ├── subscription-release-test-1 │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ └── deployment_subscription_release.yaml │ └── values.yaml ├── subscription-release-test-2 │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ └── deployment_subscription_release.yaml │ └── values.yaml └── subscription-release-test-3 │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ ├── _helpers.tpl │ └── deployment_subscription_release.yaml │ └── values.yaml └── helmrepo ├── index.yaml ├── nginx-chart-0.1.0.tgz ├── nginx-chart-0.2.0.tgz ├── nginx-ingress-1.40.0_keep.tgz ├── subscription-release-test-1-0.1.0.tgz └── subscription-release-test-3-0.1.0.tgz /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/.github/ISSUE_TEMPLATE/other-report.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/dco.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/.github/workflows/dco.yml -------------------------------------------------------------------------------- /.github/workflows/fossa.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/.github/workflows/fossa.yml -------------------------------------------------------------------------------- /.github/workflows/go-postsubmit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/.github/workflows/go-postsubmit.yml -------------------------------------------------------------------------------- /.github/workflows/go-presubmit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/.github/workflows/go-presubmit.yml -------------------------------------------------------------------------------- /.github/workflows/go-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/.github/workflows/go-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG/CHANGELOG-v0.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/CHANGELOG/CHANGELOG-v0.4.md -------------------------------------------------------------------------------- /CHANGELOG/CHANGELOG-v0.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/CHANGELOG/CHANGELOG-v0.5.md -------------------------------------------------------------------------------- /CHANGELOG/CHANGELOG-v0.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/CHANGELOG/CHANGELOG-v0.6.md -------------------------------------------------------------------------------- /COMPONENT_NAME: -------------------------------------------------------------------------------- 1 | multicluster-operators-subscription -------------------------------------------------------------------------------- /COMPONENT_VERSION: -------------------------------------------------------------------------------- 1 | 2.13.0 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DCO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/DCO -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.prow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/Makefile.prow -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/OWNERS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_MAIN_BRANCH: -------------------------------------------------------------------------------- 1 | main 2 | -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/SECURITY.md -------------------------------------------------------------------------------- /addon/addon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/addon/addon.go -------------------------------------------------------------------------------- /addon/addon_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/addon/addon_test.go -------------------------------------------------------------------------------- /addon/manifests/chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/addon/manifests/chart/Chart.yaml -------------------------------------------------------------------------------- /addon/manifests/chart/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/addon/manifests/chart/templates/_helpers.tpl -------------------------------------------------------------------------------- /addon/manifests/chart/templates/apps.open-cluster-management.io_helmreleases_crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/addon/manifests/chart/templates/apps.open-cluster-management.io_helmreleases_crd.yaml -------------------------------------------------------------------------------- /addon/manifests/chart/templates/apps.open-cluster-management.io_subscriptions_crd_v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/addon/manifests/chart/templates/apps.open-cluster-management.io_subscriptions_crd_v1.yaml -------------------------------------------------------------------------------- /addon/manifests/chart/templates/apps.open-cluster-management.io_subscriptionstatuses_crd_v1alpha1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/addon/manifests/chart/templates/apps.open-cluster-management.io_subscriptionstatuses_crd_v1alpha1.yaml -------------------------------------------------------------------------------- /addon/manifests/chart/templates/cluster_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/addon/manifests/chart/templates/cluster_role.yaml -------------------------------------------------------------------------------- /addon/manifests/chart/templates/cluster_role_admin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/addon/manifests/chart/templates/cluster_role_admin.yaml -------------------------------------------------------------------------------- /addon/manifests/chart/templates/cluster_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/addon/manifests/chart/templates/cluster_role_binding.yaml -------------------------------------------------------------------------------- /addon/manifests/chart/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/addon/manifests/chart/templates/deployment.yaml -------------------------------------------------------------------------------- /addon/manifests/chart/templates/metrics_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/addon/manifests/chart/templates/metrics_service.yaml -------------------------------------------------------------------------------- /addon/manifests/chart/templates/pre_delete_hook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/addon/manifests/chart/templates/pre_delete_hook.yaml -------------------------------------------------------------------------------- /addon/manifests/chart/templates/service_account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/addon/manifests/chart/templates/service_account.yaml -------------------------------------------------------------------------------- /addon/manifests/chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/addon/manifests/chart/values.yaml -------------------------------------------------------------------------------- /addon/manifests/permission/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/addon/manifests/permission/role.yaml -------------------------------------------------------------------------------- /addon/manifests/permission/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/addon/manifests/permission/rolebinding.yaml -------------------------------------------------------------------------------- /cmd/appsubsummary/exec/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/cmd/appsubsummary/exec/manager.go -------------------------------------------------------------------------------- /cmd/appsubsummary/exec/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/cmd/appsubsummary/exec/options.go -------------------------------------------------------------------------------- /cmd/appsubsummary/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/cmd/appsubsummary/main.go -------------------------------------------------------------------------------- /cmd/manager/exec/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/cmd/manager/exec/manager.go -------------------------------------------------------------------------------- /cmd/manager/exec/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/cmd/manager/exec/options.go -------------------------------------------------------------------------------- /cmd/manager/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/cmd/manager/main.go -------------------------------------------------------------------------------- /cmd/placementrule/exec/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/cmd/placementrule/exec/manager.go -------------------------------------------------------------------------------- /cmd/placementrule/exec/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/cmd/placementrule/exec/options.go -------------------------------------------------------------------------------- /cmd/placementrule/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/cmd/placementrule/main.go -------------------------------------------------------------------------------- /cmd/scripts/getAppSubStatus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/cmd/scripts/getAppSubStatus.sh -------------------------------------------------------------------------------- /cmd/scripts/getLastUpdateTime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/cmd/scripts/getLastUpdateTime.sh -------------------------------------------------------------------------------- /cmd/uninstall-crd/uninstall-crd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/cmd/uninstall-crd/uninstall-crd.go -------------------------------------------------------------------------------- /common/Makefile.common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/common/Makefile.common.mk -------------------------------------------------------------------------------- /common/config/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/common/config/.golangci.yml -------------------------------------------------------------------------------- /common/config/.hadolint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/common/config/.hadolint.yml -------------------------------------------------------------------------------- /common/config/.yamllint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/common/config/.yamllint.yml -------------------------------------------------------------------------------- /common/config/mdl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/common/config/mdl.rb -------------------------------------------------------------------------------- /common/config/sass-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/common/config/sass-lint.yml -------------------------------------------------------------------------------- /common/config/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/common/config/tslint.json -------------------------------------------------------------------------------- /common/scripts/gobuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/common/scripts/gobuild.sh -------------------------------------------------------------------------------- /common/scripts/lint_go.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/common/scripts/lint_go.sh -------------------------------------------------------------------------------- /deploy/addon/addon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/addon/addon.yaml -------------------------------------------------------------------------------- /deploy/common/0000_03_clusters.open-cluster-management.io_placements.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/common/0000_03_clusters.open-cluster-management.io_placements.crd.yaml -------------------------------------------------------------------------------- /deploy/common/0000_04_clusters.open-cluster-management.io_placementdecisions.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/common/0000_04_clusters.open-cluster-management.io_placementdecisions.crd.yaml -------------------------------------------------------------------------------- /deploy/common/apps.open-cluster-management.io_channels_crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/common/apps.open-cluster-management.io_channels_crd.yaml -------------------------------------------------------------------------------- /deploy/common/apps.open-cluster-management.io_helmreleases_crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/common/apps.open-cluster-management.io_helmreleases_crd.yaml -------------------------------------------------------------------------------- /deploy/common/apps.open-cluster-management.io_placementrules_crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/common/apps.open-cluster-management.io_placementrules_crd.yaml -------------------------------------------------------------------------------- /deploy/common/apps.open-cluster-management.io_subscriptionreports_crd_v1alpha1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/common/apps.open-cluster-management.io_subscriptionreports_crd_v1alpha1.yaml -------------------------------------------------------------------------------- /deploy/common/apps.open-cluster-management.io_subscriptions_crd_v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/common/apps.open-cluster-management.io_subscriptions_crd_v1.yaml -------------------------------------------------------------------------------- /deploy/common/apps.open-cluster-management.io_subscriptionstatuses_crd_v1alpha1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/common/apps.open-cluster-management.io_subscriptionstatuses_crd_v1alpha1.yaml -------------------------------------------------------------------------------- /deploy/common/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/common/clusterrole.yaml -------------------------------------------------------------------------------- /deploy/common/clusterrole_agent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/common/clusterrole_agent.yaml -------------------------------------------------------------------------------- /deploy/common/clusterrole_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/common/clusterrole_binding.yaml -------------------------------------------------------------------------------- /deploy/common/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/common/namespace.yaml -------------------------------------------------------------------------------- /deploy/common/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/common/service.yaml -------------------------------------------------------------------------------- /deploy/common/service_account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/common/service_account.yaml -------------------------------------------------------------------------------- /deploy/crds/apps.open-cluster-management.io_subscriptionreports_crd_v1alpha1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/crds/apps.open-cluster-management.io_subscriptionreports_crd_v1alpha1.yaml -------------------------------------------------------------------------------- /deploy/crds/apps.open-cluster-management.io_subscriptions_crd_v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/crds/apps.open-cluster-management.io_subscriptions_crd_v1.yaml -------------------------------------------------------------------------------- /deploy/crds/apps.open-cluster-management.io_subscriptionstatuses_crd_v1alpha1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/crds/apps.open-cluster-management.io_subscriptionstatuses_crd_v1alpha1.yaml -------------------------------------------------------------------------------- /deploy/hub-common/apps.open-cluster-management.io_channels_crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/hub-common/apps.open-cluster-management.io_channels_crd.yaml -------------------------------------------------------------------------------- /deploy/hub-common/apps.open-cluster-management.io_helmreleases_crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/hub-common/apps.open-cluster-management.io_helmreleases_crd.yaml -------------------------------------------------------------------------------- /deploy/hub-common/apps.open-cluster-management.io_placementrules_crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/hub-common/apps.open-cluster-management.io_placementrules_crd.yaml -------------------------------------------------------------------------------- /deploy/hub-common/apps.open-cluster-management.io_subscriptionreports_crd_v1alpha1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/hub-common/apps.open-cluster-management.io_subscriptionreports_crd_v1alpha1.yaml -------------------------------------------------------------------------------- /deploy/hub-common/apps.open-cluster-management.io_subscriptions_crd_v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/hub-common/apps.open-cluster-management.io_subscriptions_crd_v1.yaml -------------------------------------------------------------------------------- /deploy/hub-common/apps.open-cluster-management.io_subscriptionstatuses_crd_v1alpha1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/hub-common/apps.open-cluster-management.io_subscriptionstatuses_crd_v1alpha1.yaml -------------------------------------------------------------------------------- /deploy/hub-common/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/hub-common/clusterrole.yaml -------------------------------------------------------------------------------- /deploy/hub-common/clusterrole_agent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/hub-common/clusterrole_agent.yaml -------------------------------------------------------------------------------- /deploy/hub-common/clusterrole_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/hub-common/clusterrole_binding.yaml -------------------------------------------------------------------------------- /deploy/hub-common/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/hub-common/service.yaml -------------------------------------------------------------------------------- /deploy/hub-common/service_account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/hub-common/service_account.yaml -------------------------------------------------------------------------------- /deploy/hub/channel-operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/hub/channel-operator.yaml -------------------------------------------------------------------------------- /deploy/hub/metrics_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/hub/metrics_service.yaml -------------------------------------------------------------------------------- /deploy/hub/operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/hub/operator.yaml -------------------------------------------------------------------------------- /deploy/hub/placementrule-operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/hub/placementrule-operator.yaml -------------------------------------------------------------------------------- /deploy/hub/subscription-report-operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/hub/subscription-report-operator.yaml -------------------------------------------------------------------------------- /deploy/managed-common/apps.open-cluster-management.io_helmreleases_crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/managed-common/apps.open-cluster-management.io_helmreleases_crd.yaml -------------------------------------------------------------------------------- /deploy/managed-common/apps.open-cluster-management.io_placementrules_crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/managed-common/apps.open-cluster-management.io_placementrules_crd.yaml -------------------------------------------------------------------------------- /deploy/managed-common/apps.open-cluster-management.io_subscriptionreports_crd_v1alpha1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/managed-common/apps.open-cluster-management.io_subscriptionreports_crd_v1alpha1.yaml -------------------------------------------------------------------------------- /deploy/managed-common/apps.open-cluster-management.io_subscriptions_crd_v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/managed-common/apps.open-cluster-management.io_subscriptions_crd_v1.yaml -------------------------------------------------------------------------------- /deploy/managed-common/apps.open-cluster-management.io_subscriptionstatuses_crd_v1alpha1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/managed-common/apps.open-cluster-management.io_subscriptionstatuses_crd_v1alpha1.yaml -------------------------------------------------------------------------------- /deploy/managed-common/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/managed-common/clusterrole.yaml -------------------------------------------------------------------------------- /deploy/managed-common/clusterrole2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/managed-common/clusterrole2.yaml -------------------------------------------------------------------------------- /deploy/managed-common/clusterrole_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/managed-common/clusterrole_binding.yaml -------------------------------------------------------------------------------- /deploy/managed-common/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/managed-common/service.yaml -------------------------------------------------------------------------------- /deploy/managed-common/service_account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/managed-common/service_account.yaml -------------------------------------------------------------------------------- /deploy/managed/metrics_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/managed/metrics_service.yaml -------------------------------------------------------------------------------- /deploy/managed/operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/managed/operator.yaml -------------------------------------------------------------------------------- /deploy/ocm/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/ocm/install.sh -------------------------------------------------------------------------------- /deploy/ocm/verify_app_addon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/ocm/verify_app_addon.sh -------------------------------------------------------------------------------- /deploy/olm-catalog/multicluster-operators-subscription/manifests/app.k8s.io_applications_crd_v1beta1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/olm-catalog/multicluster-operators-subscription/manifests/app.k8s.io_applications_crd_v1beta1.yaml -------------------------------------------------------------------------------- /deploy/olm-catalog/multicluster-operators-subscription/manifests/apps.open-cluster-management.io_channels_crd_v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/olm-catalog/multicluster-operators-subscription/manifests/apps.open-cluster-management.io_channels_crd_v1.yaml -------------------------------------------------------------------------------- /deploy/olm-catalog/multicluster-operators-subscription/manifests/apps.open-cluster-management.io_deployables_crd_v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/olm-catalog/multicluster-operators-subscription/manifests/apps.open-cluster-management.io_deployables_crd_v1.yaml -------------------------------------------------------------------------------- /deploy/olm-catalog/multicluster-operators-subscription/manifests/apps.open-cluster-management.io_gitopsclusters_crd_v1beta1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/olm-catalog/multicluster-operators-subscription/manifests/apps.open-cluster-management.io_gitopsclusters_crd_v1beta1.yaml -------------------------------------------------------------------------------- /deploy/olm-catalog/multicluster-operators-subscription/manifests/apps.open-cluster-management.io_helmreleases_crd_v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/olm-catalog/multicluster-operators-subscription/manifests/apps.open-cluster-management.io_helmreleases_crd_v1.yaml -------------------------------------------------------------------------------- /deploy/olm-catalog/multicluster-operators-subscription/manifests/apps.open-cluster-management.io_multiclusterapplicationsetreports.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/olm-catalog/multicluster-operators-subscription/manifests/apps.open-cluster-management.io_multiclusterapplicationsetreports.yaml -------------------------------------------------------------------------------- /deploy/olm-catalog/multicluster-operators-subscription/manifests/apps.open-cluster-management.io_placementrules_crd_v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/olm-catalog/multicluster-operators-subscription/manifests/apps.open-cluster-management.io_placementrules_crd_v1.yaml -------------------------------------------------------------------------------- /deploy/olm-catalog/multicluster-operators-subscription/manifests/apps.open-cluster-management.io_subscriptionreports_crd_v1alpha1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/olm-catalog/multicluster-operators-subscription/manifests/apps.open-cluster-management.io_subscriptionreports_crd_v1alpha1.yaml -------------------------------------------------------------------------------- /deploy/olm-catalog/multicluster-operators-subscription/manifests/apps.open-cluster-management.io_subscriptions_crd_v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/olm-catalog/multicluster-operators-subscription/manifests/apps.open-cluster-management.io_subscriptions_crd_v1.yaml -------------------------------------------------------------------------------- /deploy/olm-catalog/multicluster-operators-subscription/manifests/apps.open-cluster-management.io_subscriptionstatuses_crd_v1alpha1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/olm-catalog/multicluster-operators-subscription/manifests/apps.open-cluster-management.io_subscriptionstatuses_crd_v1alpha1.yaml -------------------------------------------------------------------------------- /deploy/olm-catalog/multicluster-operators-subscription/manifests/gitops-addon.addonTemplates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/olm-catalog/multicluster-operators-subscription/manifests/gitops-addon.addonTemplates.yaml -------------------------------------------------------------------------------- /deploy/olm-catalog/multicluster-operators-subscription/manifests/gitops-addon.clusterManagementAddon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/olm-catalog/multicluster-operators-subscription/manifests/gitops-addon.clusterManagementAddon.yaml -------------------------------------------------------------------------------- /deploy/olm-catalog/multicluster-operators-subscription/manifests/multicluster-applications-clustermanagementaddon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/olm-catalog/multicluster-operators-subscription/manifests/multicluster-applications-clustermanagementaddon.yaml -------------------------------------------------------------------------------- /deploy/olm-catalog/multicluster-operators-subscription/manifests/multicluster-operators-subscription.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/olm-catalog/multicluster-operators-subscription/manifests/multicluster-operators-subscription.clusterserviceversion.yaml -------------------------------------------------------------------------------- /deploy/olm-catalog/multicluster-operators-subscription/manifests/service_metrics_hub_subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/olm-catalog/multicluster-operators-subscription/manifests/service_metrics_hub_subscription.yaml -------------------------------------------------------------------------------- /deploy/olm-catalog/multicluster-operators-subscription/manifests/service_metrics_standalone_subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/olm-catalog/multicluster-operators-subscription/manifests/service_metrics_standalone_subscription.yaml -------------------------------------------------------------------------------- /deploy/olm-catalog/multicluster-operators-subscription/metadata/annotations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/olm-catalog/multicluster-operators-subscription/metadata/annotations.yaml -------------------------------------------------------------------------------- /deploy/perf/appsubstatus/appSub-tpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/perf/appsubstatus/appSub-tpl.yaml -------------------------------------------------------------------------------- /deploy/perf/appsubstatus/appSubStatus-tpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/perf/appsubstatus/appSubStatus-tpl.yaml -------------------------------------------------------------------------------- /deploy/perf/appsubstatus/appSubStatusYamlGenerator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/perf/appsubstatus/appSubStatusYamlGenerator.sh -------------------------------------------------------------------------------- /deploy/perf/appsubstatus/batchPatch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/perf/appsubstatus/batchPatch.sh -------------------------------------------------------------------------------- /deploy/perf/appsubstatus/cluster-tpl.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | apiVersion: v1 3 | kind: Namespace 4 | metadata: 5 | name: test-cluster- 6 | -------------------------------------------------------------------------------- /deploy/perf/appsubstatus/singleAppsubStatusSample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/perf/appsubstatus/singleAppsubStatusSample.yaml -------------------------------------------------------------------------------- /deploy/perf/manifestwork/00-batchPatchClusters.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/perf/manifestwork/00-batchPatchClusters.sh -------------------------------------------------------------------------------- /deploy/perf/manifestwork/01-channel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/perf/manifestwork/01-channel.yaml -------------------------------------------------------------------------------- /deploy/perf/manifestwork/02-placementRuleYamlGenerator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/perf/manifestwork/02-placementRuleYamlGenerator.sh -------------------------------------------------------------------------------- /deploy/perf/manifestwork/03-appSubYamlGenerator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/perf/manifestwork/03-appSubYamlGenerator.sh -------------------------------------------------------------------------------- /deploy/perf/manifestwork/04-deleteAppSubYamlGenerator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/perf/manifestwork/04-deleteAppSubYamlGenerator.sh -------------------------------------------------------------------------------- /deploy/perf/manifestwork/appsub-tpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/perf/manifestwork/appsub-tpl.yaml -------------------------------------------------------------------------------- /deploy/perf/manifestwork/manifestwork-tpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/perf/manifestwork/manifestwork-tpl.yaml -------------------------------------------------------------------------------- /deploy/perf/manifestwork/placementrule-tpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/perf/manifestwork/placementrule-tpl.yaml -------------------------------------------------------------------------------- /deploy/perf/subscriptionReport/app-appsubreport-tpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/perf/subscriptionReport/app-appsubreport-tpl.yaml -------------------------------------------------------------------------------- /deploy/perf/subscriptionReport/appsub-tpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/perf/subscriptionReport/appsub-tpl.yaml -------------------------------------------------------------------------------- /deploy/perf/subscriptionReport/appsubReportYamlGenerator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/perf/subscriptionReport/appsubReportYamlGenerator.sh -------------------------------------------------------------------------------- /deploy/perf/subscriptionReport/cluster-appsubreport-header-tpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/perf/subscriptionReport/cluster-appsubreport-header-tpl.yaml -------------------------------------------------------------------------------- /deploy/perf/subscriptionReport/cluster-appsubreport-result-tpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/perf/subscriptionReport/cluster-appsubreport-result-tpl.yaml -------------------------------------------------------------------------------- /deploy/perf/subscriptionReport/cluster-tpl.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | apiVersion: v1 3 | kind: Namespace 4 | metadata: 5 | name: 6 | -------------------------------------------------------------------------------- /deploy/standalone/metrics_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/standalone/metrics_service.yaml -------------------------------------------------------------------------------- /deploy/standalone/operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/deploy/standalone/operator.yaml -------------------------------------------------------------------------------- /docs/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/docs/development.md -------------------------------------------------------------------------------- /docs/git_server_connection_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/docs/git_server_connection_types.md -------------------------------------------------------------------------------- /docs/gitrepo_subscription.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/docs/gitrepo_subscription.md -------------------------------------------------------------------------------- /docs/helmrepo_subscription.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/docs/helmrepo_subscription.md -------------------------------------------------------------------------------- /docs/metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/docs/metrics.md -------------------------------------------------------------------------------- /docs/objectstorage_subscription.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/docs/objectstorage_subscription.md -------------------------------------------------------------------------------- /docs/patching_subscription_image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/docs/patching_subscription_image.md -------------------------------------------------------------------------------- /docs/troubleshooting_guidence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/docs/troubleshooting_guidence.md -------------------------------------------------------------------------------- /e2e/e2e_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/e2e/e2e_test.go -------------------------------------------------------------------------------- /examples/ansible-post/appsub/01-clustersetbinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/ansible-post/appsub/01-clustersetbinding.yaml -------------------------------------------------------------------------------- /examples/ansible-post/appsub/02-channel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/ansible-post/appsub/02-channel.yaml -------------------------------------------------------------------------------- /examples/ansible-post/appsub/02-placement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/ansible-post/appsub/02-placement.yaml -------------------------------------------------------------------------------- /examples/ansible-post/appsub/03-subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/ansible-post/appsub/03-subscription.yaml -------------------------------------------------------------------------------- /examples/ansible-post/appsub/EDITME-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/ansible-post/appsub/EDITME-secret.yaml -------------------------------------------------------------------------------- /examples/ansible-post/appsub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/ansible-post/appsub/README.md -------------------------------------------------------------------------------- /examples/ansible-post/resources/cfg_and_ansible.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/ansible-post/resources/cfg_and_ansible.yaml -------------------------------------------------------------------------------- /examples/ansible-post/resources/posthook/sub_posthook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/ansible-post/resources/posthook/sub_posthook.yaml -------------------------------------------------------------------------------- /examples/ansible-pre-workflow/appsub/01-clustersetbinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/ansible-pre-workflow/appsub/01-clustersetbinding.yaml -------------------------------------------------------------------------------- /examples/ansible-pre-workflow/appsub/02-channel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/ansible-pre-workflow/appsub/02-channel.yaml -------------------------------------------------------------------------------- /examples/ansible-pre-workflow/appsub/02-placement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/ansible-pre-workflow/appsub/02-placement.yaml -------------------------------------------------------------------------------- /examples/ansible-pre-workflow/appsub/03-subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/ansible-pre-workflow/appsub/03-subscription.yaml -------------------------------------------------------------------------------- /examples/ansible-pre-workflow/appsub/EDITME-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/ansible-pre-workflow/appsub/EDITME-secret.yaml -------------------------------------------------------------------------------- /examples/ansible-pre-workflow/appsub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/ansible-pre-workflow/appsub/README.md -------------------------------------------------------------------------------- /examples/ansible-pre-workflow/resources/cfg_and_ansible.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/ansible-pre-workflow/resources/cfg_and_ansible.yaml -------------------------------------------------------------------------------- /examples/ansible-pre-workflow/resources/prehook/ansjob_prehook_workflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/ansible-pre-workflow/resources/prehook/ansjob_prehook_workflow.yaml -------------------------------------------------------------------------------- /examples/ansible-tags/appsub/01-clustersetbinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/ansible-tags/appsub/01-clustersetbinding.yaml -------------------------------------------------------------------------------- /examples/ansible-tags/appsub/02-channel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/ansible-tags/appsub/02-channel.yaml -------------------------------------------------------------------------------- /examples/ansible-tags/appsub/02-placement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/ansible-tags/appsub/02-placement.yaml -------------------------------------------------------------------------------- /examples/ansible-tags/appsub/03-subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/ansible-tags/appsub/03-subscription.yaml -------------------------------------------------------------------------------- /examples/ansible-tags/appsub/EDITME-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/ansible-tags/appsub/EDITME-secret.yaml -------------------------------------------------------------------------------- /examples/ansible-tags/appsub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/ansible-tags/appsub/README.md -------------------------------------------------------------------------------- /examples/ansible-tags/resources/cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/ansible-tags/resources/cm.yaml -------------------------------------------------------------------------------- /examples/ansible-tags/resources/posthook/ansjob_posthook_tags.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/ansible-tags/resources/posthook/ansjob_posthook_tags.yaml -------------------------------------------------------------------------------- /examples/ansible/appsub/01-clustersetbinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/ansible/appsub/01-clustersetbinding.yaml -------------------------------------------------------------------------------- /examples/ansible/appsub/02-channel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/ansible/appsub/02-channel.yaml -------------------------------------------------------------------------------- /examples/ansible/appsub/02-placement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/ansible/appsub/02-placement.yaml -------------------------------------------------------------------------------- /examples/ansible/appsub/03-subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/ansible/appsub/03-subscription.yaml -------------------------------------------------------------------------------- /examples/ansible/appsub/EDITME-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/ansible/appsub/EDITME-secret.yaml -------------------------------------------------------------------------------- /examples/ansible/appsub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/ansible/appsub/README.md -------------------------------------------------------------------------------- /examples/ansible/resources/cfg_and_ansible.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/ansible/resources/cfg_and_ansible.yaml -------------------------------------------------------------------------------- /examples/ansible/resources/posthook/sub_posthook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/ansible/resources/posthook/sub_posthook.yaml -------------------------------------------------------------------------------- /examples/ansible/resources/prehook/sub_prehook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/ansible/resources/prehook/sub_prehook.yaml -------------------------------------------------------------------------------- /examples/e2e_example/git-commit-subscription-e2e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/e2e_example/git-commit-subscription-e2e.yaml -------------------------------------------------------------------------------- /examples/e2e_example/git-nested-subscription-e2e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/e2e_example/git-nested-subscription-e2e.yaml -------------------------------------------------------------------------------- /examples/e2e_example/git-tag-subscription-e2e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/e2e_example/git-tag-subscription-e2e.yaml -------------------------------------------------------------------------------- /examples/e2e_example/github_channel_e2e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/e2e_example/github_channel_e2e.yaml -------------------------------------------------------------------------------- /examples/e2e_example/github_helm_channel_e2e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/e2e_example/github_helm_channel_e2e.yaml -------------------------------------------------------------------------------- /examples/e2e_example/helm_channel_e2e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/e2e_example/helm_channel_e2e.yaml -------------------------------------------------------------------------------- /examples/e2e_example/local_deployalbe_e2e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/e2e_example/local_deployalbe_e2e.yaml -------------------------------------------------------------------------------- /examples/e2e_example/namespace_channel_e2e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/e2e_example/namespace_channel_e2e.yaml -------------------------------------------------------------------------------- /examples/e2e_example/object_bucket_e2e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/e2e_example/object_bucket_e2e.yaml -------------------------------------------------------------------------------- /examples/e2e_example/self-host-git.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/e2e_example/self-host-git.yaml -------------------------------------------------------------------------------- /examples/git-simple-sub/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/git-simple-sub/deployment.yaml -------------------------------------------------------------------------------- /examples/github-channel/.kubernetesignore: -------------------------------------------------------------------------------- 1 | * 2 | !sample-deployment.yaml -------------------------------------------------------------------------------- /examples/github-channel/00-namespace.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: ibmcharts -------------------------------------------------------------------------------- /examples/github-channel/01-channel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/github-channel/01-channel.yaml -------------------------------------------------------------------------------- /examples/github-channel/02-subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/github-channel/02-subscription.yaml -------------------------------------------------------------------------------- /examples/github-channel/10-namespace.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: kuberesources -------------------------------------------------------------------------------- /examples/github-channel/11-channel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/github-channel/11-channel.yaml -------------------------------------------------------------------------------- /examples/github-channel/12-subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/github-channel/12-subscription.yaml -------------------------------------------------------------------------------- /examples/github-channel/sample-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/github-channel/sample-deployment.yaml -------------------------------------------------------------------------------- /examples/helmrepo-channel/00-namespace.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: dev 5 | -------------------------------------------------------------------------------- /examples/helmrepo-channel/01-channel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/helmrepo-channel/01-channel.yaml -------------------------------------------------------------------------------- /examples/helmrepo-channel/02-subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/helmrepo-channel/02-subscription.yaml -------------------------------------------------------------------------------- /examples/helmrepo-hub-channel/00-namespace.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: dev 5 | -------------------------------------------------------------------------------- /examples/helmrepo-hub-channel/01-channel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/helmrepo-hub-channel/01-channel.yaml -------------------------------------------------------------------------------- /examples/helmrepo-hub-channel/01-clustersetbinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/helmrepo-hub-channel/01-clustersetbinding.yaml -------------------------------------------------------------------------------- /examples/helmrepo-hub-channel/02-placement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/helmrepo-hub-channel/02-placement.yaml -------------------------------------------------------------------------------- /examples/helmrepo-hub-channel/02-subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/helmrepo-hub-channel/02-subscription.yaml -------------------------------------------------------------------------------- /examples/local-git-sub/00-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/local-git-sub/00-namespace.yaml -------------------------------------------------------------------------------- /examples/local-git-sub/channel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/local-git-sub/channel.yaml -------------------------------------------------------------------------------- /examples/local-git-sub/subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/local-git-sub/subscription.yaml -------------------------------------------------------------------------------- /examples/namespace-channel/00-namespace.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: dev 5 | -------------------------------------------------------------------------------- /examples/namespace-channel/01-channel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/namespace-channel/01-channel.yaml -------------------------------------------------------------------------------- /examples/namespace-channel/02-subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/namespace-channel/02-subscription.yaml -------------------------------------------------------------------------------- /examples/namespace-channel/03-dev2-subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/namespace-channel/03-dev2-subscription.yaml -------------------------------------------------------------------------------- /examples/namespace-channel/rollingupdate/rollingupdate-subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/namespace-channel/rollingupdate/rollingupdate-subscription.yaml -------------------------------------------------------------------------------- /examples/remote-git-sub-op/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/remote-git-sub-op/deployment.yaml -------------------------------------------------------------------------------- /examples/remote-git-sub-op/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/remote-git-sub-op/ingress.yaml -------------------------------------------------------------------------------- /examples/remote-git-sub-op/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/remote-git-sub-op/service.yaml -------------------------------------------------------------------------------- /examples/remote-git-sub/01-clustersetbinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/remote-git-sub/01-clustersetbinding.yaml -------------------------------------------------------------------------------- /examples/remote-git-sub/01-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/remote-git-sub/01-namespace.yaml -------------------------------------------------------------------------------- /examples/remote-git-sub/02-channel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/remote-git-sub/02-channel.yaml -------------------------------------------------------------------------------- /examples/remote-git-sub/02-placement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/remote-git-sub/02-placement.yaml -------------------------------------------------------------------------------- /examples/remote-git-sub/02-subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/examples/remote-git-sub/02-subscription.yaml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/go.sum -------------------------------------------------------------------------------- /hack/boilerplate.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/hack/boilerplate.go.txt -------------------------------------------------------------------------------- /hack/test/0000_00_authentication.open-cluster-management.io_managedserviceaccounts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/hack/test/0000_00_authentication.open-cluster-management.io_managedserviceaccounts.yaml -------------------------------------------------------------------------------- /hack/test/0000_00_work.open-cluster-management.io_manifestworks.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/hack/test/0000_00_work.open-cluster-management.io_manifestworks.crd.yaml -------------------------------------------------------------------------------- /hack/test/0000_01_work.open-cluster-management.io_appliedmanifestworks.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/hack/test/0000_01_work.open-cluster-management.io_appliedmanifestworks.crd.yaml -------------------------------------------------------------------------------- /hack/test/0001_01_work.open-cluster-management.io_appliedmanifestworks.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/hack/test/0001_01_work.open-cluster-management.io_appliedmanifestworks.crd.yaml -------------------------------------------------------------------------------- /hack/test/apps.open-cluster-management.io_channel_crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/hack/test/apps.open-cluster-management.io_channel_crd.yaml -------------------------------------------------------------------------------- /hack/test/apps.open-cluster-management.io_helmrelease_crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/hack/test/apps.open-cluster-management.io_helmrelease_crd.yaml -------------------------------------------------------------------------------- /hack/test/apps.open-cluster-management.io_placementrules_crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/hack/test/apps.open-cluster-management.io_placementrules_crd.yaml -------------------------------------------------------------------------------- /hack/test/clusters.open-cluster-management.io_managedclusters.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/hack/test/clusters.open-cluster-management.io_managedclusters.crd.yaml -------------------------------------------------------------------------------- /hack/test/placementdecisions.crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/hack/test/placementdecisions.crd.yaml -------------------------------------------------------------------------------- /hack/test/tower.ansible.com_ansiblejobs_crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/hack/test/tower.ansible.com_ansiblejobs_crd.yaml -------------------------------------------------------------------------------- /hack/test/view.open-cluster-management.io_managedclusterviews.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/hack/test/view.open-cluster-management.io_managedclusterviews.yaml -------------------------------------------------------------------------------- /images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/images/architecture.png -------------------------------------------------------------------------------- /pkg/apis/addtoscheme_apps_v1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/apis/addtoscheme_apps_v1.go -------------------------------------------------------------------------------- /pkg/apis/addtoscheme_apps_v1alpha1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/apis/addtoscheme_apps_v1alpha1.go -------------------------------------------------------------------------------- /pkg/apis/apis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/apis/apis.go -------------------------------------------------------------------------------- /pkg/apis/apps/ansible/group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/apis/apps/ansible/group.go -------------------------------------------------------------------------------- /pkg/apis/apps/ansible/v1alpha1/ansiblejob_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/apis/apps/ansible/v1alpha1/ansiblejob_types.go -------------------------------------------------------------------------------- /pkg/apis/apps/ansible/v1alpha1/ansiblejob_types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/apis/apps/ansible/v1alpha1/ansiblejob_types_test.go -------------------------------------------------------------------------------- /pkg/apis/apps/ansible/v1alpha1/groupversion_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/apis/apps/ansible/v1alpha1/groupversion_info.go -------------------------------------------------------------------------------- /pkg/apis/apps/ansible/v1alpha1/v1alpha1_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/apis/apps/ansible/v1alpha1/v1alpha1_suite_test.go -------------------------------------------------------------------------------- /pkg/apis/apps/ansible/v1alpha1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/apis/apps/ansible/v1alpha1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /pkg/apis/apps/group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/apis/apps/group.go -------------------------------------------------------------------------------- /pkg/apis/apps/helmrelease/group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/apis/apps/helmrelease/group.go -------------------------------------------------------------------------------- /pkg/apis/apps/helmrelease/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/apis/apps/helmrelease/v1/doc.go -------------------------------------------------------------------------------- /pkg/apis/apps/helmrelease/v1/helmrelease_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/apis/apps/helmrelease/v1/helmrelease_types.go -------------------------------------------------------------------------------- /pkg/apis/apps/helmrelease/v1/helmrelease_types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/apis/apps/helmrelease/v1/helmrelease_types_test.go -------------------------------------------------------------------------------- /pkg/apis/apps/helmrelease/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/apis/apps/helmrelease/v1/register.go -------------------------------------------------------------------------------- /pkg/apis/apps/helmrelease/v1/v1_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/apis/apps/helmrelease/v1/v1_suite_test.go -------------------------------------------------------------------------------- /pkg/apis/apps/helmrelease/v1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/apis/apps/helmrelease/v1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /pkg/apis/apps/placementrule/group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/apis/apps/placementrule/group.go -------------------------------------------------------------------------------- /pkg/apis/apps/placementrule/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/apis/apps/placementrule/v1/doc.go -------------------------------------------------------------------------------- /pkg/apis/apps/placementrule/v1/placementrule_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/apis/apps/placementrule/v1/placementrule_types.go -------------------------------------------------------------------------------- /pkg/apis/apps/placementrule/v1/placementrule_types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/apis/apps/placementrule/v1/placementrule_types_test.go -------------------------------------------------------------------------------- /pkg/apis/apps/placementrule/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/apis/apps/placementrule/v1/register.go -------------------------------------------------------------------------------- /pkg/apis/apps/placementrule/v1/v1_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/apis/apps/placementrule/v1/v1_suite_test.go -------------------------------------------------------------------------------- /pkg/apis/apps/placementrule/v1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/apis/apps/placementrule/v1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /pkg/apis/apps/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/apis/apps/v1/doc.go -------------------------------------------------------------------------------- /pkg/apis/apps/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/apis/apps/v1/register.go -------------------------------------------------------------------------------- /pkg/apis/apps/v1/subscription_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/apis/apps/v1/subscription_types.go -------------------------------------------------------------------------------- /pkg/apis/apps/v1/subscription_types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/apis/apps/v1/subscription_types_test.go -------------------------------------------------------------------------------- /pkg/apis/apps/v1/v1_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/apis/apps/v1/v1_suite_test.go -------------------------------------------------------------------------------- /pkg/apis/apps/v1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/apis/apps/v1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /pkg/apis/apps/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/apis/apps/v1alpha1/doc.go -------------------------------------------------------------------------------- /pkg/apis/apps/v1alpha1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/apis/apps/v1alpha1/register.go -------------------------------------------------------------------------------- /pkg/apis/apps/v1alpha1/subscriptionstatus_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/apis/apps/v1alpha1/subscriptionstatus_types.go -------------------------------------------------------------------------------- /pkg/apis/apps/v1alpha1/subscriptionstatus_types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/apis/apps/v1alpha1/subscriptionstatus_types_test.go -------------------------------------------------------------------------------- /pkg/apis/apps/v1alpha1/v1alpha1_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/apis/apps/v1alpha1/v1alpha1_suite_test.go -------------------------------------------------------------------------------- /pkg/apis/apps/v1alpha1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/apis/apps/v1alpha1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /pkg/apis/view/v1beta1/groupversion_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/apis/view/v1beta1/groupversion_info.go -------------------------------------------------------------------------------- /pkg/apis/view/v1beta1/view_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/apis/view/v1beta1/view_types.go -------------------------------------------------------------------------------- /pkg/apis/view/v1beta1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/apis/view/v1beta1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /pkg/controller/add_appsubsummary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/controller/add_appsubsummary.go -------------------------------------------------------------------------------- /pkg/controller/add_helmrelease.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/controller/add_helmrelease.go -------------------------------------------------------------------------------- /pkg/controller/add_mcm_hub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/controller/add_mcm_hub.go -------------------------------------------------------------------------------- /pkg/controller/add_spoke_token_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/controller/add_spoke_token_controller.go -------------------------------------------------------------------------------- /pkg/controller/add_subscription.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/controller/add_subscription.go -------------------------------------------------------------------------------- /pkg/controller/appsubsummary/appsubsummary_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/controller/appsubsummary/appsubsummary_controller.go -------------------------------------------------------------------------------- /pkg/controller/appsubsummary/appsubsummary_controller_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/controller/appsubsummary/appsubsummary_controller_suite_test.go -------------------------------------------------------------------------------- /pkg/controller/appsubsummary/appsubsummary_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/controller/appsubsummary/appsubsummary_controller_test.go -------------------------------------------------------------------------------- /pkg/controller/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/controller/controller.go -------------------------------------------------------------------------------- /pkg/controller/mcmhub/ansiblejob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/controller/mcmhub/ansiblejob.go -------------------------------------------------------------------------------- /pkg/controller/mcmhub/gitrepo_sync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/controller/mcmhub/gitrepo_sync.go -------------------------------------------------------------------------------- /pkg/controller/mcmhub/gitrepo_sync_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/controller/mcmhub/gitrepo_sync_test.go -------------------------------------------------------------------------------- /pkg/controller/mcmhub/hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/controller/mcmhub/hook.go -------------------------------------------------------------------------------- /pkg/controller/mcmhub/hook_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/controller/mcmhub/hook_suite_test.go -------------------------------------------------------------------------------- /pkg/controller/mcmhub/hook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/controller/mcmhub/hook_test.go -------------------------------------------------------------------------------- /pkg/controller/mcmhub/hub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/controller/mcmhub/hub.go -------------------------------------------------------------------------------- /pkg/controller/mcmhub/hub_git.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/controller/mcmhub/hub_git.go -------------------------------------------------------------------------------- /pkg/controller/mcmhub/hub_git_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/controller/mcmhub/hub_git_test.go -------------------------------------------------------------------------------- /pkg/controller/mcmhub/mcmhub_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/controller/mcmhub/mcmhub_controller.go -------------------------------------------------------------------------------- /pkg/controller/mcmhub/mcmhub_controller_propagation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/controller/mcmhub/mcmhub_controller_propagation_test.go -------------------------------------------------------------------------------- /pkg/controller/mcmhub/mcmhub_controller_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/controller/mcmhub/mcmhub_controller_suite_test.go -------------------------------------------------------------------------------- /pkg/controller/mcmhub/mcmhub_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/controller/mcmhub/mcmhub_controller_test.go -------------------------------------------------------------------------------- /pkg/controller/mcmhub/metaupdate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/controller/mcmhub/metaupdate.go -------------------------------------------------------------------------------- /pkg/controller/mcmhub/placement.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/controller/mcmhub/placement.go -------------------------------------------------------------------------------- /pkg/controller/mcmhub/placement_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/controller/mcmhub/placement_test.go -------------------------------------------------------------------------------- /pkg/controller/mcmhub/propagate_manifestwork.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/controller/mcmhub/propagate_manifestwork.go -------------------------------------------------------------------------------- /pkg/controller/spoketoken/spoke_toke_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/controller/spoketoken/spoke_toke_controller_test.go -------------------------------------------------------------------------------- /pkg/controller/spoketoken/spoke_token_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/controller/spoketoken/spoke_token_controller.go -------------------------------------------------------------------------------- /pkg/controller/spoketoken/spoke_token_controller_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/controller/spoketoken/spoke_token_controller_suite_test.go -------------------------------------------------------------------------------- /pkg/controller/subscription/lease_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/controller/subscription/lease_controller.go -------------------------------------------------------------------------------- /pkg/controller/subscription/lease_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/controller/subscription/lease_controller_test.go -------------------------------------------------------------------------------- /pkg/controller/subscription/reference.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/controller/subscription/reference.go -------------------------------------------------------------------------------- /pkg/controller/subscription/reference_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/controller/subscription/reference_test.go -------------------------------------------------------------------------------- /pkg/controller/subscription/subscription_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/controller/subscription/subscription_controller.go -------------------------------------------------------------------------------- /pkg/controller/subscription/subscription_controller_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/controller/subscription/subscription_controller_suite_test.go -------------------------------------------------------------------------------- /pkg/controller/subscription/subscription_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/controller/subscription/subscription_controller_test.go -------------------------------------------------------------------------------- /pkg/helmrelease/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/helmrelease/client/client.go -------------------------------------------------------------------------------- /pkg/helmrelease/client/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/helmrelease/client/client_test.go -------------------------------------------------------------------------------- /pkg/helmrelease/controller/add_helmrelease.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/helmrelease/controller/add_helmrelease.go -------------------------------------------------------------------------------- /pkg/helmrelease/controller/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/helmrelease/controller/controller.go -------------------------------------------------------------------------------- /pkg/helmrelease/controller/helmrelease/helmrelease_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/helmrelease/controller/helmrelease/helmrelease_controller.go -------------------------------------------------------------------------------- /pkg/helmrelease/controller/helmrelease/helmrelease_controller_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/helmrelease/controller/helmrelease/helmrelease_controller_suite_test.go -------------------------------------------------------------------------------- /pkg/helmrelease/controller/helmrelease/helmrelease_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/helmrelease/controller/helmrelease/helmrelease_controller_test.go -------------------------------------------------------------------------------- /pkg/helmrelease/controller/helmrelease/helmrelease_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/helmrelease/controller/helmrelease/helmrelease_helper.go -------------------------------------------------------------------------------- /pkg/helmrelease/controller/helmrelease/helmreleasemgr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/helmrelease/controller/helmrelease/helmreleasemgr.go -------------------------------------------------------------------------------- /pkg/helmrelease/internal/util/k8sutil/k8sutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/helmrelease/internal/util/k8sutil/k8sutil.go -------------------------------------------------------------------------------- /pkg/helmrelease/internal/util/k8sutil/k8sutil_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/helmrelease/internal/util/k8sutil/k8sutil_test.go -------------------------------------------------------------------------------- /pkg/helmrelease/release/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/helmrelease/release/manager.go -------------------------------------------------------------------------------- /pkg/helmrelease/release/manager_factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/helmrelease/release/manager_factory.go -------------------------------------------------------------------------------- /pkg/helmrelease/utils/helmrepoutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/helmrelease/utils/helmrepoutils.go -------------------------------------------------------------------------------- /pkg/helmrelease/utils/helmrepoutils_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/helmrelease/utils/helmrepoutils_suite_test.go -------------------------------------------------------------------------------- /pkg/helmrelease/utils/helmrepoutils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/helmrelease/utils/helmrepoutils_test.go -------------------------------------------------------------------------------- /pkg/helmrelease/utils/kubernetes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/helmrelease/utils/kubernetes.go -------------------------------------------------------------------------------- /pkg/helmrelease/utils/kubernetes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/helmrelease/utils/kubernetes_test.go -------------------------------------------------------------------------------- /pkg/metrics/add_git_pull_metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/metrics/add_git_pull_metrics.go -------------------------------------------------------------------------------- /pkg/metrics/add_local_deployment_metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/metrics/add_local_deployment_metrics.go -------------------------------------------------------------------------------- /pkg/metrics/add_propagation_metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/metrics/add_propagation_metrics.go -------------------------------------------------------------------------------- /pkg/metrics/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/metrics/metrics.go -------------------------------------------------------------------------------- /pkg/placementrule/controller/add_placementrule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/placementrule/controller/add_placementrule.go -------------------------------------------------------------------------------- /pkg/placementrule/controller/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/placementrule/controller/controller.go -------------------------------------------------------------------------------- /pkg/placementrule/controller/placementrule/placement.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/placementrule/controller/placementrule/placement.go -------------------------------------------------------------------------------- /pkg/placementrule/controller/placementrule/placementdecision.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/placementrule/controller/placementrule/placementdecision.go -------------------------------------------------------------------------------- /pkg/placementrule/controller/placementrule/placementrule_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/placementrule/controller/placementrule/placementrule_controller.go -------------------------------------------------------------------------------- /pkg/placementrule/controller/placementrule/placementrule_controller_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/placementrule/controller/placementrule/placementrule_controller_suite_test.go -------------------------------------------------------------------------------- /pkg/placementrule/controller/placementrule/placementrule_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/placementrule/controller/placementrule/placementrule_controller_test.go -------------------------------------------------------------------------------- /pkg/placementrule/controller/placementrule/placementrule_status_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/placementrule/controller/placementrule/placementrule_status_controller.go -------------------------------------------------------------------------------- /pkg/placementrule/utils/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/placementrule/utils/auth.go -------------------------------------------------------------------------------- /pkg/placementrule/utils/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/placementrule/utils/cluster.go -------------------------------------------------------------------------------- /pkg/placementrule/utils/eventlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/placementrule/utils/eventlog.go -------------------------------------------------------------------------------- /pkg/placementrule/utils/kubernetes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/placementrule/utils/kubernetes.go -------------------------------------------------------------------------------- /pkg/placementrule/utils/label.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/placementrule/utils/label.go -------------------------------------------------------------------------------- /pkg/placementrule/utils/label_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/placementrule/utils/label_test.go -------------------------------------------------------------------------------- /pkg/placementrule/utils/placement.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/placementrule/utils/placement.go -------------------------------------------------------------------------------- /pkg/placementrule/utils/predicate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/placementrule/utils/predicate_test.go -------------------------------------------------------------------------------- /pkg/placementrule/utils/utils_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/placementrule/utils/utils_suite_test.go -------------------------------------------------------------------------------- /pkg/placementrule/utils/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/placementrule/utils/utils_test.go -------------------------------------------------------------------------------- /pkg/subscriber/add_git_subscriber.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/subscriber/add_git_subscriber.go -------------------------------------------------------------------------------- /pkg/subscriber/add_helmrepo_subscriber.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/subscriber/add_helmrepo_subscriber.go -------------------------------------------------------------------------------- /pkg/subscriber/add_objectbucket_subscriber.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/subscriber/add_objectbucket_subscriber.go -------------------------------------------------------------------------------- /pkg/subscriber/git/git_subscriber.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/subscriber/git/git_subscriber.go -------------------------------------------------------------------------------- /pkg/subscriber/git/git_subscriber_item.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/subscriber/git/git_subscriber_item.go -------------------------------------------------------------------------------- /pkg/subscriber/git/git_subscriber_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/subscriber/git/git_subscriber_suite_test.go -------------------------------------------------------------------------------- /pkg/subscriber/git/git_subscriber_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/subscriber/git/git_subscriber_test.go -------------------------------------------------------------------------------- /pkg/subscriber/helmrepo/helm_subscriber_item.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/subscriber/helmrepo/helm_subscriber_item.go -------------------------------------------------------------------------------- /pkg/subscriber/helmrepo/helmrepo_subscriber_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/subscriber/helmrepo/helmrepo_subscriber_suite_test.go -------------------------------------------------------------------------------- /pkg/subscriber/helmrepo/helmrepo_subscriber_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/subscriber/helmrepo/helmrepo_subscriber_test.go -------------------------------------------------------------------------------- /pkg/subscriber/helmrepo/hemrepo_subscriber.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/subscriber/helmrepo/hemrepo_subscriber.go -------------------------------------------------------------------------------- /pkg/subscriber/objectbucket/objectbucket_subscriber.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/subscriber/objectbucket/objectbucket_subscriber.go -------------------------------------------------------------------------------- /pkg/subscriber/objectbucket/objectbucket_subscriber_item.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/subscriber/objectbucket/objectbucket_subscriber_item.go -------------------------------------------------------------------------------- /pkg/subscriber/objectbucket/objectbucket_subscriber_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/subscriber/objectbucket/objectbucket_subscriber_suite_test.go -------------------------------------------------------------------------------- /pkg/subscriber/objectbucket/objectbucket_subscriber_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/subscriber/objectbucket/objectbucket_subscriber_test.go -------------------------------------------------------------------------------- /pkg/subscriber/subscriber.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/subscriber/subscriber.go -------------------------------------------------------------------------------- /pkg/synchronizer/add_kubernetes_synchronizer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/synchronizer/add_kubernetes_synchronizer.go -------------------------------------------------------------------------------- /pkg/synchronizer/kubernetes/extension.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/synchronizer/kubernetes/extension.go -------------------------------------------------------------------------------- /pkg/synchronizer/kubernetes/promethues.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/synchronizer/kubernetes/promethues.go -------------------------------------------------------------------------------- /pkg/synchronizer/kubernetes/sync_appsubstatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/synchronizer/kubernetes/sync_appsubstatus.go -------------------------------------------------------------------------------- /pkg/synchronizer/kubernetes/sync_appsubstatus_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/synchronizer/kubernetes/sync_appsubstatus_test.go -------------------------------------------------------------------------------- /pkg/synchronizer/kubernetes/sync_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/synchronizer/kubernetes/sync_server.go -------------------------------------------------------------------------------- /pkg/synchronizer/kubernetes/sync_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/synchronizer/kubernetes/sync_suite_test.go -------------------------------------------------------------------------------- /pkg/synchronizer/kubernetes/synchronizer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/synchronizer/kubernetes/synchronizer.go -------------------------------------------------------------------------------- /pkg/synchronizer/kubernetes/synchronizer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/synchronizer/kubernetes/synchronizer_test.go -------------------------------------------------------------------------------- /pkg/synchronizer/synchronizer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/synchronizer/synchronizer.go -------------------------------------------------------------------------------- /pkg/utils/aws/objectstore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/utils/aws/objectstore.go -------------------------------------------------------------------------------- /pkg/utils/aws/objectstore_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/utils/aws/objectstore_test.go -------------------------------------------------------------------------------- /pkg/utils/cert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/utils/cert.go -------------------------------------------------------------------------------- /pkg/utils/cert_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/utils/cert_test.go -------------------------------------------------------------------------------- /pkg/utils/eventlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/utils/eventlog.go -------------------------------------------------------------------------------- /pkg/utils/git_test_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/utils/git_test_helper.go -------------------------------------------------------------------------------- /pkg/utils/gitrepo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/utils/gitrepo.go -------------------------------------------------------------------------------- /pkg/utils/gitrepo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/utils/gitrepo_test.go -------------------------------------------------------------------------------- /pkg/utils/helmrepo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/utils/helmrepo.go -------------------------------------------------------------------------------- /pkg/utils/helmrepo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/utils/helmrepo_test.go -------------------------------------------------------------------------------- /pkg/utils/kubernetes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/utils/kubernetes.go -------------------------------------------------------------------------------- /pkg/utils/kustomize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/utils/kustomize.go -------------------------------------------------------------------------------- /pkg/utils/kustomize_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/utils/kustomize_test.go -------------------------------------------------------------------------------- /pkg/utils/label.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/utils/label.go -------------------------------------------------------------------------------- /pkg/utils/label_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/utils/label_test.go -------------------------------------------------------------------------------- /pkg/utils/override.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/utils/override.go -------------------------------------------------------------------------------- /pkg/utils/override_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/utils/override_test.go -------------------------------------------------------------------------------- /pkg/utils/policyreport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/utils/policyreport.go -------------------------------------------------------------------------------- /pkg/utils/policyreport_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/utils/policyreport_test.go -------------------------------------------------------------------------------- /pkg/utils/reference.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/utils/reference.go -------------------------------------------------------------------------------- /pkg/utils/reference_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/utils/reference_test.go -------------------------------------------------------------------------------- /pkg/utils/subscription.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/utils/subscription.go -------------------------------------------------------------------------------- /pkg/utils/subscription_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/utils/subscription_test.go -------------------------------------------------------------------------------- /pkg/utils/timewindow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/utils/timewindow.go -------------------------------------------------------------------------------- /pkg/utils/timewindow_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/utils/timewindow_test.go -------------------------------------------------------------------------------- /pkg/utils/util_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/utils/util_suite_test.go -------------------------------------------------------------------------------- /pkg/utils/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/utils/util_test.go -------------------------------------------------------------------------------- /pkg/webhook/add_webhook_listener.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/webhook/add_webhook_listener.go -------------------------------------------------------------------------------- /pkg/webhook/listener/bitbucket_events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/webhook/listener/bitbucket_events.go -------------------------------------------------------------------------------- /pkg/webhook/listener/bitbucket_events_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/webhook/listener/bitbucket_events_test.go -------------------------------------------------------------------------------- /pkg/webhook/listener/github_events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/webhook/listener/github_events.go -------------------------------------------------------------------------------- /pkg/webhook/listener/gitlab_events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/webhook/listener/gitlab_events.go -------------------------------------------------------------------------------- /pkg/webhook/listener/gitlab_events_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/webhook/listener/gitlab_events_test.go -------------------------------------------------------------------------------- /pkg/webhook/listener/webhook_listener.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/webhook/listener/webhook_listener.go -------------------------------------------------------------------------------- /pkg/webhook/listener/webhook_listener_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/webhook/listener/webhook_listener_suite_test.go -------------------------------------------------------------------------------- /pkg/webhook/listener/webhook_listener_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/webhook/listener/webhook_listener_test.go -------------------------------------------------------------------------------- /pkg/webhook/webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/pkg/webhook/webhook.go -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /test/e2e/cases/00-helm-semver/semver_appsub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/00-helm-semver/semver_appsub.yaml -------------------------------------------------------------------------------- /test/e2e/cases/000-git-skip-clone/channel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/000-git-skip-clone/channel.yaml -------------------------------------------------------------------------------- /test/e2e/cases/000-git-skip-clone/placement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/000-git-skip-clone/placement.yaml -------------------------------------------------------------------------------- /test/e2e/cases/000-git-skip-clone/subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/000-git-skip-clone/subscription.yaml -------------------------------------------------------------------------------- /test/e2e/cases/01-placement/channel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/01-placement/channel.yaml -------------------------------------------------------------------------------- /test/e2e/cases/01-placement/clusterset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/01-placement/clusterset.yaml -------------------------------------------------------------------------------- /test/e2e/cases/01-placement/clustersetbinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/01-placement/clustersetbinding.yaml -------------------------------------------------------------------------------- /test/e2e/cases/01-placement/placement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/01-placement/placement.yaml -------------------------------------------------------------------------------- /test/e2e/cases/01-placement/subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/01-placement/subscription.yaml -------------------------------------------------------------------------------- /test/e2e/cases/02-placementrule/01-channel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/02-placementrule/01-channel.yaml -------------------------------------------------------------------------------- /test/e2e/cases/02-placementrule/02-placementrule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/02-placementrule/02-placementrule.yaml -------------------------------------------------------------------------------- /test/e2e/cases/02-placementrule/02-subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/02-placementrule/02-subscription.yaml -------------------------------------------------------------------------------- /test/e2e/cases/03-keep-namespace/channel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/03-keep-namespace/channel.yaml -------------------------------------------------------------------------------- /test/e2e/cases/03-keep-namespace/clusterset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/03-keep-namespace/clusterset.yaml -------------------------------------------------------------------------------- /test/e2e/cases/03-keep-namespace/clustersetbinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/03-keep-namespace/clustersetbinding.yaml -------------------------------------------------------------------------------- /test/e2e/cases/03-keep-namespace/placement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/03-keep-namespace/placement.yaml -------------------------------------------------------------------------------- /test/e2e/cases/03-keep-namespace/subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/03-keep-namespace/subscription.yaml -------------------------------------------------------------------------------- /test/e2e/cases/04-helm-no-match/channel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/04-helm-no-match/channel.yaml -------------------------------------------------------------------------------- /test/e2e/cases/04-helm-no-match/clusterset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/04-helm-no-match/clusterset.yaml -------------------------------------------------------------------------------- /test/e2e/cases/04-helm-no-match/clustersetbinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/04-helm-no-match/clustersetbinding.yaml -------------------------------------------------------------------------------- /test/e2e/cases/04-helm-no-match/placement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/04-helm-no-match/placement.yaml -------------------------------------------------------------------------------- /test/e2e/cases/04-helm-no-match/subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/04-helm-no-match/subscription.yaml -------------------------------------------------------------------------------- /test/e2e/cases/05-ansiblejob/00-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/05-ansiblejob/00-secret.yaml -------------------------------------------------------------------------------- /test/e2e/cases/05-ansiblejob/01-placement-rule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/05-ansiblejob/01-placement-rule.yaml -------------------------------------------------------------------------------- /test/e2e/cases/05-ansiblejob/02-channel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/05-ansiblejob/02-channel.yaml -------------------------------------------------------------------------------- /test/e2e/cases/05-ansiblejob/03-subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/05-ansiblejob/03-subscription.yaml -------------------------------------------------------------------------------- /test/e2e/cases/06-ansiblejob-post/00-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/06-ansiblejob-post/00-secret.yaml -------------------------------------------------------------------------------- /test/e2e/cases/06-ansiblejob-post/01-placement-rule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/06-ansiblejob-post/01-placement-rule.yaml -------------------------------------------------------------------------------- /test/e2e/cases/06-ansiblejob-post/02-channel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/06-ansiblejob-post/02-channel.yaml -------------------------------------------------------------------------------- /test/e2e/cases/06-ansiblejob-post/03-subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/06-ansiblejob-post/03-subscription.yaml -------------------------------------------------------------------------------- /test/e2e/cases/07-helm-install-error/01-channel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/07-helm-install-error/01-channel.yaml -------------------------------------------------------------------------------- /test/e2e/cases/07-helm-install-error/02-placement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/07-helm-install-error/02-placement.yaml -------------------------------------------------------------------------------- /test/e2e/cases/07-helm-install-error/02-subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/07-helm-install-error/02-subscription.yaml -------------------------------------------------------------------------------- /test/e2e/cases/08-helm-upgrade-error/install/01-channel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/08-helm-upgrade-error/install/01-channel.yaml -------------------------------------------------------------------------------- /test/e2e/cases/08-helm-upgrade-error/install/02-placement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/08-helm-upgrade-error/install/02-placement.yaml -------------------------------------------------------------------------------- /test/e2e/cases/08-helm-upgrade-error/install/02-subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/08-helm-upgrade-error/install/02-subscription.yaml -------------------------------------------------------------------------------- /test/e2e/cases/08-helm-upgrade-error/upgrade/hub/01-subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/08-helm-upgrade-error/upgrade/hub/01-subscription.yaml -------------------------------------------------------------------------------- /test/e2e/cases/08-helm-upgrade-error/upgrade/hub/02-mw.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/08-helm-upgrade-error/upgrade/hub/02-mw.yaml -------------------------------------------------------------------------------- /test/e2e/cases/08-helm-upgrade-error/upgrade/managed/hr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/08-helm-upgrade-error/upgrade/managed/hr.yaml -------------------------------------------------------------------------------- /test/e2e/cases/09-helm-missing-phase/00-namespace.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: dev 5 | -------------------------------------------------------------------------------- /test/e2e/cases/09-helm-missing-phase/01-channel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/09-helm-missing-phase/01-channel.yaml -------------------------------------------------------------------------------- /test/e2e/cases/09-helm-missing-phase/02-placement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/09-helm-missing-phase/02-placement.yaml -------------------------------------------------------------------------------- /test/e2e/cases/09-helm-missing-phase/02-subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/09-helm-missing-phase/02-subscription.yaml -------------------------------------------------------------------------------- /test/e2e/cases/10-cluster-override-ns/channel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/10-cluster-override-ns/channel.yaml -------------------------------------------------------------------------------- /test/e2e/cases/10-cluster-override-ns/placement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/10-cluster-override-ns/placement.yaml -------------------------------------------------------------------------------- /test/e2e/cases/10-cluster-override-ns/subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/10-cluster-override-ns/subscription.yaml -------------------------------------------------------------------------------- /test/e2e/cases/11-helm-hub-dryrun/01-channel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/11-helm-hub-dryrun/01-channel.yaml -------------------------------------------------------------------------------- /test/e2e/cases/11-helm-hub-dryrun/02-placement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/11-helm-hub-dryrun/02-placement.yaml -------------------------------------------------------------------------------- /test/e2e/cases/11-helm-hub-dryrun/02-subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/11-helm-hub-dryrun/02-subscription.yaml -------------------------------------------------------------------------------- /test/e2e/cases/12-helm-update/install/01-channel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/12-helm-update/install/01-channel.yaml -------------------------------------------------------------------------------- /test/e2e/cases/12-helm-update/install/02-placementrule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/12-helm-update/install/02-placementrule.yaml -------------------------------------------------------------------------------- /test/e2e/cases/12-helm-update/install/02-subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/12-helm-update/install/02-subscription.yaml -------------------------------------------------------------------------------- /test/e2e/cases/12-helm-update/upgrade/subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/12-helm-update/upgrade/subscription.yaml -------------------------------------------------------------------------------- /test/e2e/cases/13-git-res-name/channel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/13-git-res-name/channel.yaml -------------------------------------------------------------------------------- /test/e2e/cases/13-git-res-name/placement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/13-git-res-name/placement.yaml -------------------------------------------------------------------------------- /test/e2e/cases/13-git-res-name/resource/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/13-git-res-name/resource/clusterrole.yaml -------------------------------------------------------------------------------- /test/e2e/cases/13-git-res-name/subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/13-git-res-name/subscription.yaml -------------------------------------------------------------------------------- /test/e2e/cases/14-helm-appsubstatus/install/01-channel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/14-helm-appsubstatus/install/01-channel.yaml -------------------------------------------------------------------------------- /test/e2e/cases/14-helm-appsubstatus/install/02-placementrule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/14-helm-appsubstatus/install/02-placementrule.yaml -------------------------------------------------------------------------------- /test/e2e/cases/14-helm-appsubstatus/install/02-subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/14-helm-appsubstatus/install/02-subscription.yaml -------------------------------------------------------------------------------- /test/e2e/cases/14-helm-appsubstatus/upgrade/subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/14-helm-appsubstatus/upgrade/subscription.yaml -------------------------------------------------------------------------------- /test/e2e/cases/15-git-helm/install/channel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/15-git-helm/install/channel.yaml -------------------------------------------------------------------------------- /test/e2e/cases/15-git-helm/install/placement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/15-git-helm/install/placement.yaml -------------------------------------------------------------------------------- /test/e2e/cases/15-git-helm/install/subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/15-git-helm/install/subscription.yaml -------------------------------------------------------------------------------- /test/e2e/cases/15-git-helm/update/subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/15-git-helm/update/subscription.yaml -------------------------------------------------------------------------------- /test/e2e/cases/16-helm-recreate/01-channel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/16-helm-recreate/01-channel.yaml -------------------------------------------------------------------------------- /test/e2e/cases/16-helm-recreate/02-placementrule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/16-helm-recreate/02-placementrule.yaml -------------------------------------------------------------------------------- /test/e2e/cases/16-helm-recreate/02-subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/16-helm-recreate/02-subscription.yaml -------------------------------------------------------------------------------- /test/e2e/cases/17-ansiblejob-pre-workflow/00-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/17-ansiblejob-pre-workflow/00-secret.yaml -------------------------------------------------------------------------------- /test/e2e/cases/17-ansiblejob-pre-workflow/01-placement-rule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/17-ansiblejob-pre-workflow/01-placement-rule.yaml -------------------------------------------------------------------------------- /test/e2e/cases/17-ansiblejob-pre-workflow/02-channel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/17-ansiblejob-pre-workflow/02-channel.yaml -------------------------------------------------------------------------------- /test/e2e/cases/17-ansiblejob-pre-workflow/03-subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/17-ansiblejob-pre-workflow/03-subscription.yaml -------------------------------------------------------------------------------- /test/e2e/cases/19-verify-git-pull-time-metric/failed/failed-appsub-manifestwork.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/19-verify-git-pull-time-metric/failed/failed-appsub-manifestwork.yaml -------------------------------------------------------------------------------- /test/e2e/cases/19-verify-git-pull-time-metric/successful/00-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/19-verify-git-pull-time-metric/successful/00-namespace.yaml -------------------------------------------------------------------------------- /test/e2e/cases/19-verify-git-pull-time-metric/successful/channel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/19-verify-git-pull-time-metric/successful/channel.yaml -------------------------------------------------------------------------------- /test/e2e/cases/19-verify-git-pull-time-metric/successful/clusterset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/19-verify-git-pull-time-metric/successful/clusterset.yaml -------------------------------------------------------------------------------- /test/e2e/cases/19-verify-git-pull-time-metric/successful/clustersetbinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/19-verify-git-pull-time-metric/successful/clustersetbinding.yaml -------------------------------------------------------------------------------- /test/e2e/cases/19-verify-git-pull-time-metric/successful/placement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/19-verify-git-pull-time-metric/successful/placement.yaml -------------------------------------------------------------------------------- /test/e2e/cases/19-verify-git-pull-time-metric/successful/subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/19-verify-git-pull-time-metric/successful/subscription.yaml -------------------------------------------------------------------------------- /test/e2e/cases/20-verify-propagation-time-metric/common/00-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/20-verify-propagation-time-metric/common/00-namespace.yaml -------------------------------------------------------------------------------- /test/e2e/cases/20-verify-propagation-time-metric/common/channel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/20-verify-propagation-time-metric/common/channel.yaml -------------------------------------------------------------------------------- /test/e2e/cases/20-verify-propagation-time-metric/common/clusterset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/20-verify-propagation-time-metric/common/clusterset.yaml -------------------------------------------------------------------------------- /test/e2e/cases/20-verify-propagation-time-metric/common/clustersetbinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/20-verify-propagation-time-metric/common/clustersetbinding.yaml -------------------------------------------------------------------------------- /test/e2e/cases/20-verify-propagation-time-metric/common/placement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/20-verify-propagation-time-metric/common/placement.yaml -------------------------------------------------------------------------------- /test/e2e/cases/20-verify-propagation-time-metric/failed-no-placement/subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/20-verify-propagation-time-metric/failed-no-placement/subscription.yaml -------------------------------------------------------------------------------- /test/e2e/cases/20-verify-propagation-time-metric/failed-placement-wrong/subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/20-verify-propagation-time-metric/failed-placement-wrong/subscription.yaml -------------------------------------------------------------------------------- /test/e2e/cases/20-verify-propagation-time-metric/standalone/subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/20-verify-propagation-time-metric/standalone/subscription.yaml -------------------------------------------------------------------------------- /test/e2e/cases/20-verify-propagation-time-metric/successful/subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/20-verify-propagation-time-metric/successful/subscription.yaml -------------------------------------------------------------------------------- /test/e2e/cases/21-verify-local-deployment-time-metric/00-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/21-verify-local-deployment-time-metric/00-namespace.yaml -------------------------------------------------------------------------------- /test/e2e/cases/21-verify-local-deployment-time-metric/channel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/21-verify-local-deployment-time-metric/channel.yaml -------------------------------------------------------------------------------- /test/e2e/cases/21-verify-local-deployment-time-metric/clusterset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/21-verify-local-deployment-time-metric/clusterset.yaml -------------------------------------------------------------------------------- /test/e2e/cases/21-verify-local-deployment-time-metric/clustersetbinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/21-verify-local-deployment-time-metric/clustersetbinding.yaml -------------------------------------------------------------------------------- /test/e2e/cases/21-verify-local-deployment-time-metric/placement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/21-verify-local-deployment-time-metric/placement.yaml -------------------------------------------------------------------------------- /test/e2e/cases/21-verify-local-deployment-time-metric/subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/21-verify-local-deployment-time-metric/subscription.yaml -------------------------------------------------------------------------------- /test/e2e/cases/22-ansiblejob-tags/00-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/22-ansiblejob-tags/00-secret.yaml -------------------------------------------------------------------------------- /test/e2e/cases/22-ansiblejob-tags/01-placement-rule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/22-ansiblejob-tags/01-placement-rule.yaml -------------------------------------------------------------------------------- /test/e2e/cases/22-ansiblejob-tags/02-channel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/22-ansiblejob-tags/02-channel.yaml -------------------------------------------------------------------------------- /test/e2e/cases/22-ansiblejob-tags/03-subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/22-ansiblejob-tags/03-subscription.yaml -------------------------------------------------------------------------------- /test/e2e/cases/23-git-appsub-status-failed/01-placement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/23-git-appsub-status-failed/01-placement.yaml -------------------------------------------------------------------------------- /test/e2e/cases/23-git-appsub-status-failed/02-channel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/23-git-appsub-status-failed/02-channel.yaml -------------------------------------------------------------------------------- /test/e2e/cases/23-git-appsub-status-failed/03-subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/23-git-appsub-status-failed/03-subscription.yaml -------------------------------------------------------------------------------- /test/e2e/cases/23-git-appsub-status-failed/resource/guestbook-failed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/cases/23-git-appsub-status-failed/resource/guestbook-failed.yaml -------------------------------------------------------------------------------- /test/e2e/e2e_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/e2e_suite_test.go -------------------------------------------------------------------------------- /test/e2e/github/nestedSubscription/secondsub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/e2e/github/nestedSubscription/secondsub.yaml -------------------------------------------------------------------------------- /test/github/.kubernetesignore: -------------------------------------------------------------------------------- 1 | configmap.yaml -------------------------------------------------------------------------------- /test/github/helmcharts/chart1/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/helmcharts/chart1/Chart.yaml -------------------------------------------------------------------------------- /test/github/helmcharts/chart1/charts/subchart1/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/helmcharts/chart1/charts/subchart1/Chart.yaml -------------------------------------------------------------------------------- /test/github/helmcharts/chart1/charts/subchart1/templates/minio-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/helmcharts/chart1/charts/subchart1/templates/minio-secret.yaml -------------------------------------------------------------------------------- /test/github/helmcharts/chart1/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/helmcharts/chart1/templates/configmap.yaml -------------------------------------------------------------------------------- /test/github/helmcharts/chart1/values.yaml: -------------------------------------------------------------------------------- 1 | test: chart1 -------------------------------------------------------------------------------- /test/github/helmcharts/chart1Upgrade/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/helmcharts/chart1Upgrade/Chart.yaml -------------------------------------------------------------------------------- /test/github/helmcharts/chart1Upgrade/charts/subchart1/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/helmcharts/chart1Upgrade/charts/subchart1/Chart.yaml -------------------------------------------------------------------------------- /test/github/helmcharts/chart1Upgrade/charts/subchart1/templates/minio-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/helmcharts/chart1Upgrade/charts/subchart1/templates/minio-secret.yaml -------------------------------------------------------------------------------- /test/github/helmcharts/chart1Upgrade/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/helmcharts/chart1Upgrade/templates/configmap.yaml -------------------------------------------------------------------------------- /test/github/helmcharts/chart1Upgrade/values.yaml: -------------------------------------------------------------------------------- 1 | test: chart1 -------------------------------------------------------------------------------- /test/github/helmcharts/chart2/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/helmcharts/chart2/Chart.yaml -------------------------------------------------------------------------------- /test/github/helmcharts/chart2/charts/subchart1/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/helmcharts/chart2/charts/subchart1/Chart.yaml -------------------------------------------------------------------------------- /test/github/helmcharts/chart2/charts/subchart1/templates/minio-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/helmcharts/chart2/charts/subchart1/templates/minio-secret.yaml -------------------------------------------------------------------------------- /test/github/helmcharts/chart2/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/helmcharts/chart2/templates/configmap.yaml -------------------------------------------------------------------------------- /test/github/helmcharts/chart2/values.yaml: -------------------------------------------------------------------------------- 1 | test: chart1 -------------------------------------------------------------------------------- /test/github/helmcharts/otherCharts/chart1/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/helmcharts/otherCharts/chart1/Chart.yaml -------------------------------------------------------------------------------- /test/github/helmcharts/otherCharts/chart1/charts/subchart1/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/helmcharts/otherCharts/chart1/charts/subchart1/Chart.yaml -------------------------------------------------------------------------------- /test/github/helmcharts/otherCharts/chart1/charts/subchart1/templates/minio-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/helmcharts/otherCharts/chart1/charts/subchart1/templates/minio-secret.yaml -------------------------------------------------------------------------------- /test/github/helmcharts/otherCharts/chart1/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/helmcharts/otherCharts/chart1/templates/configmap.yaml -------------------------------------------------------------------------------- /test/github/helmcharts/otherCharts/chart1/values.yaml: -------------------------------------------------------------------------------- 1 | test: chart1 -------------------------------------------------------------------------------- /test/github/kustomize/base/configMap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/kustomize/base/configMap.yaml -------------------------------------------------------------------------------- /test/github/kustomize/base/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/kustomize/base/deployment.yaml -------------------------------------------------------------------------------- /test/github/kustomize/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/kustomize/base/kustomization.yaml -------------------------------------------------------------------------------- /test/github/kustomize/base/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/kustomize/base/service.yaml -------------------------------------------------------------------------------- /test/github/kustomize/overlays/inlinePatch/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/kustomize/overlays/inlinePatch/kustomization.yaml -------------------------------------------------------------------------------- /test/github/kustomize/overlays/patchjson/add_to_configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/kustomize/overlays/patchjson/add_to_configmap.yaml -------------------------------------------------------------------------------- /test/github/kustomize/overlays/patchjson/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/kustomize/overlays/patchjson/kustomization.yaml -------------------------------------------------------------------------------- /test/github/kustomize/overlays/production/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/kustomize/overlays/production/deployment.yaml -------------------------------------------------------------------------------- /test/github/kustomize/overlays/production/kustomization.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/kustomize/overlays/production/kustomization.yml -------------------------------------------------------------------------------- /test/github/kustomize/overlays/staging/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/kustomize/overlays/staging/kustomization.yaml -------------------------------------------------------------------------------- /test/github/kustomize/overlays/staging/map.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/kustomize/overlays/staging/map.yaml -------------------------------------------------------------------------------- /test/github/kustomizeLabels/base/KlusterletAddonConfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/kustomizeLabels/base/KlusterletAddonConfig.yaml -------------------------------------------------------------------------------- /test/github/kustomizeLabels/base/ManagedCluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/kustomizeLabels/base/ManagedCluster.yaml -------------------------------------------------------------------------------- /test/github/kustomizeLabels/base/Namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/kustomizeLabels/base/Namespace.yaml -------------------------------------------------------------------------------- /test/github/kustomizeLabels/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/kustomizeLabels/base/kustomization.yaml -------------------------------------------------------------------------------- /test/github/kustomizeLabels/namctigtd27d/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/kustomizeLabels/namctigtd27d/kustomization.yaml -------------------------------------------------------------------------------- /test/github/multiresource/multiresource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/multiresource/multiresource.yaml -------------------------------------------------------------------------------- /test/github/nestedKustomize/wordpress/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/nestedKustomize/wordpress/kustomization.yaml -------------------------------------------------------------------------------- /test/github/nestedKustomize/wordpress/mysql/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/nestedKustomize/wordpress/mysql/deployment.yaml -------------------------------------------------------------------------------- /test/github/nestedKustomize/wordpress/mysql/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/nestedKustomize/wordpress/mysql/kustomization.yaml -------------------------------------------------------------------------------- /test/github/nestedKustomize/wordpress/mysql/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/nestedKustomize/wordpress/mysql/secret.yaml -------------------------------------------------------------------------------- /test/github/nestedKustomize/wordpress/mysql/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/nestedKustomize/wordpress/mysql/service.yaml -------------------------------------------------------------------------------- /test/github/nestedKustomize/wordpress/patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/nestedKustomize/wordpress/patch.yaml -------------------------------------------------------------------------------- /test/github/nestedKustomize/wordpress/wordpress/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/nestedKustomize/wordpress/wordpress/deployment.yaml -------------------------------------------------------------------------------- /test/github/nestedKustomize/wordpress/wordpress/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/nestedKustomize/wordpress/wordpress/kustomization.yaml -------------------------------------------------------------------------------- /test/github/nestedKustomize/wordpress/wordpress/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/nestedKustomize/wordpress/wordpress/service.yaml -------------------------------------------------------------------------------- /test/github/nestedKustomize/wordpress2/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/nestedKustomize/wordpress2/kustomization.yaml -------------------------------------------------------------------------------- /test/github/nestedKustomize/wordpress2/mysql/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/nestedKustomize/wordpress2/mysql/deployment.yaml -------------------------------------------------------------------------------- /test/github/nestedKustomize/wordpress2/mysql/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/nestedKustomize/wordpress2/mysql/kustomization.yaml -------------------------------------------------------------------------------- /test/github/nestedKustomize/wordpress2/mysql/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/nestedKustomize/wordpress2/mysql/secret.yaml -------------------------------------------------------------------------------- /test/github/nestedKustomize/wordpress2/mysql/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/nestedKustomize/wordpress2/mysql/service.yaml -------------------------------------------------------------------------------- /test/github/nestedKustomize/wordpress2/patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/nestedKustomize/wordpress2/patch.yaml -------------------------------------------------------------------------------- /test/github/nestedKustomize/wordpress2/wordpress/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/nestedKustomize/wordpress2/wordpress/deployment.yaml -------------------------------------------------------------------------------- /test/github/nestedKustomize/wordpress2/wordpress/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/nestedKustomize/wordpress2/wordpress/kustomization.yaml -------------------------------------------------------------------------------- /test/github/nestedKustomize/wordpress2/wordpress/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/nestedKustomize/wordpress2/wordpress/service.yaml -------------------------------------------------------------------------------- /test/github/resources/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/resources/configmap.yaml -------------------------------------------------------------------------------- /test/github/resources/deploy/crds/crontab.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/resources/deploy/crds/crontab.yaml -------------------------------------------------------------------------------- /test/github/resources/deploy/sub1_cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/resources/deploy/sub1_cm.yaml -------------------------------------------------------------------------------- /test/github/resources/deploy/sub1_invalid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/resources/deploy/sub1_invalid.yaml -------------------------------------------------------------------------------- /test/github/resources/deploy/sub1_secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/resources/deploy/sub1_secret.yaml -------------------------------------------------------------------------------- /test/github/resources/invalid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/resources/invalid.yaml -------------------------------------------------------------------------------- /test/github/resources/multiresource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/resources/multiresource.yaml -------------------------------------------------------------------------------- /test/github/resources/namespace.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/resources/namespace.yml -------------------------------------------------------------------------------- /test/github/resources/rbac/clusterrole.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/resources/rbac/clusterrole.yml -------------------------------------------------------------------------------- /test/github/resources/rbac/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/resources/rbac/clusterrolebinding.yaml -------------------------------------------------------------------------------- /test/github/resources/rbac/sa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/resources/rbac/sa.yaml -------------------------------------------------------------------------------- /test/github/resources/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/github/resources/secret.yaml -------------------------------------------------------------------------------- /test/hooks/ansible/post-only/cfg_and_ansible.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/hooks/ansible/post-only/cfg_and_ansible.yaml -------------------------------------------------------------------------------- /test/hooks/ansible/post-only/posthook/sub_posthook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/hooks/ansible/post-only/posthook/sub_posthook.yaml -------------------------------------------------------------------------------- /test/hooks/ansible/pre-and-post/cfg_and_ansible.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/hooks/ansible/pre-and-post/cfg_and_ansible.yaml -------------------------------------------------------------------------------- /test/hooks/ansible/pre-and-post/posthook/sub_posthook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/hooks/ansible/pre-and-post/posthook/sub_posthook.yaml -------------------------------------------------------------------------------- /test/hooks/ansible/pre-and-post/prehook/sub_prehook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/test/hooks/ansible/pre-and-post/prehook/sub_prehook.yaml -------------------------------------------------------------------------------- /testhr/e2e/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/e2e/index.yaml -------------------------------------------------------------------------------- /testhr/e2e/ingress-0.1.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/e2e/ingress-0.1.0.tgz -------------------------------------------------------------------------------- /testhr/e2e/ingress-0.2.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/e2e/ingress-0.2.0.tgz -------------------------------------------------------------------------------- /testhr/e2e/install-ingress/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/e2e/install-ingress/.helmignore -------------------------------------------------------------------------------- /testhr/e2e/install-ingress/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/e2e/install-ingress/Chart.yaml -------------------------------------------------------------------------------- /testhr/e2e/install-ingress/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/e2e/install-ingress/templates/NOTES.txt -------------------------------------------------------------------------------- /testhr/e2e/install-ingress/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/e2e/install-ingress/templates/_helpers.tpl -------------------------------------------------------------------------------- /testhr/e2e/install-ingress/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/e2e/install-ingress/templates/deployment.yaml -------------------------------------------------------------------------------- /testhr/e2e/install-ingress/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/e2e/install-ingress/templates/hpa.yaml -------------------------------------------------------------------------------- /testhr/e2e/install-ingress/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/e2e/install-ingress/templates/ingress.yaml -------------------------------------------------------------------------------- /testhr/e2e/install-ingress/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/e2e/install-ingress/templates/service.yaml -------------------------------------------------------------------------------- /testhr/e2e/install-ingress/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/e2e/install-ingress/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /testhr/e2e/install-ingress/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/e2e/install-ingress/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /testhr/e2e/install-ingress/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/e2e/install-ingress/values.yaml -------------------------------------------------------------------------------- /testhr/e2e/preinstall-hook-0.1.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/e2e/preinstall-hook-0.1.0.tgz -------------------------------------------------------------------------------- /testhr/e2e/preinstall-hook/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/e2e/preinstall-hook/.helmignore -------------------------------------------------------------------------------- /testhr/e2e/preinstall-hook/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/e2e/preinstall-hook/Chart.yaml -------------------------------------------------------------------------------- /testhr/e2e/preinstall-hook/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/e2e/preinstall-hook/templates/NOTES.txt -------------------------------------------------------------------------------- /testhr/e2e/preinstall-hook/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/e2e/preinstall-hook/templates/_helpers.tpl -------------------------------------------------------------------------------- /testhr/e2e/preinstall-hook/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/e2e/preinstall-hook/templates/deployment.yaml -------------------------------------------------------------------------------- /testhr/e2e/preinstall-hook/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/e2e/preinstall-hook/templates/hpa.yaml -------------------------------------------------------------------------------- /testhr/e2e/preinstall-hook/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/e2e/preinstall-hook/templates/ingress.yaml -------------------------------------------------------------------------------- /testhr/e2e/preinstall-hook/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/e2e/preinstall-hook/templates/service.yaml -------------------------------------------------------------------------------- /testhr/e2e/preinstall-hook/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/e2e/preinstall-hook/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /testhr/e2e/preinstall-hook/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/e2e/preinstall-hook/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /testhr/e2e/preinstall-hook/templates/wait-long-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/e2e/preinstall-hook/templates/wait-long-job.yaml -------------------------------------------------------------------------------- /testhr/e2e/preinstall-hook/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/e2e/preinstall-hook/values.yaml -------------------------------------------------------------------------------- /testhr/e2e/upgrade-fail-ingress/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/e2e/upgrade-fail-ingress/.helmignore -------------------------------------------------------------------------------- /testhr/e2e/upgrade-fail-ingress/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/e2e/upgrade-fail-ingress/Chart.yaml -------------------------------------------------------------------------------- /testhr/e2e/upgrade-fail-ingress/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/e2e/upgrade-fail-ingress/templates/NOTES.txt -------------------------------------------------------------------------------- /testhr/e2e/upgrade-fail-ingress/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/e2e/upgrade-fail-ingress/templates/_helpers.tpl -------------------------------------------------------------------------------- /testhr/e2e/upgrade-fail-ingress/templates/bad-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/e2e/upgrade-fail-ingress/templates/bad-deployment.yaml -------------------------------------------------------------------------------- /testhr/e2e/upgrade-fail-ingress/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/e2e/upgrade-fail-ingress/templates/hpa.yaml -------------------------------------------------------------------------------- /testhr/e2e/upgrade-fail-ingress/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/e2e/upgrade-fail-ingress/templates/ingress.yaml -------------------------------------------------------------------------------- /testhr/e2e/upgrade-fail-ingress/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/e2e/upgrade-fail-ingress/templates/service.yaml -------------------------------------------------------------------------------- /testhr/e2e/upgrade-fail-ingress/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/e2e/upgrade-fail-ingress/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /testhr/e2e/upgrade-fail-ingress/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/e2e/upgrade-fail-ingress/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /testhr/e2e/upgrade-fail-ingress/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/e2e/upgrade-fail-ingress/values.yaml -------------------------------------------------------------------------------- /testhr/github/nginx-chart-upgrade/nginx-chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/github/nginx-chart-upgrade/nginx-chart/Chart.yaml -------------------------------------------------------------------------------- /testhr/github/nginx-chart-upgrade/nginx-chart/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | A simple nginx chart for testing purpose. 2 | -------------------------------------------------------------------------------- /testhr/github/nginx-chart-upgrade/nginx-chart/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/github/nginx-chart-upgrade/nginx-chart/templates/_helpers.tpl -------------------------------------------------------------------------------- /testhr/github/nginx-chart-upgrade/nginx-chart/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/github/nginx-chart-upgrade/nginx-chart/templates/deployment.yaml -------------------------------------------------------------------------------- /testhr/github/nginx-chart-upgrade/nginx-chart/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/github/nginx-chart-upgrade/nginx-chart/templates/service.yaml -------------------------------------------------------------------------------- /testhr/github/nginx-chart-upgrade/nginx-chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/github/nginx-chart-upgrade/nginx-chart/values.yaml -------------------------------------------------------------------------------- /testhr/github/nginx-chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/github/nginx-chart/Chart.yaml -------------------------------------------------------------------------------- /testhr/github/nginx-chart/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | A simple nginx chart for testing purpose. 2 | -------------------------------------------------------------------------------- /testhr/github/nginx-chart/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/github/nginx-chart/templates/_helpers.tpl -------------------------------------------------------------------------------- /testhr/github/nginx-chart/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/github/nginx-chart/templates/deployment.yaml -------------------------------------------------------------------------------- /testhr/github/nginx-chart/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/github/nginx-chart/templates/service.yaml -------------------------------------------------------------------------------- /testhr/github/nginx-chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/github/nginx-chart/values.yaml -------------------------------------------------------------------------------- /testhr/github/subscription-release-test-1/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/github/subscription-release-test-1/.helmignore -------------------------------------------------------------------------------- /testhr/github/subscription-release-test-1/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/github/subscription-release-test-1/Chart.yaml -------------------------------------------------------------------------------- /testhr/github/subscription-release-test-1/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/github/subscription-release-test-1/templates/_helpers.tpl -------------------------------------------------------------------------------- /testhr/github/subscription-release-test-1/templates/deployment_subscription_release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/github/subscription-release-test-1/templates/deployment_subscription_release.yaml -------------------------------------------------------------------------------- /testhr/github/subscription-release-test-1/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/github/subscription-release-test-1/values.yaml -------------------------------------------------------------------------------- /testhr/github/subscription-release-test-2/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/github/subscription-release-test-2/.helmignore -------------------------------------------------------------------------------- /testhr/github/subscription-release-test-2/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/github/subscription-release-test-2/Chart.yaml -------------------------------------------------------------------------------- /testhr/github/subscription-release-test-2/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/github/subscription-release-test-2/templates/_helpers.tpl -------------------------------------------------------------------------------- /testhr/github/subscription-release-test-2/templates/deployment_subscription_release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/github/subscription-release-test-2/templates/deployment_subscription_release.yaml -------------------------------------------------------------------------------- /testhr/github/subscription-release-test-2/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/github/subscription-release-test-2/values.yaml -------------------------------------------------------------------------------- /testhr/github/subscription-release-test-3/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/github/subscription-release-test-3/.helmignore -------------------------------------------------------------------------------- /testhr/github/subscription-release-test-3/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/github/subscription-release-test-3/Chart.yaml -------------------------------------------------------------------------------- /testhr/github/subscription-release-test-3/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/github/subscription-release-test-3/templates/_helpers.tpl -------------------------------------------------------------------------------- /testhr/github/subscription-release-test-3/templates/deployment_subscription_release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/github/subscription-release-test-3/templates/deployment_subscription_release.yaml -------------------------------------------------------------------------------- /testhr/github/subscription-release-test-3/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/github/subscription-release-test-3/values.yaml -------------------------------------------------------------------------------- /testhr/helmrepo/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/helmrepo/index.yaml -------------------------------------------------------------------------------- /testhr/helmrepo/nginx-chart-0.1.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/helmrepo/nginx-chart-0.1.0.tgz -------------------------------------------------------------------------------- /testhr/helmrepo/nginx-chart-0.2.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/helmrepo/nginx-chart-0.2.0.tgz -------------------------------------------------------------------------------- /testhr/helmrepo/nginx-ingress-1.40.0_keep.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/helmrepo/nginx-ingress-1.40.0_keep.tgz -------------------------------------------------------------------------------- /testhr/helmrepo/subscription-release-test-1-0.1.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/helmrepo/subscription-release-test-1-0.1.0.tgz -------------------------------------------------------------------------------- /testhr/helmrepo/subscription-release-test-3-0.1.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-cluster-management-io/multicloud-operators-subscription/HEAD/testhr/helmrepo/subscription-release-test-3-0.1.0.tgz --------------------------------------------------------------------------------