├── .github ├── dco.yml └── workflows │ └── release.yaml ├── .gitignore ├── LICENSE ├── README.md ├── config ├── all-in-one │ ├── Chart.yaml │ ├── templates │ │ ├── aimanager.yaml │ │ ├── argocd.yaml │ │ ├── cluster-operator-fyre.yaml │ │ ├── clusters-fyre.yaml │ │ ├── cp-shared.yaml │ │ ├── cp4waiops-config.yaml │ │ ├── cp4waiops-custom.yaml │ │ ├── eventmanager.yaml │ │ ├── humio.yaml │ │ ├── istio.yaml │ │ ├── resource-locker.yaml │ │ ├── robot-shop.yaml │ │ └── rook-ceph.yaml │ └── values.yaml ├── argocd │ ├── kubernetes │ │ └── argocd-cm.yaml │ └── openshift │ │ ├── argocd-rbac.yaml │ │ └── argocd.yaml ├── ceph │ ├── Chart.yaml │ ├── templates │ │ ├── cluster.yaml │ │ ├── common.yaml │ │ ├── crds.yaml │ │ ├── filesystem.yaml │ │ ├── operator-openshift.yaml │ │ ├── storageclass-test.yaml │ │ └── storageclass.yaml │ └── values.yaml ├── clusters │ └── fyre │ │ ├── Chart.yaml │ │ ├── templates │ │ ├── ocp-plus.yaml │ │ ├── qb-large.yaml │ │ └── secret.yaml │ │ └── values.yaml ├── cp-shared │ └── operators │ │ ├── Chart.yaml │ │ ├── templates │ │ └── 060-catalogsource.yaml │ │ └── values.yaml ├── cp4waiops-custom │ ├── Chart.yaml │ ├── templates │ │ ├── custom-size.yaml │ │ ├── image-pull-secrets.yaml │ │ ├── resource-locker-rbac.yaml │ │ ├── x-small-idle.yaml │ │ └── x-small.yaml │ ├── values.x-small-custom.yaml │ └── values.yaml └── cp4waiops │ ├── install-aimgr │ ├── Chart.yaml │ ├── templates │ │ ├── resources │ │ │ ├── 030-global-image-pull-secret.yaml │ │ │ ├── 075-redis-locker.yaml │ │ │ └── 080-installation.yaml │ │ └── subscriptions │ │ │ ├── 000-010-check-prereqs-job.yaml │ │ │ ├── 020-argocd-admin.yaml │ │ │ ├── 020-namespace.yaml │ │ │ ├── 050-policy.yaml │ │ │ ├── 070-operatorgroup.yaml │ │ │ └── 080-subscription.yaml │ └── values.yaml │ └── install-emgr │ ├── Chart.yaml │ ├── templates │ ├── resources │ │ ├── 030-global-image-pull-secret.yaml │ │ └── 070-noi-eventmanager.yaml │ └── subscriptions │ │ ├── 000-010-check-prereqs-job.yaml │ │ ├── 020-argocd-admin.yaml │ │ ├── 021-noi-ns.yaml │ │ ├── 022-crt-noi-serviceaccount.yaml │ │ ├── 040-policy.yaml │ │ ├── 050-noi-catalogsource.yaml │ │ ├── 060-noi-operatorgroup.yaml │ │ └── 061-noi-subscription.yaml │ └── values.yaml └── mkdocs.yml /.github/dco.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/.github/dco.yml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/README.md -------------------------------------------------------------------------------- /config/all-in-one/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/all-in-one/Chart.yaml -------------------------------------------------------------------------------- /config/all-in-one/templates/aimanager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/all-in-one/templates/aimanager.yaml -------------------------------------------------------------------------------- /config/all-in-one/templates/argocd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/all-in-one/templates/argocd.yaml -------------------------------------------------------------------------------- /config/all-in-one/templates/cluster-operator-fyre.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/all-in-one/templates/cluster-operator-fyre.yaml -------------------------------------------------------------------------------- /config/all-in-one/templates/clusters-fyre.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/all-in-one/templates/clusters-fyre.yaml -------------------------------------------------------------------------------- /config/all-in-one/templates/cp-shared.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/all-in-one/templates/cp-shared.yaml -------------------------------------------------------------------------------- /config/all-in-one/templates/cp4waiops-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/all-in-one/templates/cp4waiops-config.yaml -------------------------------------------------------------------------------- /config/all-in-one/templates/cp4waiops-custom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/all-in-one/templates/cp4waiops-custom.yaml -------------------------------------------------------------------------------- /config/all-in-one/templates/eventmanager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/all-in-one/templates/eventmanager.yaml -------------------------------------------------------------------------------- /config/all-in-one/templates/humio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/all-in-one/templates/humio.yaml -------------------------------------------------------------------------------- /config/all-in-one/templates/istio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/all-in-one/templates/istio.yaml -------------------------------------------------------------------------------- /config/all-in-one/templates/resource-locker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/all-in-one/templates/resource-locker.yaml -------------------------------------------------------------------------------- /config/all-in-one/templates/robot-shop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/all-in-one/templates/robot-shop.yaml -------------------------------------------------------------------------------- /config/all-in-one/templates/rook-ceph.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/all-in-one/templates/rook-ceph.yaml -------------------------------------------------------------------------------- /config/all-in-one/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/all-in-one/values.yaml -------------------------------------------------------------------------------- /config/argocd/kubernetes/argocd-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/argocd/kubernetes/argocd-cm.yaml -------------------------------------------------------------------------------- /config/argocd/openshift/argocd-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/argocd/openshift/argocd-rbac.yaml -------------------------------------------------------------------------------- /config/argocd/openshift/argocd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/argocd/openshift/argocd.yaml -------------------------------------------------------------------------------- /config/ceph/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/ceph/Chart.yaml -------------------------------------------------------------------------------- /config/ceph/templates/cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/ceph/templates/cluster.yaml -------------------------------------------------------------------------------- /config/ceph/templates/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/ceph/templates/common.yaml -------------------------------------------------------------------------------- /config/ceph/templates/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/ceph/templates/crds.yaml -------------------------------------------------------------------------------- /config/ceph/templates/filesystem.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/ceph/templates/filesystem.yaml -------------------------------------------------------------------------------- /config/ceph/templates/operator-openshift.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/ceph/templates/operator-openshift.yaml -------------------------------------------------------------------------------- /config/ceph/templates/storageclass-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/ceph/templates/storageclass-test.yaml -------------------------------------------------------------------------------- /config/ceph/templates/storageclass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/ceph/templates/storageclass.yaml -------------------------------------------------------------------------------- /config/ceph/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/ceph/values.yaml -------------------------------------------------------------------------------- /config/clusters/fyre/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/clusters/fyre/Chart.yaml -------------------------------------------------------------------------------- /config/clusters/fyre/templates/ocp-plus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/clusters/fyre/templates/ocp-plus.yaml -------------------------------------------------------------------------------- /config/clusters/fyre/templates/qb-large.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/clusters/fyre/templates/qb-large.yaml -------------------------------------------------------------------------------- /config/clusters/fyre/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/clusters/fyre/templates/secret.yaml -------------------------------------------------------------------------------- /config/clusters/fyre/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/clusters/fyre/values.yaml -------------------------------------------------------------------------------- /config/cp-shared/operators/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/cp-shared/operators/Chart.yaml -------------------------------------------------------------------------------- /config/cp-shared/operators/templates/060-catalogsource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/cp-shared/operators/templates/060-catalogsource.yaml -------------------------------------------------------------------------------- /config/cp-shared/operators/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/cp-shared/operators/values.yaml -------------------------------------------------------------------------------- /config/cp4waiops-custom/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/cp4waiops-custom/Chart.yaml -------------------------------------------------------------------------------- /config/cp4waiops-custom/templates/custom-size.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/cp4waiops-custom/templates/custom-size.yaml -------------------------------------------------------------------------------- /config/cp4waiops-custom/templates/image-pull-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/cp4waiops-custom/templates/image-pull-secrets.yaml -------------------------------------------------------------------------------- /config/cp4waiops-custom/templates/resource-locker-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/cp4waiops-custom/templates/resource-locker-rbac.yaml -------------------------------------------------------------------------------- /config/cp4waiops-custom/templates/x-small-idle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/cp4waiops-custom/templates/x-small-idle.yaml -------------------------------------------------------------------------------- /config/cp4waiops-custom/templates/x-small.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/cp4waiops-custom/templates/x-small.yaml -------------------------------------------------------------------------------- /config/cp4waiops-custom/values.x-small-custom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/cp4waiops-custom/values.x-small-custom.yaml -------------------------------------------------------------------------------- /config/cp4waiops-custom/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/cp4waiops-custom/values.yaml -------------------------------------------------------------------------------- /config/cp4waiops/install-aimgr/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/cp4waiops/install-aimgr/Chart.yaml -------------------------------------------------------------------------------- /config/cp4waiops/install-aimgr/templates/resources/030-global-image-pull-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/cp4waiops/install-aimgr/templates/resources/030-global-image-pull-secret.yaml -------------------------------------------------------------------------------- /config/cp4waiops/install-aimgr/templates/resources/075-redis-locker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/cp4waiops/install-aimgr/templates/resources/075-redis-locker.yaml -------------------------------------------------------------------------------- /config/cp4waiops/install-aimgr/templates/resources/080-installation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/cp4waiops/install-aimgr/templates/resources/080-installation.yaml -------------------------------------------------------------------------------- /config/cp4waiops/install-aimgr/templates/subscriptions/000-010-check-prereqs-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/cp4waiops/install-aimgr/templates/subscriptions/000-010-check-prereqs-job.yaml -------------------------------------------------------------------------------- /config/cp4waiops/install-aimgr/templates/subscriptions/020-argocd-admin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/cp4waiops/install-aimgr/templates/subscriptions/020-argocd-admin.yaml -------------------------------------------------------------------------------- /config/cp4waiops/install-aimgr/templates/subscriptions/020-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/cp4waiops/install-aimgr/templates/subscriptions/020-namespace.yaml -------------------------------------------------------------------------------- /config/cp4waiops/install-aimgr/templates/subscriptions/050-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/cp4waiops/install-aimgr/templates/subscriptions/050-policy.yaml -------------------------------------------------------------------------------- /config/cp4waiops/install-aimgr/templates/subscriptions/070-operatorgroup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/cp4waiops/install-aimgr/templates/subscriptions/070-operatorgroup.yaml -------------------------------------------------------------------------------- /config/cp4waiops/install-aimgr/templates/subscriptions/080-subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/cp4waiops/install-aimgr/templates/subscriptions/080-subscription.yaml -------------------------------------------------------------------------------- /config/cp4waiops/install-aimgr/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/cp4waiops/install-aimgr/values.yaml -------------------------------------------------------------------------------- /config/cp4waiops/install-emgr/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/cp4waiops/install-emgr/Chart.yaml -------------------------------------------------------------------------------- /config/cp4waiops/install-emgr/templates/resources/030-global-image-pull-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/cp4waiops/install-emgr/templates/resources/030-global-image-pull-secret.yaml -------------------------------------------------------------------------------- /config/cp4waiops/install-emgr/templates/resources/070-noi-eventmanager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/cp4waiops/install-emgr/templates/resources/070-noi-eventmanager.yaml -------------------------------------------------------------------------------- /config/cp4waiops/install-emgr/templates/subscriptions/000-010-check-prereqs-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/cp4waiops/install-emgr/templates/subscriptions/000-010-check-prereqs-job.yaml -------------------------------------------------------------------------------- /config/cp4waiops/install-emgr/templates/subscriptions/020-argocd-admin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/cp4waiops/install-emgr/templates/subscriptions/020-argocd-admin.yaml -------------------------------------------------------------------------------- /config/cp4waiops/install-emgr/templates/subscriptions/021-noi-ns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/cp4waiops/install-emgr/templates/subscriptions/021-noi-ns.yaml -------------------------------------------------------------------------------- /config/cp4waiops/install-emgr/templates/subscriptions/022-crt-noi-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/cp4waiops/install-emgr/templates/subscriptions/022-crt-noi-serviceaccount.yaml -------------------------------------------------------------------------------- /config/cp4waiops/install-emgr/templates/subscriptions/040-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/cp4waiops/install-emgr/templates/subscriptions/040-policy.yaml -------------------------------------------------------------------------------- /config/cp4waiops/install-emgr/templates/subscriptions/050-noi-catalogsource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/cp4waiops/install-emgr/templates/subscriptions/050-noi-catalogsource.yaml -------------------------------------------------------------------------------- /config/cp4waiops/install-emgr/templates/subscriptions/060-noi-operatorgroup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/cp4waiops/install-emgr/templates/subscriptions/060-noi-operatorgroup.yaml -------------------------------------------------------------------------------- /config/cp4waiops/install-emgr/templates/subscriptions/061-noi-subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/cp4waiops/install-emgr/templates/subscriptions/061-noi-subscription.yaml -------------------------------------------------------------------------------- /config/cp4waiops/install-emgr/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/config/cp4waiops/install-emgr/values.yaml -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/cp4waiops-gitops/HEAD/mkdocs.yml --------------------------------------------------------------------------------