├── .aicoe-ci.yaml ├── .github ├── ISSUE_TEMPLATE │ └── copilot_ops.yaml ├── sync.yml └── workflows │ ├── book.yml │ ├── sync.yml │ └── techdocs.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── .prow.yaml ├── .sops.yaml ├── LICENSE ├── OWNERS ├── README.md ├── acm ├── base │ ├── kustomization.yaml │ └── multiclusterhub.yaml └── overlays │ └── moc │ └── infra │ ├── gitopsclusters │ ├── argocd-managed.yaml │ └── kustomization.yaml │ ├── identitatem │ ├── authrealms │ │ ├── kustomization.yaml │ │ └── primary.yaml │ ├── clients │ │ ├── github.yaml │ │ └── kustomization.yaml │ └── kustomization.yaml │ ├── kustomization.yaml │ ├── managedclusters │ ├── curator.yaml │ ├── jerry.yaml │ ├── kustomization.yaml │ ├── ocp-prod.yaml │ ├── ocp-staging.yaml │ └── smaug.yaml │ ├── managedclustersetbindings │ ├── argocd │ │ └── kustomization.yaml │ ├── base │ │ ├── argocd-managed.yaml │ │ ├── drvbw.yaml │ │ ├── kustomization.yaml │ │ └── octo-ushift-dev.yaml │ ├── idp-auth-primary │ │ └── kustomization.yaml │ └── kustomization.yaml │ ├── managedclustersets │ ├── argocd-managed.yaml │ ├── drvbw.yaml │ ├── kustomization.yaml │ └── octo-ushift-dev.yaml │ ├── placements │ ├── argocd-managed-clusters.yaml │ ├── kustomization.yaml │ └── primary-auth.yaml │ └── provider-connections │ ├── aws-octo.yaml │ └── kustomization.yaml ├── acme-operator ├── base │ ├── deployment.yaml │ ├── kustomization.yaml │ └── serviceaccount.yaml └── overlays │ ├── dev │ ├── issuer-letsencrypt-staging.yaml │ └── kustomization.yaml │ ├── moc │ ├── infra │ │ ├── issuer-letsencrypt-live.yaml │ │ └── kustomization.yaml │ └── smaug │ │ ├── issuer-letsencrypt-live.yaml │ │ └── kustomization.yaml │ └── osc │ ├── osc-cl1 │ ├── issuer-letsencrypt-live.yaml │ └── kustomization.yaml │ └── osc-cl2 │ ├── issuer-letsencrypt-live.yaml │ └── kustomization.yaml ├── alertreceiver ├── base │ ├── deployment.yaml │ ├── kustomization.yaml │ └── service.yaml └── overlays │ └── moc │ ├── infra │ ├── github-secrets.yaml │ └── kustomization.yaml │ └── smaug │ ├── github-secrets.yaml │ └── kustomization.yaml ├── argocd-notifications ├── base │ ├── configmap.yaml │ └── kustomization.yaml └── overlays │ └── infra │ ├── argocd-notifications-secret.yaml │ └── kustomization.yaml ├── argocd ├── base │ ├── deployments │ │ ├── argocd-application-controller_patch.yaml │ │ ├── argocd-dex-server_patch.yaml │ │ ├── argocd-redis_patch.yaml │ │ ├── argocd-repo-server_patch.yaml │ │ └── argocd-server_patch.yaml │ ├── kustomization.yaml │ ├── routes │ │ └── argocd_server_route.yaml │ ├── service-monitor.yaml │ ├── serviceaccounts │ │ └── argocd-manager.yaml │ └── services │ │ ├── argocd_metrics_service_patch.yaml │ │ └── argocd_server_metrics_service_patch.yaml ├── cluster-resources │ └── kustomization.yaml └── overlays │ └── moc-infra │ ├── alerts.yaml │ ├── applications │ ├── app-of-apps │ │ ├── app-of-apps-curator.yaml │ │ ├── app-of-apps-demo.yaml │ │ ├── app-of-apps-infra.yaml │ │ ├── app-of-apps-jerry.yaml │ │ ├── app-of-apps-ocp-prod.yaml │ │ ├── app-of-apps-ocp-staging.yaml │ │ ├── app-of-apps-smaug.yaml │ │ └── kustomization.yaml │ ├── envs │ │ ├── dev │ │ │ ├── cluster-management │ │ │ │ ├── cluster-resources.yaml │ │ │ │ ├── kubevirt-hyperconverged.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ └── local-storage.yaml │ │ │ ├── data-science │ │ │ │ ├── kustomization.yaml │ │ │ │ └── mailing-list-analysis-toolkit.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── mesh-for-data │ │ │ │ └── kustomization.yaml │ │ │ ├── operate-first │ │ │ │ ├── argo.yaml │ │ │ │ ├── cluster-logging.yaml │ │ │ │ ├── dashboard.yaml │ │ │ │ ├── datacatalog.yaml │ │ │ │ ├── jupyterhub.yaml │ │ │ │ ├── kafka.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── monitoring.yaml │ │ │ │ ├── observatorium.yaml │ │ │ │ └── superset.yaml │ │ │ ├── rekor │ │ │ │ └── kustomization.yaml │ │ │ └── thoth │ │ │ │ └── kustomization.yaml │ │ ├── emea │ │ │ ├── demo │ │ │ │ ├── cluster-management │ │ │ │ │ ├── alertreceiver.yaml │ │ │ │ │ ├── cluster-resources.yaml │ │ │ │ │ └── kustomization.yaml │ │ │ │ └── kustomization.yaml │ │ │ └── jerry │ │ │ │ ├── cluster-management │ │ │ │ ├── cert-manager.yaml │ │ │ │ ├── cluster-resources.yaml │ │ │ │ ├── external-secrets.yaml │ │ │ │ └── kustomization.yaml │ │ │ │ └── kustomization.yaml │ │ └── moc │ │ │ ├── curator │ │ │ ├── cluster-management │ │ │ │ ├── cert-manager.yaml │ │ │ │ ├── cluster-resources.yaml │ │ │ │ ├── external-secrets.yaml │ │ │ │ └── kustomization.yaml │ │ │ └── kustomization.yaml │ │ │ ├── infra │ │ │ ├── cluster-management │ │ │ │ ├── acm.yaml │ │ │ │ ├── alertreceiver.yaml │ │ │ │ ├── argocd-notifications.yaml │ │ │ │ ├── argocd-projects.yaml │ │ │ │ ├── argocd.yaml │ │ │ │ ├── cert-manager.yaml │ │ │ │ ├── cluster-resources.yaml │ │ │ │ ├── external-secrets.yaml │ │ │ │ ├── kubevirt-hyperconverged.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ └── odf-fake-metrics-exporter.yaml │ │ │ ├── kustomization.yaml │ │ │ └── operate-first │ │ │ │ ├── acme-operator.yaml │ │ │ │ ├── cluster-logging.yaml │ │ │ │ ├── k8s-annotations-exporter.yaml │ │ │ │ └── kustomization.yaml │ │ │ └── smaug │ │ │ ├── apicurio │ │ │ ├── api-designer.yaml │ │ │ ├── kustomization.yaml │ │ │ └── registry.yml │ │ │ ├── cluster-management │ │ │ ├── alertreceiver.yaml │ │ │ ├── cert-manager.yaml │ │ │ ├── cluster-resources.yaml │ │ │ ├── dex.yaml │ │ │ ├── external-secrets.yaml │ │ │ ├── kfdefs.yaml │ │ │ ├── kubevirt-hyperconverged.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── nfd.yaml │ │ │ ├── nfs-server-and-provisioner.yaml │ │ │ ├── node-labeler.yaml │ │ │ └── odh-operator.yaml │ │ │ ├── copilot-ops │ │ │ ├── copilot-ops-bot.yaml │ │ │ └── kustomization.yaml │ │ │ ├── data-science │ │ │ ├── github-pr-labeler.yaml │ │ │ └── kustomization.yaml │ │ │ ├── janus-idp │ │ │ ├── janus-idp.yaml │ │ │ └── kustomization.yaml │ │ │ ├── kruize │ │ │ ├── kruize.yaml │ │ │ └── kustomization.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── okd-team │ │ │ ├── kustomization.yaml │ │ │ ├── kvm-device-plugin.yaml │ │ │ ├── okd-centos.yaml │ │ │ └── okd-tekton-release-pipeline.yaml │ │ │ ├── operate-first │ │ │ ├── acme-operator.yaml │ │ │ ├── ci-prow-test-pods.yaml │ │ │ ├── ci-prow.yaml │ │ │ ├── cloudbeaver-stage.yaml │ │ │ ├── cloudbeaver.yaml │ │ │ ├── cluster-logging.yaml │ │ │ ├── curator-operator.yaml │ │ │ ├── grafana-public.yaml │ │ │ ├── grafana.yaml │ │ │ ├── jh-idle-culler.yaml │ │ │ ├── k8s-annotations-exporter.yaml │ │ │ ├── kfp-tekton.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── meteor-operator-pipelines.yaml │ │ │ ├── meteor-operator-pushgateway.yaml │ │ │ ├── meteor-shower.yaml │ │ │ ├── observatorium.yaml │ │ │ ├── opf-kafka.yaml │ │ │ ├── opf-vault.yaml │ │ │ ├── peribolos-as-a-service.yaml │ │ │ ├── prod-aicoe-ci.yaml │ │ │ ├── pulp.yaml │ │ │ ├── reloader.yaml │ │ │ ├── robozome.yaml │ │ │ ├── service-catalog.yaml │ │ │ ├── slack-first.yaml │ │ │ ├── tekton-chains.yaml │ │ │ └── triage-party.yaml │ │ │ └── thoth │ │ │ ├── OWNERS │ │ │ ├── bots │ │ │ ├── kustomization.yaml │ │ │ ├── prod-thoth-bot-sefkhet-abwy-chatbot.yaml │ │ │ ├── prod-thoth-elyra-aidevsecops-tutorial.yaml │ │ │ └── prod-thoth-sefkhet-abwy.yaml │ │ │ ├── kustomization.yaml │ │ │ └── prod │ │ │ ├── core-backend.yaml │ │ │ ├── core-frontend.yaml │ │ │ ├── core-graph.yaml │ │ │ ├── core-infra.yaml │ │ │ ├── core-middletier.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── prod-thoth-advise-reporter.yaml │ │ │ ├── prod-thoth-adviser.yaml │ │ │ ├── prod-thoth-amun-api.yaml │ │ │ ├── prod-thoth-amun-inspection.yaml │ │ │ ├── prod-thoth-chat-notification.yaml │ │ │ ├── prod-thoth-cve-update.yaml │ │ │ ├── prod-thoth-graph-backup.yaml │ │ │ ├── prod-thoth-graph-metrics-exporter.yaml │ │ │ ├── prod-thoth-graph-refresh.yaml │ │ │ ├── prod-thoth-graph-schema-update.yaml │ │ │ ├── prod-thoth-graph-sync-backend.yaml │ │ │ ├── prod-thoth-graph-sync-middletier.yaml │ │ │ ├── prod-thoth-investigator-message-metrics.yaml │ │ │ ├── prod-thoth-investigator.yaml │ │ │ ├── prod-thoth-kebechet.yaml │ │ │ ├── prod-thoth-management-api.yaml │ │ │ ├── prod-thoth-metrics-exporter.yaml │ │ │ ├── prod-thoth-mi.yaml │ │ │ ├── prod-thoth-monitoring.yaml │ │ │ ├── prod-thoth-package-extract.yaml │ │ │ ├── prod-thoth-package-releases.yaml │ │ │ ├── prod-thoth-package-update.yaml │ │ │ ├── prod-thoth-purge-job.yaml │ │ │ ├── prod-thoth-revsolver.yaml │ │ │ ├── prod-thoth-security-indicators.yaml │ │ │ ├── prod-thoth-solver.yaml │ │ │ └── prod-thoth-user-api.yaml │ └── kustomization.yaml │ ├── configs │ ├── argo_cm │ │ ├── configManagementPlugins │ │ ├── dex.config │ │ ├── envs │ │ ├── globalProjects │ │ └── resource.exclusions │ └── argo_rbac_cm │ │ ├── policy.csv │ │ └── policy.default │ ├── externalsecrets │ ├── auth │ │ ├── argocd-dex-server-oauth-token.yaml │ │ ├── argocd-secret.yaml │ │ └── kustomization.yaml │ ├── clusters │ │ ├── kustomization.yaml │ │ └── moc-infra.yaml │ ├── gpg │ │ └── ksops-pgp-key.yaml │ └── kustomization.yaml │ ├── kustomization.yaml │ ├── projects │ ├── apicurio-registry.yaml │ ├── cluster-management.yaml │ ├── copilot-ops.yaml │ ├── data-science.yaml │ ├── global_project.yaml │ ├── janus-idp.yaml │ ├── kruize.yaml │ ├── kustomization.yaml │ ├── lab-cicd.yaml │ ├── mocops.yaml │ ├── okd-team.yaml │ ├── operate-first.yaml │ ├── os-climate.yaml │ ├── rekor.yaml │ ├── sostrades.yaml │ ├── thoth.yaml │ └── tremor-demo.yaml │ ├── routes │ └── argocd-google.yaml │ └── serviceaccounts │ └── argocd-dex-server.yaml ├── cert-manager └── overlays │ ├── emea │ └── jerry │ │ ├── api │ │ ├── certificate.yaml │ │ ├── externalsecrets │ │ │ ├── clouddns-dns01-emea-svc-acct.yaml │ │ │ └── kustomization.yaml │ │ ├── issuer.yaml │ │ └── kustomization.yaml │ │ ├── ingress │ │ ├── certificate.yaml │ │ ├── externalsecrets │ │ │ ├── clouddns-dns01-emea-svc-acct.yaml │ │ │ └── kustomization.yaml │ │ ├── issuer.yaml │ │ └── kustomization.yaml │ │ └── kustomization.yaml │ ├── moc │ ├── curator │ │ ├── api │ │ │ ├── certificate.yaml │ │ │ ├── externalsecrets │ │ │ │ ├── kustomization.yaml │ │ │ │ └── route53-credentials.yaml │ │ │ ├── issuer.yaml │ │ │ └── kustomization.yaml │ │ ├── ingress │ │ │ ├── certificate.yaml │ │ │ ├── externalsecrets │ │ │ │ ├── kustomization.yaml │ │ │ │ └── route53-credentials.yaml │ │ │ ├── issuer.yaml │ │ │ └── kustomization.yaml │ │ └── kustomization.yaml │ ├── infra │ │ ├── api │ │ │ ├── certificate.yaml │ │ │ ├── externalsecrets │ │ │ │ ├── kustomization.yaml │ │ │ │ └── route53-credentials.yaml │ │ │ ├── issuer.yaml │ │ │ └── kustomization.yaml │ │ ├── ingress │ │ │ ├── certificate.yaml │ │ │ ├── externalsecrets │ │ │ │ ├── kustomization.yaml │ │ │ │ └── route53-credentials.yaml │ │ │ ├── issuer.yaml │ │ │ └── kustomization.yaml │ │ └── kustomization.yaml │ └── smaug │ │ ├── api │ │ ├── certificate.yaml │ │ ├── externalsecrets │ │ │ ├── clouddns-dns01-na-svc-acct.yaml │ │ │ └── kustomization.yaml │ │ ├── issuer.yaml │ │ └── kustomization.yaml │ │ ├── ingress │ │ ├── certificate.yaml │ │ ├── externalsecrets │ │ │ ├── clouddns-dns01-na-svc-acct.yaml │ │ │ └── kustomization.yaml │ │ ├── issuer.yaml │ │ └── kustomization.yaml │ │ └── kustomization.yaml │ └── osc │ └── osc-cl1 │ ├── api │ ├── externalsecrets │ │ ├── kustomization.yaml │ │ └── route53.yaml │ └── kustomization.yaml │ ├── ingress │ ├── certificate.yaml │ ├── externalsecrets │ │ ├── kustomization.yaml │ │ └── route53.yaml │ ├── issuer.yaml │ └── kustomization.yaml │ └── kustomization.yaml ├── cloudbeaver ├── base │ ├── deployment.yaml │ ├── kustomization.yaml │ ├── persistentvolumeclaim.yaml │ ├── route.yaml │ └── service.yaml └── overlays │ ├── moc │ ├── smaug-stage │ │ ├── add_configs.yaml │ │ ├── configs │ │ │ ├── cloudbeaver.conf │ │ │ ├── initial-data-sources.conf │ │ │ ├── initial-data.conf │ │ │ └── product.conf │ │ └── kustomization.yaml │ └── smaug │ │ ├── add_configs.yaml │ │ ├── configs │ │ ├── cloudbeaver.conf │ │ ├── initial-data-sources.conf │ │ ├── initial-data.conf │ │ └── product.conf │ │ └── kustomization.yaml │ └── osc │ ├── OWNERS │ ├── osc-cl1 │ ├── add_configs.yaml │ ├── configs │ │ ├── cloudbeaver.conf │ │ ├── initial-data-sources.conf │ │ ├── initial-data.conf │ │ └── product.conf │ ├── kustomization.yaml │ └── secure-route.yaml │ └── osc-cl2 │ ├── add_configs.yaml │ ├── configs │ ├── cloudbeaver.conf │ ├── initial-data-sources.conf │ ├── initial-data.conf │ └── product.conf │ ├── kustomization.yaml │ └── secure-route.yaml ├── cluster-logging ├── base │ ├── clusterlogging.yaml │ ├── kustomization.yaml │ ├── rolebindings │ │ ├── kustomization.yaml │ │ └── prometheus-k8s.yaml │ └── roles │ │ ├── kustomization.yaml │ │ └── prometheus-k8s.yaml └── overlays │ ├── dev │ └── kustomization.yaml │ └── moc │ ├── infra │ ├── .sops.yaml │ ├── clusterlogforwarders │ │ ├── clusterlogforwarder.yaml │ │ └── kustomization.yaml │ ├── kustomization.yaml │ ├── secret-generator.yaml │ └── secrets │ │ └── clo-kafka.enc.yaml │ └── smaug │ ├── .sops.yaml │ ├── clusterlogforwarders │ ├── clusterlogforwarder.yaml │ └── kustomization.yaml │ ├── kustomization.yaml │ ├── secret-generator.yaml │ └── secrets │ └── clo-kafka.enc.yaml ├── cluster-scope ├── README.md ├── base │ ├── apiextensions.k8s.io │ │ └── customresourcedefinitions │ │ │ ├── applications.argoproj.io │ │ │ ├── customresourcedefinition.yaml │ │ │ └── kustomization.yaml │ │ │ ├── applicationsets.argoproj.io │ │ │ ├── customresourcedefinition.yaml │ │ │ └── kustomization.yaml │ │ │ ├── appprojects.argoproj.io │ │ │ ├── customresourcedefinition.yaml │ │ │ └── kustomization.yaml │ │ │ ├── cronworkflows.argoproj.io │ │ │ ├── customresourcedefinition.yaml │ │ │ └── kustomization.yaml │ │ │ ├── curatorconfig.curatoroperator.io │ │ │ ├── customresourcedefinition.yaml │ │ │ └── kustomization.yaml │ │ │ ├── extensions.dashboard.tekton.dev │ │ │ ├── customresourcedefinition.yaml │ │ │ └── kustomization.yaml │ │ │ ├── fetchdata.curator.operatefirst.io │ │ │ ├── customresourcedefinition.yaml │ │ │ └── kustomization.yaml │ │ │ ├── kfdefs.kfdef.apps.kubeflow.org │ │ │ ├── customresourcedefinition.yaml │ │ │ └── kustomization.yaml │ │ │ ├── mpijobs.kubeflow.org │ │ │ ├── customresourcedefinition.yaml │ │ │ └── kustomization.yaml │ │ │ ├── mxjobs.kubeflow.org │ │ │ ├── customresourcedefinition.yaml │ │ │ └── kustomization.yaml │ │ │ ├── prowjobs.prow.k8s.io │ │ │ ├── customresourcedefinition.yaml │ │ │ └── kustomization.yaml │ │ │ ├── pytorchjobs.kubeflow.org │ │ │ ├── customresourcedefinition.yaml │ │ │ └── kustomization.yaml │ │ │ ├── rayclusters.cluster.ray.io │ │ │ ├── customresourcedefinition.yaml │ │ │ └── kustomization.yaml │ │ │ ├── rayclusters.ray.io │ │ │ ├── customresourcedefinition.yaml │ │ │ └── kustomization.yaml │ │ │ ├── rayjobs.ray.io │ │ │ ├── customresourcedefinition.yaml │ │ │ └── kustomization.yaml │ │ │ ├── rayservices.ray.io │ │ │ ├── customresourcedefinition.yaml │ │ │ └── kustomization.yaml │ │ │ ├── replicationdestinations.volsync.backube │ │ │ └── kustomization.yaml │ │ │ ├── replicationsources.volsync.backube │ │ │ └── kustomization.yaml │ │ │ ├── reportapis.curator.operatefirst.io │ │ │ ├── customresourcedefinition.yaml │ │ │ └── kustomization.yaml │ │ │ ├── reports.batch.curator.openshift.io │ │ │ ├── batch.curator.openshift.io_reports.yaml │ │ │ └── kustomization.yaml │ │ │ ├── reports.curator.operatefirst.io │ │ │ ├── customresourcedefinition.yaml │ │ │ └── kustomization.yaml │ │ │ ├── scheduledworkflows.kubeflow.org │ │ │ ├── customresourcedefinition.yaml │ │ │ └── kustomization.yaml │ │ │ ├── tfjobs.kubeflow.org │ │ │ ├── customresourcedefinition.yaml │ │ │ └── kustomization.yaml │ │ │ ├── viewers.kubeflow.org │ │ │ ├── customresourcedefinition.yaml │ │ │ └── kustomization.yaml │ │ │ ├── workflow.argoproj.io │ │ │ ├── customresourcedefinition.yaml │ │ │ └── kustomization.yaml │ │ │ ├── workflowtemplate.argoproj.io │ │ │ ├── customresourcedefinition.yaml │ │ │ └── kustomization.yaml │ │ │ └── xgboostjobs.kubeflow.org │ │ │ ├── customresourcedefinition.yaml │ │ │ └── kustomization.yaml │ ├── apps │ │ └── daemonsets │ │ │ ├── kepler-exporter │ │ │ ├── daemonset.yaml │ │ │ └── kustomization.yaml │ │ │ └── kvm-device-plugin │ │ │ ├── daemonset.yaml │ │ │ └── kustomization.yaml │ ├── autoscaling.openshift.io │ │ └── clusterautoscalers │ │ │ └── default │ │ │ ├── clusterautoscaler.yaml │ │ │ └── kustomization.yaml │ ├── batch │ │ └── cronjobs │ │ │ └── service-catalog-k8s-plugin │ │ │ ├── cronjob.yaml │ │ │ └── kustomization.yaml │ ├── config.openshift.io │ │ ├── oauths │ │ │ └── cluster │ │ │ │ ├── kustomization.yaml │ │ │ │ └── oauth.yaml │ │ └── projects │ │ │ └── cluster │ │ │ ├── kustomization.yaml │ │ │ └── project.yaml │ ├── core │ │ ├── configmaps │ │ │ ├── cluster-monitoring-config │ │ │ │ ├── configmap.yaml │ │ │ │ └── kustomization.yaml │ │ │ └── user-workload-monitoring-config │ │ │ │ ├── configmap.yaml │ │ │ │ └── kustomization.yaml │ │ ├── namespaces │ │ │ ├── acm │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── acme-operator │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── adoptium-project │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── ai-services-thanos-grpc │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── ai4cloudops │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── namespace.yaml │ │ │ │ └── resourcequota.yaml │ │ │ ├── aicoe-meteor │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── aicos-osc-demo │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── aiops-tools-workshop │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── api-designer │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── namespace.yaml │ │ │ │ └── resourcequota.yaml │ │ │ ├── apicurio-apicurio-registry │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── namespace.yaml │ │ │ │ └── resourcequota.yaml │ │ │ ├── argocd │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── as-pushgateway │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── banzaicloud-vault │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── bragi │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── bu-cs-book-dev │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── bu-scsaol │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── caas │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── chi-rhug │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── cnv-testing │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── codait-advo │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── copilot-ops │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── curator-engine │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── curator-operator │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── datahub-linkedin │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── namespace.yaml │ │ │ │ └── resourcequota.yaml │ │ │ ├── debezium-ui │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── demo-jupyterhub │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── demolab-dev │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── demolab-staging │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── demolab │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── dex-secondary │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── dex │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── ds-black-flake │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── ds-example-project │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── ds-github-labeler │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── ds-ml-workflows-ws │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── namespace.yaml │ │ │ │ └── resourcequota.yaml │ │ │ ├── elyra-aidevsecops-tutorial │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── enterprise-neurosystem-collaboration │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── esi-operate-first-project │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── examples-openshift-pub │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── external-secrets-operator │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── fde-audio-decoder-demo │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── fedora │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── gingersnap │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── highlander │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── hostpath-provisioner │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── idp-auth-primary │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── idp-mgmt-config │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── inception │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── janus-idp │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── namespace.yaml │ │ │ │ └── resourcequota.yaml │ │ │ ├── jet-linite │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── kafka │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── kaoto │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── kepler-monitoring │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── koku-metrics-operator │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── kubeflow │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── kubesmarts │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── kvm-device-plugin │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── lab-cicd-1-jump-app-cicd │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── lab-cicd-1-jump-app-dev │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── lab-cicd-2-jump-app-cicd │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── lab-cicd-2-jump-app-dev │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── lab-cicd-3-jump-app-cicd │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── lab-cicd-3-jump-app-dev │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── lab-cicd-4-jump-app-cicd │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── lab-cicd-4-jump-app-dev │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── local-storage │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── lotus │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── namespace.yaml │ │ │ │ └── resourcequota.yaml │ │ │ ├── manageiq │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── namespace.yaml │ │ │ │ └── resourcequota.yaml │ │ │ ├── markets-svc-dev │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── metallb-system │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── multinode-demo │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── namespace.yaml │ │ │ │ └── resourcequota.yaml │ │ │ ├── mwperf-horreum │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── neu-cs6620 │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── nfs-server-and-provisioner │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── namespace.yaml │ │ │ │ └── resourcequota.yaml │ │ │ ├── nvidia-gpu-operator │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── observatorium-operator │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── od-demo │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── odh-jupyterhub │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── odh-seldon │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── odh-superset │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── odh-trino-dev │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── odh-trino │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── okd-centos │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── okd-team │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── limits.yaml │ │ │ │ ├── namespace.yaml │ │ │ │ └── resourcequota.yaml │ │ │ ├── okd-wg │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── open-aiops │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── open-cluster-management-observability │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── opendatahub-operator │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── openmetadata │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── openshift-cnv │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── openshift-distributed-tracing │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── openshift-insights │ │ │ │ └── kustomization.yaml │ │ │ ├── openshift-local-storage │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── openshift-logging │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── openshift-metering │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── openshift-monitoring │ │ │ │ └── kustomization.yaml │ │ │ ├── openshift-nfd │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── openshift-nmstate │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── openshift-operators-redhat │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── openshift-operators │ │ │ │ └── kustomization.yaml │ │ │ ├── openshift-pipelines │ │ │ │ └── kustomization.yaml │ │ │ ├── openshift-serverless │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── openshift-storage │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── openshift-tuning │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── openshift-vertical-pod-autoscaler │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── opentelemetry-collector-operator │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── opf-alertreceiver │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── opf-argo │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── opf-ci-pipelines │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── namespace.yaml │ │ │ │ └── resourcequota.yaml │ │ │ ├── opf-ci-prow │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── namespace.yaml │ │ │ │ └── resourcequota.yaml │ │ │ ├── opf-ci-test-pods │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── opf-dashboard │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── opf-datacatalog │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── namespace.yaml │ │ │ │ └── resourcequota.yaml │ │ │ ├── opf-google-spark-operator │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── opf-grafana-public │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── opf-jupyterhub-stage │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── namespace.yaml │ │ │ │ └── resourcequota.yaml │ │ │ ├── opf-jupyterhub │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── namespace.yaml │ │ │ │ └── resourcequota.yaml │ │ │ ├── opf-kafka │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── namespace.yaml │ │ │ │ └── resourcequota.yaml │ │ │ ├── opf-monitoring │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── namespace.yaml │ │ │ │ └── resourcequota.yaml │ │ │ ├── opf-obcs │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── opf-observatorium │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── namespace.yaml │ │ │ │ └── resourcequota.yaml │ │ │ ├── opf-pulp │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── namespace.yaml │ │ │ │ └── resourcequota.yaml │ │ │ ├── opf-seldon │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── opf-slack-first │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── opf-superset │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── namespace.yaml │ │ │ │ └── resourcequota.yaml │ │ │ ├── opf-triage-party │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── opf-trino-stage │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── namespace.yaml │ │ │ │ └── resourcequota.yaml │ │ │ ├── opf-trino │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── namespace.yaml │ │ │ │ └── resourcequota.yaml │ │ │ ├── osc-playground │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── namespace.yaml │ │ │ │ └── resourcequota.yaml │ │ │ ├── pachyderm │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── peribolos-as-a-service │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── physrisk-resilience │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── namespace.yaml │ │ │ │ └── resourcequota.yaml │ │ │ ├── pixel-demo │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── pixel-demos │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── pixel-secrets │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── pixel-vault │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── prometheus-ai-project │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── quarkus-extension-registry │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── rapidast │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── ray-bu │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── rbo-builder │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── redhat-cto-ns │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── reloader │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── report-system │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── rh-curator-eval │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── robozome │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── namespace.yaml │ │ │ │ └── resourcequota.yaml │ │ │ ├── sa-dach-anwendertreffen │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── sa-dach-openshift-examples │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── sandbox │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── namespace.yaml │ │ │ │ └── resourcequota.yaml │ │ │ ├── sdap │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── namespace.yaml │ │ │ │ └── resourcequota.yaml │ │ │ ├── service-catalog-k8s-plugin │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── service-catalog │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── namespace.yaml │ │ │ │ └── resourcequota.yaml │ │ │ ├── sigstore-aas │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── sigstore-deploy │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── smart-village-view │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── namespace.yaml │ │ │ │ └── resourcequota.yaml │ │ │ ├── smartoffice │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── sostrades-namespace │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── limitrange.yaml │ │ │ │ ├── namespace.yaml │ │ │ │ └── resourcequota.yaml │ │ │ ├── sostrades │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── limitrange.yaml │ │ │ │ ├── namespace.yaml │ │ │ │ └── resourcequota.yaml │ │ │ ├── tekton-chains │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── tekton-pipelines │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── thoth-amun-api-prod │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── thoth-amun-inspection-prod │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── namespace.yaml │ │ │ │ └── resourcequota.yaml │ │ │ ├── thoth-backend-prod │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── namespace.yaml │ │ │ │ └── resourcequota.yaml │ │ │ ├── thoth-bots-prod │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── thoth-cre-integration │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── namespace.yaml │ │ │ │ └── resourcequota.yaml │ │ │ ├── thoth-deployment-examples │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── thoth-frontend-prod │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── namespace.yaml │ │ │ │ └── resourcequota.yaml │ │ │ ├── thoth-graph-prod │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── namespace.yaml │ │ │ │ └── resourcequota.yaml │ │ │ ├── thoth-infra-prod │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── thoth-middletier-prod │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── namespace.yaml │ │ │ │ └── resourcequota.yaml │ │ │ ├── thoth-test-core │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── namespace.yaml │ │ │ │ └── resourcequota.yaml │ │ │ ├── thoth-website-prod │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── tremor-demo │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── uky-hpc-workload-generator │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── vault │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── web-terminal-service-catalog │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ └── wildfly-service │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ ├── persistentvolumeclaims │ │ │ └── image-registry-storage │ │ │ │ ├── kustomization.yaml │ │ │ │ └── persistentvolumeclaim.yaml │ │ ├── secrets │ │ │ └── service-catalog-k8s-plugin-token │ │ │ │ ├── kustomization.yaml │ │ │ │ └── secret.yaml │ │ └── serviceaccounts │ │ │ ├── schemastore-ci │ │ │ ├── kustomization.yaml │ │ │ └── serviceaccount.yaml │ │ │ ├── service-catalog-k8s-plugin │ │ │ ├── kustomization.yaml │ │ │ └── serviceaccount.yaml │ │ │ ├── service-catalog-prometheus-plugin │ │ │ ├── kustomization.yaml │ │ │ └── serviceaccount.yaml │ │ │ └── vault-secret-writer │ │ │ ├── kustomization.yaml │ │ │ └── serviceaccount.yaml │ ├── hostpathprovisioner.kubevirt.io │ │ └── hostpathprovisioners │ │ │ └── hostpath-provisioner │ │ │ ├── hostpathprovisioner.yaml │ │ │ └── kustomization.yaml │ ├── identityconfig.identitatem.io │ │ └── idpconfigs │ │ │ └── idpconfig │ │ │ ├── idpconfig.yaml │ │ │ └── kustomization.yaml │ ├── imageregistry.operator.openshift.io │ │ └── configs │ │ │ └── cluster │ │ │ ├── config.yaml │ │ │ └── kustomization.yaml │ ├── machineconfiguration.openshift.io │ │ ├── machineconfigpools │ │ │ └── mcp-kvm-device-plugin │ │ │ │ ├── kustomization.yaml │ │ │ │ └── machineconfigpool.yaml │ │ └── machineconfigs │ │ │ ├── 50-master-kernel-devel-cgroupv2 │ │ │ ├── 50-master-kernel-devel-cgroupv2.yaml │ │ │ └── kustomization.yaml │ │ │ ├── 50-set-selinux-for-hostpath-provisioner-controller │ │ │ ├── kustomization.yaml │ │ │ └── machineconfig.yaml │ │ │ ├── 50-worker-kernel-devel-cgroupv2 │ │ │ ├── 50-worker-kernel-devel-cgroupv2.yaml │ │ │ └── kustomization.yaml │ │ │ ├── 80-enable-nested-virt │ │ │ ├── kustomization.yaml │ │ │ └── machineconfig.yaml │ │ │ ├── 99-master-ssh │ │ │ ├── kustomization.yaml │ │ │ └── machineconfig.yaml │ │ │ └── 99-worker-ssh │ │ │ ├── kustomization.yaml │ │ │ └── machineconfig.yaml │ ├── nmstate.io │ │ └── nmstates │ │ │ └── nmstate │ │ │ ├── kustomization.yaml │ │ │ └── nmstate.yaml │ ├── noobaa.io │ │ └── backingstores │ │ │ ├── kustomization.yaml │ │ │ └── noobaa-default-backing-store.yaml │ ├── ocs.openshift.io │ │ ├── ocsinitializations │ │ │ └── ocsinit │ │ │ │ ├── kustomization.yaml │ │ │ │ └── ocsinitialization.yaml │ │ └── storageclusters │ │ │ └── ocs-external-storagecluster │ │ │ ├── kustomization.yaml │ │ │ └── storagecluster.yaml │ ├── odf.openshift.io │ │ └── storagesystems │ │ │ └── ocs-external-storagecluster-storagesystem │ │ │ ├── kustomization.yaml │ │ │ └── storagesystem.yaml │ ├── operator.openshift.io │ │ ├── consoles │ │ │ └── cluster │ │ │ │ ├── console.yaml │ │ │ │ └── kustomization.yaml │ │ └── ingresscontrollers │ │ │ └── default │ │ │ ├── ingresscontroller.yaml │ │ │ └── kustomization.yaml │ ├── operator.tekton.dev │ │ └── tektonconfigs │ │ │ └── config │ │ │ ├── kustomization.yaml │ │ │ └── tektonconfig.yaml │ ├── operators.coreos.com │ │ ├── catalogsources │ │ │ ├── meteor-operator │ │ │ │ ├── catalogsource.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── operatorhubio-catalog │ │ │ │ ├── catalogsource.yaml │ │ │ │ └── kustomization.yaml │ │ │ └── rapidast │ │ │ │ ├── catalogsource.yaml │ │ │ │ └── kustomization.yaml │ │ ├── operatorgroups │ │ │ ├── banzaicloud-vault │ │ │ │ ├── kustomization.yaml │ │ │ │ └── operatorgroup.yaml │ │ │ ├── cluster-logging │ │ │ │ ├── kustomization.yaml │ │ │ │ └── operatorgroup.yaml │ │ │ ├── global-operators │ │ │ │ ├── kustomization.yaml │ │ │ │ └── operatorgroup.yaml │ │ │ ├── idp-mgmt-operator │ │ │ │ ├── kustomization.yaml │ │ │ │ └── operatorgroup.yaml │ │ │ ├── jaeger-operator │ │ │ │ ├── kustomization.yaml │ │ │ │ └── operatorgroup.yaml │ │ │ ├── koku-metrics-operator │ │ │ │ ├── kustomization.yaml │ │ │ │ └── operatorgroup.yaml │ │ │ ├── local-storage-operator-group │ │ │ │ ├── kustomization.yaml │ │ │ │ └── operatorgroup.yaml │ │ │ ├── meteor-operator │ │ │ │ ├── kustomization.yaml │ │ │ │ └── operatorgroup.yaml │ │ │ ├── mwperf-horreum │ │ │ │ ├── kustomization.yaml │ │ │ │ └── operatorgroup.yaml │ │ │ ├── openshift-cnv-rn5jf │ │ │ │ ├── kustomization.yaml │ │ │ │ └── operatorgroup.yaml │ │ │ ├── openshift-local-storage-zj22x │ │ │ │ ├── kustomization.yaml │ │ │ │ └── operatorgroup.yaml │ │ │ ├── openshift-local-storage │ │ │ │ ├── kustomization.yaml │ │ │ │ └── operatorgroup.yaml │ │ │ ├── openshift-metering │ │ │ │ ├── kustomization.yaml │ │ │ │ └── operatorgroup.yaml │ │ │ ├── openshift-nfd │ │ │ │ ├── kustomization.yaml │ │ │ │ └── operatorgroup.yaml │ │ │ ├── openshift-nmstate │ │ │ │ ├── kustomization.yaml │ │ │ │ └── operatorgroup.yaml │ │ │ ├── openshift-operators-redhat │ │ │ │ ├── kustomization.yaml │ │ │ │ └── operatorgroup.yaml │ │ │ ├── openshift-serverless │ │ │ │ ├── kustomization.yaml │ │ │ │ └── operatorgroup.yaml │ │ │ ├── openshift-storage-24n7x │ │ │ │ ├── kustomization.yaml │ │ │ │ └── operatorgroup.yaml │ │ │ ├── openshift-storage │ │ │ │ ├── kustomization.yaml │ │ │ │ └── operatorgroup.yaml │ │ │ ├── openshift-vertical-pod-autoscaler │ │ │ │ ├── kustomization.yaml │ │ │ │ └── operatorgroup.yaml │ │ │ ├── opentelemetry-collector-operator │ │ │ │ ├── kustomization.yaml │ │ │ │ └── operatorgroup.yaml │ │ │ ├── operator-acm-group │ │ │ │ ├── kustomization.yaml │ │ │ │ └── operatorgroup.yaml │ │ │ ├── opf-auth │ │ │ │ ├── kustomization.yaml │ │ │ │ └── operatorgroup.yaml │ │ │ ├── opf-grafana-public │ │ │ │ ├── kustomization.yaml │ │ │ │ └── operatorgroup.yaml │ │ │ ├── opf-kafka │ │ │ │ ├── kustomization.yaml │ │ │ │ └── operatorgroup.yaml │ │ │ ├── opf-monitoring │ │ │ │ ├── kustomization.yaml │ │ │ │ └── operatorgroup.yaml │ │ │ ├── opf-pulp │ │ │ │ ├── kustomization.yaml │ │ │ │ └── operatorgroup.yaml │ │ │ └── rapidast │ │ │ │ ├── kustomization.yaml │ │ │ │ └── operatorgroup.yaml │ │ └── subscriptions │ │ │ ├── acm-operator-subscription │ │ │ ├── kustomization.yaml │ │ │ └── subscription.yaml │ │ │ ├── apex-rhsso-operator │ │ │ └── subscription.yaml │ │ │ ├── banzaicloud-vault │ │ │ ├── kustomization.yaml │ │ │ └── subscription.yaml │ │ │ ├── camel-k │ │ │ ├── kustomization.yaml │ │ │ └── subscription.yaml │ │ │ ├── cert-manager │ │ │ ├── kustomization.yaml │ │ │ └── subscription.yaml │ │ │ ├── cluster-logging │ │ │ ├── kustomization.yaml │ │ │ └── subscription.yaml │ │ │ ├── crunchy-postgres │ │ │ ├── kustomization.yaml │ │ │ └── subscription.yaml │ │ │ ├── elasticsearch-operator │ │ │ ├── kustomization.yaml │ │ │ └── subscription.yaml │ │ │ ├── external-secrets-operator │ │ │ ├── kustomization.yaml │ │ │ └── subscription.yaml │ │ │ ├── grafana-operator │ │ │ ├── kustomization.yaml │ │ │ └── subscription.yaml │ │ │ ├── horreum-operator │ │ │ ├── kustomization.yaml │ │ │ └── subscription.yaml │ │ │ ├── idp-mgmt-operator │ │ │ ├── kustomization.yaml │ │ │ └── subscription.yaml │ │ │ ├── jaeger-operator │ │ │ ├── kustomization.yaml │ │ │ └── subscription.yaml │ │ │ ├── kiali-operator │ │ │ ├── kustomization.yaml │ │ │ └── subscription.yaml │ │ │ ├── koku-metrics-operator │ │ │ ├── kustomization.yaml │ │ │ └── subscription.yaml │ │ │ ├── kubernetes-nmstate-operator │ │ │ ├── kustomization.yaml │ │ │ └── subscription.yaml │ │ │ ├── kubevirt-hyperconverged │ │ │ ├── kustomization.yaml │ │ │ └── subscription.yaml │ │ │ ├── local-storage-operator │ │ │ ├── kustomization.yaml │ │ │ └── subscription.yaml │ │ │ ├── meteor-operator │ │ │ ├── kustomization.yaml │ │ │ └── subscription.yaml │ │ │ ├── metering-operator │ │ │ ├── kustomization.yaml │ │ │ └── subscription.yaml │ │ │ ├── minio-operator │ │ │ ├── kustomization.yaml │ │ │ └── subscription.yaml │ │ │ ├── nfd │ │ │ ├── kustomization.yaml │ │ │ └── subscription.yaml │ │ │ ├── ocs-operator │ │ │ ├── kustomization.yaml │ │ │ └── subscription.yaml │ │ │ ├── odf-operator │ │ │ ├── kustomization.yaml │ │ │ └── subscription.yaml │ │ │ ├── opendatahub-operator │ │ │ ├── kustomization.yaml │ │ │ └── subscription.yaml │ │ │ ├── openshift-local-storage-operator │ │ │ ├── kustomization.yaml │ │ │ └── subscription.yaml │ │ │ ├── openshift-pipelines-operator-rh │ │ │ ├── kustomization.yaml │ │ │ └── subscription.yaml │ │ │ ├── opentelemetry-collector-operator │ │ │ ├── kustomization.yaml │ │ │ └── subscription.yaml │ │ │ ├── ovms-operator │ │ │ ├── kustomization.yaml │ │ │ └── subscription.yaml │ │ │ ├── pachyderm-operatorpachyderm-operator │ │ │ ├── kustomization.yaml │ │ │ └── subscription.yaml │ │ │ ├── prometheus-operator │ │ │ ├── kustomization.yaml │ │ │ └── subscription.yaml │ │ │ ├── pulp-operator │ │ │ ├── kustomization.yaml │ │ │ └── subscription.yaml │ │ │ ├── rapidast │ │ │ ├── kustomization.yaml │ │ │ └── subscription.yaml │ │ │ ├── serverless-operator │ │ │ ├── kustomization.yaml │ │ │ └── subscription.yaml │ │ │ ├── servicemesh-operator │ │ │ ├── kustomization.yaml │ │ │ └── subscription.yaml │ │ │ ├── snapscheduler │ │ │ ├── kustomization.yaml │ │ │ └── subscription.yaml │ │ │ ├── strimzi-global-operator │ │ │ ├── kustomization.yaml │ │ │ └── subscription.yaml │ │ │ ├── strimzi │ │ │ ├── kustomization.yaml │ │ │ └── subscription.yaml │ │ │ ├── vertical-pod-autoscaler │ │ │ ├── kustomization.yaml │ │ │ └── subscription.yaml │ │ │ └── web-terminal │ │ │ ├── kustomization.yaml │ │ │ └── subscription.yaml │ ├── policy │ │ └── podsecuritypolicies │ │ │ ├── controller │ │ │ ├── kustomization.yaml │ │ │ └── podsecuritypolicy.yaml │ │ │ └── speaker │ │ │ ├── kustomization.yaml │ │ │ └── podsecuritypolicy.yaml │ ├── rbac.authorization.k8s.io │ │ ├── clusterrolebindings │ │ │ ├── acme-operator │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── apirequest-count-reader │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── argocd-application-controller │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── argocd-manager │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── argocd-server │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── cluster-admins-rb │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── cluster-interceptor-opf-ci-pipelines │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── cluster-logs-readers │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── cluster-monitoring-view │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── cluster-reader-k8s-annotations-exporter │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── cluster-readers │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── curator-manager-rb │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── curator-oauth-proxy-rb │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── curator-operator-manager-rb │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── curator-operator-oauth-proxy-rb │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── eso-tokenreview │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── jupyterhub-cluster │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── kepler-clusterrole-binding │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── klusterletaddonconfig-editor │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── kuberay-operator │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── metallb-allow-privileged │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── metallb-system:controller │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── metallb-system:speaker │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── metrics │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── nfs-provisioner-runner │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── node-labeler │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── oauth-token-access-review-opf-monitoring │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── oauth-token-access-review-opf-observatorium │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── observatorium-operator │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── open-cluster-management:admin:osc-cl1 │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── open-cluster-management:managedclusterset:admin:drvbw │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── open-cluster-management:managedclusterset:admin:osc │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── opendatahub-operator │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── opf-cluster-metrics-federation │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── opf-monitoring-grafana-cluster-view │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── reloader-reloader-role-binding │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── scc-anyuid-observatorium │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── scc-anyuid-tufts-dcc-6 │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── scc-privileged-opf-ci-pipelines-aicoe-ci │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── scc-privileged-tufts-dcc-6 │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── scc-restricted-seccomp │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── self-provisioners │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── service-catalog-k8s-plugin-acm │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── service-catalog-k8s-plugin │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── service-catalog-prometheus-plugin │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── sre │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── sudoers │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── tekton-chains │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── tekton-chains-controller-cluster-access.yaml │ │ │ │ └── tekton-chains-controller-tenant-access.yaml │ │ │ ├── tekton-dashboard │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── tekton-dashboard-backend.yaml │ │ │ │ ├── tekton-dashboard-extensions.yaml │ │ │ │ └── tekton-dashboard-tenant.yaml │ │ │ ├── training-operator │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── vault │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── volsync-manager │ │ │ │ └── kustomization.yaml │ │ │ └── volsync-proxy │ │ │ │ └── kustomization.yaml │ │ ├── clusterroles │ │ │ ├── acme-operator │ │ │ │ ├── clusterrole.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── apirequest-count-read-cr │ │ │ │ ├── clusterrole.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── argocd-application-controller │ │ │ │ ├── clusterrole.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── argocd-events-create-aggregate-to-admin │ │ │ │ ├── clusterrole.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── argocd-proj-apps-aggregate-to-admin │ │ │ │ ├── clusterrole.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── argocd-server │ │ │ │ ├── clusterrole.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── cluster-logs-reader │ │ │ │ ├── clusterrole.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── curator-auth-proxy-role │ │ │ │ ├── clusterrole.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── curator-operator-curatorconfig-editor-role │ │ │ │ ├── clusterrole.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── curator-operator-curatorconfig-viewer-role │ │ │ │ ├── clusterrole.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── curator-operator-fetchdata-editor-role │ │ │ │ ├── clusterrole.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── curator-operator-fetchdata-viewer-role │ │ │ │ ├── clusterrole.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── curator-operator-manager-role │ │ │ │ ├── clusterrole.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── curator-operator-metrics-reader │ │ │ │ ├── clusterrole.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── curator-operator-report-api-editor-role │ │ │ │ ├── clusterrole.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── curator-operator-report-api-viewer-role │ │ │ │ ├── clusterrole.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── curator-operator-report-editor-role │ │ │ │ ├── clusterrole.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── curator-operator-report-viewer-role │ │ │ │ ├── clusterrole.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── curator-report-editor-role │ │ │ │ ├── clusterrole.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── curator-report-manager-role │ │ │ │ ├── clusterrole.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── curator-report-viewer-role │ │ │ │ ├── clusterrole.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── events-aggregate-to-edit │ │ │ │ ├── clusterrole.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── kepler-clusterrole │ │ │ │ ├── clusterrole.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── klusterletaddonconfig-editor │ │ │ │ ├── clusterrole.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── kuberay-operator │ │ │ │ ├── clusterrole.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── metallb-system:controller │ │ │ │ ├── clusterrole.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── metallb-system:speaker │ │ │ │ ├── clusterrole.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── metrics │ │ │ │ ├── clusterrole.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── monitors-create-aggregate-to-admin │ │ │ │ ├── clusterrole.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── nfs-provisioner-runner │ │ │ │ ├── clusterrole.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── node-labeler │ │ │ │ ├── clusterrole.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── oauth-token-access-review │ │ │ │ ├── clusterrole.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── observatorium-operator │ │ │ │ ├── clusterrole.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── opendatahub-operator │ │ │ │ ├── clusterrole.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── prow-aggregate-to-admin │ │ │ │ ├── clusterrole.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── prow-aggregate-to-edit │ │ │ │ ├── clusterrole.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── prow-aggregate-to-view │ │ │ │ ├── clusterrole.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── pytorchjobs-create-aggregate-to-admin │ │ │ │ ├── clusterrole.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── ray-aggregate-to-admin │ │ │ │ ├── clusterrole.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── reloader-reloader-role │ │ │ │ ├── clusterrole.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── sdap-aggregate-to-admin │ │ │ │ ├── clusterrole.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── sdap-aggregate-to-edit │ │ │ │ ├── clusterrole.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── sdap-aggregate-to-view │ │ │ │ ├── clusterrole.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── seldon-deployer │ │ │ │ ├── clusterrole.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── service-catalog-k8s-plugin-acm │ │ │ │ ├── clusterrole.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── service-catalog-k8s-plugin │ │ │ │ ├── clusterrole.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── strimzi-aggregate-to-admin │ │ │ │ ├── clusterrole.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── tekton-chains │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── tekton-chains-controller-cluster-access.yaml │ │ │ │ └── tekton-chains-controller-tenant-access.yaml │ │ │ ├── tekton-dashboard │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── tekton-dashboard-backend.yaml │ │ │ │ ├── tekton-dashboard-dashboard.yaml │ │ │ │ ├── tekton-dashboard-extensions.yaml │ │ │ │ ├── tekton-dashboard-pipelines.yaml │ │ │ │ ├── tekton-dashboard-tenant.yaml │ │ │ │ └── tekton-dashboard-triggers.yaml │ │ │ ├── training-operator │ │ │ │ ├── clusterrole.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── volsync-aggregate-to-edit │ │ │ │ └── kustomization.yaml │ │ │ ├── volsync-aggregate-to-view │ │ │ │ └── kustomization.yaml │ │ │ ├── volsync-manager │ │ │ │ └── kustomization.yaml │ │ │ ├── volsync-metrics-reader │ │ │ │ └── kustomization.yaml │ │ │ └── volsync-proxy │ │ │ │ └── kustomization.yaml │ │ ├── rolebindings │ │ │ └── kvm-device-plugin │ │ │ │ ├── kustomization.yaml │ │ │ │ └── rolebinding.yaml │ │ └── roles │ │ │ └── kvm-device-plugin │ │ │ ├── kustomization.yaml │ │ │ └── role.yaml │ ├── security.openshift.io │ │ └── securitycontextconstraints │ │ │ ├── apicurio-debug-scc │ │ │ ├── kustomization.yaml │ │ │ └── securitycontextconstraint.yaml │ │ │ ├── kepler-scc │ │ │ ├── kustomization.yaml │ │ │ └── securitycontextconstraints.yaml │ │ │ ├── nfs-server-and-provisioner │ │ │ ├── kustomization.yaml │ │ │ └── securitycontextconstraints.yaml │ │ │ ├── restricted-seccomp │ │ │ ├── README.md │ │ │ ├── kustomization.yaml │ │ │ └── securitycontextconstraint.yaml │ │ │ ├── uky-hpc-workload-generator-hostpath │ │ │ ├── kustomization.yaml │ │ │ └── securitycontextconstraints.yaml │ │ │ └── volsync-mover │ │ │ └── kustomization.yaml │ ├── storage.k8s.io │ │ └── storageclasses │ │ │ ├── hostpath-provisioner │ │ │ ├── kustomization.yaml │ │ │ └── storageclass.yaml │ │ │ ├── nfs-provisioner │ │ │ ├── kustomization.yaml │ │ │ └── storageclass.yaml │ │ │ ├── ocs-external-storagecluster-ceph-rbd │ │ │ ├── kustomization.yaml │ │ │ └── storageclass.yaml │ │ │ └── ocs-storagecluster-cephfs │ │ │ ├── kustomization.yaml │ │ │ └── storageclass.yaml │ └── user.openshift.io │ │ └── groups │ │ ├── adoptium │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── ai-services │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── ai4cloudops │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── aicos-osc-admins │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── aiops-tools-workshop-admins │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── apex │ │ └── kustomization.yaml │ │ ├── apicurio │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── argocd-admins │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── boatroackers │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── boston-university-redhat │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── bu-cs-book-dev │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── ccx │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── chi-rhug │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── cluster-admins │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── cluster-as-a-service │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── cluster-readers │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── cnv-testing │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── codait-advo │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── copilot-ops │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── curator │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── data-science │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── debezium │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── demo-team │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── demolab_team │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── drvbw │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── eldritch-team13 │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── emea-sa │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── enterprise-neurosystem │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── esi-project │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── fde │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── fedora │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── gingersnap │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── grafana-admin │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── grafana-editor │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── grafana-viewer │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── highlander │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── inception-admins │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── janus-idp │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── jetsons │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── kafka-admins │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── kaoto │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── kepler-admins │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── klusterletaddonconfig-editors │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── kogito │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── kruize │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── kubeflow-admin │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── lab-cicd │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── logs-insights │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── lotus │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── manageiq │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── multinode-demo │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── mwperf │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── neu-students │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── ocp-pipelines-sre │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── odh-admin │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── odh-users │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── okd-team │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── okd-wg │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── open-aiops │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── openshift-operators-admin │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── openshift-operators-view │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── operate-first │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── opf-alerting │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── osc-admins │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── osc │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── pachyderm-admins │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── peribolos-as-a-service │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── physrisk │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── prometheus-ai │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── psse-research │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── pulp │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── quarkus │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── ray-bu │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── ray │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── redhat-cto-team │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── redhat-impact │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── rekor │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── rh-curator-eval │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── rh-dus │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── sa-dach │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── scsaol │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── sdap-mslsp │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── seldon-admin │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── sigstore-aas │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── sigstore │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── sostrades │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── sre │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── sudoers │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── superset-admins │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── superset-user │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── team-pixel │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── thoth-devops │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── thoth │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── tremor-demo │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── uky-redhat │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ ├── varangian │ │ ├── group.yaml │ │ └── kustomization.yaml │ │ └── wildfly │ │ ├── group.yaml │ │ └── kustomization.yaml ├── bundles │ ├── acme-operator │ │ └── kustomization.yaml │ ├── banzaicloud-vault │ │ └── kustomization.yaml │ ├── cert-manager │ │ └── kustomization.yaml │ ├── curator │ │ └── kustomization.yaml │ ├── external-secrets-operator │ │ └── kustomization.yaml │ ├── grafana-operator │ │ └── kustomization.yaml │ ├── idp-mgmt-operator │ │ └── kustomization.yaml │ ├── jaeger-operator │ │ └── kustomization.yaml │ ├── kepler │ │ └── kustomization.yaml │ ├── kfp-tekton │ │ └── kustomization.yaml │ ├── klusterletaddonconfig-editor │ │ └── kustomization.yaml │ ├── kvm-device-plugin │ │ └── kustomization.yaml │ ├── meteor-operator │ │ └── kustomization.yaml │ ├── nfd │ │ └── kustomization.yaml │ ├── odf-external │ │ └── kustomization.yaml │ ├── odf │ │ └── kustomization.yaml │ ├── opendatahub-operator-manual │ │ └── kustomization.yaml │ ├── openshift-pipelines │ │ └── kustomization.yaml │ ├── opentelemetry-collector-operator │ │ └── kustomization.yaml │ ├── opf-grafana-public │ │ └── kustomization.yaml │ ├── opf-monitoring │ │ ├── grafana-serviceaccount.yaml │ │ └── kustomization.yaml │ ├── opf-vault │ │ └── kustomization.yaml │ ├── pachyderm-operator │ │ └── kustomization.yaml │ ├── ray-operator │ │ └── kustomization.yaml │ ├── reloader │ │ └── kustomization.yaml │ ├── service-catalog-k8s-plugin │ │ └── kustomization.yaml │ ├── tekton-chains │ │ └── kustomization.yaml │ └── training-operator │ │ └── kustomization.yaml ├── components │ ├── limitranges │ │ └── default │ │ │ ├── kustomization.yaml │ │ │ └── limitrange.yaml │ ├── monitoring-rbac │ │ ├── kustomization.yaml │ │ ├── monitoring-role.yaml │ │ └── monitoring-rolebinding.yaml │ ├── odh-dashboard │ │ ├── kustomization.yaml │ │ ├── odh-dashboard-role.yaml │ │ └── odh-dashboard-rolebinding.yaml │ ├── project-admin-public-authenticated │ │ ├── kustomization.yaml │ │ └── rbac.yaml │ ├── project-admin-public │ │ ├── kustomization.yaml │ │ └── rbac.yaml │ ├── project-admin-rolebindings │ │ ├── adoptium │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── ai-services │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── ai4cloudops │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── aicos-osc-demo │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── aiops-tools-workshop-admins │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── apex │ │ │ └── kustomization.yaml │ │ ├── apicurio │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── boatroackers │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── boston-university-redhat │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── bu-cs-book-dev │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── ccx │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── chi-rhug │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── cluster-as-a-service │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── cnv-testing │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── codait-advo │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── copilot-ops │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── curator │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── data-science │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── debezium │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── demo-team │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── demolab_team │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── eldritch-team13 │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── emea-sa │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── enterprise-neurosystem │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── esi-project │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── fde │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── fedora │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── gingersnap │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── highlander │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── inception-admins │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── janus-idp │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── jetsons │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── kafka-admins │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── kaoto │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── kepler-admins │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── kogito │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── kruize │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── kubeflow-admin │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── lab-cicd │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── lotus │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── manageiq │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── multinode-demo │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── mwperf │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── neu-students │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── odh-admin │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── okd-team │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── okd-wg │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── open-aiops │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── openmetadata-admins │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── openshift-operators-admin │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── operate-first │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── opf-alerting │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── osc-pachyderm-admins │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── osc │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── peribolos-as-a-service │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── physrisk │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── prometheus-ai │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── psse-research │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── pulp │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── quarkus │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── ray-bu │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── ray │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── rbo │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── redhat-cto-team │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── redhat-impact │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── rh-curator-eval │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── rh-dus │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── sa-dach │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── scsaol │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── sdap-mslsp │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── seldon-admin │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── service-catalog │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── sigstore-aas │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── sigstore │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── sostrades │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── team-pixel │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── thoth-devops │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── thoth │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── tremor-demo │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── uky-redhat │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── varangian │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ └── wildfly │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ ├── project-edit-rolebindings │ │ └── ocp-pipelines-sre │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ ├── project-logs-reader │ │ ├── kustomization.yaml │ │ ├── role.yaml │ │ └── rolebinding.yaml │ ├── project-view-public │ │ ├── kustomization.yaml │ │ └── rbac.yaml │ ├── project-view-rolebindings │ │ ├── aiops-tools-workshop-view │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── data-science │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ ├── neu-students │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ └── openshift-operators-view │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ └── resourcequotas │ │ ├── large │ │ ├── kustomization.yaml │ │ └── resourcequotas.yaml │ │ ├── medium │ │ ├── kustomization.yaml │ │ └── resourcequotas.yaml │ │ ├── small │ │ ├── kustomization.yaml │ │ └── resourcequotas.yaml │ │ └── x-small │ │ ├── kustomization.yaml │ │ └── resourcequotas.yaml └── overlays │ └── prod │ ├── common │ └── kustomization.yaml │ ├── emea │ ├── common │ │ └── kustomization.yaml │ ├── demo │ │ ├── groups │ │ │ └── cluster-admins.yaml │ │ └── kustomization.yaml │ └── jerry │ │ ├── apiserver │ │ ├── api_server_cert.yaml │ │ └── kustomization.yaml │ │ ├── configmaps │ │ └── service-catalog-k8s-plugin.yaml │ │ ├── groups │ │ └── cluster-admins.yaml │ │ ├── imageregistry.operator.openshift.io │ │ └── configs │ │ │ └── cluster │ │ │ ├── config.yaml │ │ │ └── kustomization.yaml │ │ ├── ingresscontrollers │ │ ├── default.yaml │ │ └── kustomization.yaml │ │ ├── kustomization.yaml │ │ ├── persistentvolumeclaims │ │ └── image-registry-storage │ │ │ ├── kustomization.yaml │ │ │ └── persistentvolumeclaim.yaml │ │ └── secret-mgmt │ │ ├── base │ │ ├── kustomization.yaml │ │ ├── opf-vault-store.yaml │ │ └── vault-secret-fetcher.yaml │ │ ├── kustomization.yaml │ │ ├── openshift-config │ │ └── kustomization.yaml │ │ └── openshift-ingress │ │ └── kustomization.yaml │ ├── moc │ ├── README.md │ ├── common │ │ └── kustomization.yaml │ ├── curator │ │ ├── apiserver │ │ │ ├── api_server_cert.yaml │ │ │ └── kustomization.yaml │ │ ├── configmaps │ │ │ ├── admin-acks.yaml │ │ │ └── service-catalog-k8s-plugin.yaml │ │ ├── externalsecrets │ │ │ ├── kustomization.yaml │ │ │ └── pull-secret.yaml │ │ ├── groups │ │ │ └── cluster-admins.yaml │ │ ├── imageregistryconfigs │ │ │ └── image-registry-storage_patch.yaml │ │ ├── ingresscontrollers │ │ │ ├── default.yaml │ │ │ └── kustomization.yaml │ │ ├── kustomization.yaml │ │ ├── machineconfigs │ │ │ └── 50-ipmi-route.yaml │ │ ├── secret-mgmt │ │ │ ├── base │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── opf-vault-store.yaml │ │ │ │ └── vault-secret-fetcher.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── openshift-config │ │ │ │ └── kustomization.yaml │ │ │ ├── openshift-ingress │ │ │ │ └── kustomization.yaml │ │ │ └── openshift-monitoring │ │ │ │ └── kustomization.yaml │ │ ├── storageclasses │ │ │ └── hostpath-provisioner_patch.yaml │ │ └── subscriptions │ │ │ ├── kubevirt-hyperconverged_patch.yaml │ │ │ ├── ocs-operator_patch.yaml │ │ │ └── web-terminal.yaml │ ├── infra │ │ ├── .sops.yaml │ │ ├── apiserver │ │ │ └── api_server_cert.yaml │ │ ├── clusterrolebindings │ │ │ ├── klusteraddonconfig-editor.yaml │ │ │ └── self-provisioners_patch.yaml │ │ ├── clusterversion.yaml │ │ ├── configmaps │ │ │ ├── cluster-monitoring-config.enc.yaml │ │ │ ├── observability-metrics-custom-allowlist.yaml │ │ │ ├── service-catalog-k8s-plugin.yaml │ │ │ ├── thanos-ruler-custom-rules.yaml │ │ │ └── user-workload-monitoring-config.enc.yaml │ │ ├── consoles │ │ │ └── cluster_patch.yaml │ │ ├── externalsecrets │ │ │ ├── github-client-secret.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── multiclusterhub-operator-pull-secret.yaml │ │ │ ├── pull-secret.yaml │ │ │ ├── rook-ceph-external-cluster-details.yaml │ │ │ └── thanos-object-storage.yaml │ │ ├── groups │ │ │ └── cluster-admins.yaml │ │ ├── kubeletconfigs │ │ │ └── increase-worker-system-reserved-memory.yaml │ │ ├── kustomization.yaml │ │ ├── metal3.io │ │ │ └── provisionings │ │ │ │ └── provisioning-configuration.yaml │ │ ├── multiclusterobservability │ │ │ └── observability.yaml │ │ ├── nodenetworkconfigurationpolicies │ │ │ ├── crc-provisioning-vlan.yaml │ │ │ ├── ocp-prod-provisioning-vlan.yaml │ │ │ ├── vlan-211-nese.yaml │ │ │ └── zero-provisioning-vlan.yaml │ │ ├── nodes │ │ │ ├── os-ctrl-0.moc-infra.massopen.cloud.yaml │ │ │ ├── os-ctrl-1.moc-infra.massopen.cloud.yaml │ │ │ └── os-ctrl-2.moc-infra.massopen.cloud.yaml │ │ ├── oauth │ │ │ ├── kustomization.yaml │ │ │ └── oauth.yaml │ │ ├── objectbucketclaims │ │ │ └── thanos.yaml │ │ ├── secret-generator.yaml │ │ ├── secret-mgmt │ │ │ ├── acm │ │ │ │ └── kustomization.yaml │ │ │ ├── argocd │ │ │ │ └── kustomization.yaml │ │ │ ├── base │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── opf-vault-store.yaml │ │ │ │ └── vault-secret-fetcher.yaml │ │ │ ├── idp-auth-primary │ │ │ │ └── kustomization.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── open-cluster-management-observability │ │ │ │ └── kustomization.yaml │ │ │ ├── openshift-config │ │ │ │ └── kustomization.yaml │ │ │ ├── openshift-ingress │ │ │ │ └── kustomization.yaml │ │ │ ├── openshift-logging │ │ │ │ └── kustomization.yaml │ │ │ ├── openshift-monitoring │ │ │ │ └── kustomization.yaml │ │ │ ├── openshift-storage │ │ │ │ └── kustomization.yaml │ │ │ └── opf-alertreceiver │ │ │ │ └── kustomization.yaml │ │ ├── secrets │ │ │ ├── files │ │ │ │ └── alertmanager.yaml │ │ │ └── kustomization.yaml │ │ ├── storageclasses │ │ │ └── ocs-external-storagecluster-ceph-rbd.yaml │ │ └── subscriptions │ │ │ ├── cluster-logging-operator_patch.yaml │ │ │ ├── kubernetes-nmstate-operator_patch.yaml │ │ │ ├── odf-operator_patch.yaml │ │ │ └── web-terminal_patch.yaml │ └── smaug │ │ ├── .sops.yaml │ │ ├── apiserver │ │ └── api_server_cert.yaml │ │ ├── backingstores │ │ ├── noobaa-default-backing-store_patch.yaml │ │ └── noobaa-pool-01.yaml │ │ ├── bucketclasses │ │ ├── noobaa-default-bucket-class.yaml │ │ └── noobaa-pool-01-bucket-class.yaml │ │ ├── clusterversion.yaml │ │ ├── configmaps │ │ ├── cluster-monitoring-config.enc.yaml │ │ ├── files │ │ │ └── alertmanager.yaml │ │ ├── kustomization.yaml │ │ ├── secret-generator.yaml │ │ ├── service-catalog-k8s-plugin.yaml │ │ └── user-workload-monitoring-config.enc.yaml │ │ ├── externalsecrets │ │ ├── alert-manager.yaml │ │ ├── kustomization.yaml │ │ ├── pull-secret.yaml │ │ ├── rook-ceph-external-cluster-details.yaml │ │ ├── service-catalog-k8s-plugin-tokens.yaml │ │ └── service-catalog.yaml │ │ ├── groups │ │ ├── cluster-admins.yaml │ │ ├── kustomization.yaml │ │ ├── vault-admins.yaml │ │ ├── vault-emea-admins.yaml │ │ ├── vault-moc-admins.yaml │ │ └── vault-osc-admins.yaml │ │ ├── imageregistry.operator.openshift.io │ │ └── configs │ │ │ └── cluster │ │ │ └── config_patch.yaml │ │ ├── ingresscontrollers │ │ └── default.yaml │ │ ├── kustomization.yaml │ │ ├── nodenetworkconfigurationpolicies │ │ ├── vlan-210-nfs.yaml │ │ └── vlan-211-nese.yaml │ │ ├── nodes │ │ ├── oct-03-00-compute.yaml │ │ ├── oct-03-01-compute.yaml │ │ └── oct-03-03-compute.yaml │ │ ├── persistentvolumeclaims │ │ └── image-registry-storage │ │ │ └── persistentvolumeclaim_patch.yaml │ │ ├── secret-mgmt │ │ ├── aiops-tools-workshop │ │ │ └── kustomization.yaml │ │ ├── api-designer │ │ │ ├── kustomization.yaml │ │ │ └── opf-vault-store.yaml │ │ ├── apicurio-apicurio-registry │ │ │ ├── kustomization.yaml │ │ │ └── opf-vault-store.yaml │ │ ├── base │ │ │ ├── kustomization.yaml │ │ │ ├── opf-vault-store.yaml │ │ │ └── vault-secret-fetcher.yaml │ │ ├── copilot-ops │ │ │ ├── kustomization.yaml │ │ │ └── opf-vault-store.yaml │ │ ├── dex │ │ │ └── kustomization.yaml │ │ ├── janus-idp │ │ │ ├── kustomization.yaml │ │ │ └── opf-vault-store.yaml │ │ ├── kubeflow │ │ │ └── kustomization.yaml │ │ ├── kustomization.yaml │ │ ├── okd-centos │ │ │ ├── kustomization.yaml │ │ │ └── opf-vault-store.yaml │ │ ├── okd-team │ │ │ ├── kustomization.yaml │ │ │ └── opf-vault-store.yaml │ │ ├── openshift-config │ │ │ └── kustomization.yaml │ │ ├── openshift-ingress │ │ │ └── kustomization.yaml │ │ ├── openshift-logging │ │ │ └── kustomization.yaml │ │ ├── openshift-monitoring │ │ │ └── kustomization.yaml │ │ ├── openshift-storage │ │ │ └── kustomization.yaml │ │ ├── opf-alertreceiver │ │ │ └── kustomization.yaml │ │ ├── opf-ci-prow │ │ │ └── kustomization.yaml │ │ ├── opf-grafana-public │ │ │ └── kustomization.yaml │ │ ├── opf-jupyterhub │ │ │ └── kustomization.yaml │ │ ├── opf-monitoring │ │ │ └── kustomization.yaml │ │ ├── opf-observatorium │ │ │ └── kustomization.yaml │ │ ├── opf-slack-first │ │ │ └── kustomization.yaml │ │ ├── opf-superset │ │ │ └── kustomization.yaml │ │ ├── opf-triage-party │ │ │ └── kustomization.yaml │ │ ├── opf-trino-stage │ │ │ └── kustomization.yaml │ │ ├── opf-trino │ │ │ └── kustomization.yaml │ │ ├── robozome │ │ │ └── kustomization.yaml │ │ ├── service-catalog-k8s-plugin │ │ │ └── kustomization.yaml │ │ └── service-catalog │ │ │ └── kustomization.yaml │ │ ├── snapshotschedules │ │ └── schedule.yaml │ │ ├── storageclasses │ │ └── ocs-external-storagecluster-ceph-rbd.yaml │ │ └── subscriptions │ │ ├── cluster-logging-operator_patch.yaml │ │ ├── kubevirt-hyperconverged_patch.yaml │ │ ├── nfd_patch.yaml │ │ ├── vpa_patch.yaml │ │ └── web-terminal_patch.yaml │ └── osc │ ├── OWNERS │ ├── osc-cl1 │ ├── apiserver │ │ ├── apiserver.yaml │ │ └── kustomization.yaml │ ├── clusterrolebindings │ │ └── cluster-readers.yaml │ ├── configmaps │ │ ├── cluster-monitoring-config.yaml │ │ ├── service-catalog-k8s-plugin.yaml │ │ └── user-workload-monitoring-config.yaml │ ├── externalsecrets │ │ ├── api-certs.yaml │ │ ├── kustomization.yaml │ │ └── router-certs.yaml │ ├── groups │ │ ├── cluster-admins.yaml │ │ ├── cluster-readers.yaml │ │ ├── grafana-admin.yaml │ │ ├── grafana-editor.yaml │ │ ├── grafana-viewer.yaml │ │ ├── inception-admins.yaml │ │ ├── kepler-admins.yaml │ │ ├── kubeflow-admin.yaml │ │ ├── odh-admin.yaml │ │ ├── odh-users.yaml │ │ ├── openmetadata-admins.yaml │ │ ├── pachyderm-admins.yaml │ │ └── seldon-admin.yaml │ ├── ingresscontroller │ │ ├── ingresscontroller.yaml │ │ └── kustomization.yaml │ ├── kustomization.yaml │ ├── machineconfigs │ │ └── kepler │ │ │ ├── 55-worker-kernel-devel-cgroupv2.yaml │ │ │ └── kustomization.yaml │ ├── machinesets │ │ ├── kustomization.yaml │ │ ├── machineset-compute-notebook.yaml │ │ ├── machineset-notebook-gpu-g.yaml │ │ └── machineset-worker.yaml │ ├── nodefeaturediscovery │ │ ├── kustomization.yaml │ │ └── nfd-instance.yaml │ ├── nvidia-gpu │ │ ├── gpu-cluster-policy.yaml │ │ └── kustomization.yaml │ └── secret-mgmt │ │ ├── base │ │ ├── kustomization.yaml │ │ ├── opf-vault-store.yaml │ │ └── vault-secret-fetcher.yaml │ │ ├── dex-secondary │ │ └── kustomization.yaml │ │ ├── dex │ │ └── kustomization.yaml │ │ ├── kafka │ │ └── kustomization.yaml │ │ ├── kepler-monitoring │ │ └── kustomization.yaml │ │ ├── kustomization.yaml │ │ ├── odh-superset │ │ └── kustomization.yaml │ │ ├── odh-trino-dev │ │ └── kustomization.yaml │ │ ├── odh-trino │ │ └── kustomization.yaml │ │ ├── openmetadata │ │ └── kustomization.yaml │ │ ├── openshift-config │ │ └── kustomization.yaml │ │ ├── openshift-ingress │ │ └── kustomization.yaml │ │ ├── openshift-monitoring │ │ └── kustomization.yaml │ │ └── opf-monitoring │ │ └── kustomization.yaml │ └── osc-cl2 │ ├── apiserver │ ├── apiserver.yaml │ └── kustomization.yaml │ ├── clusterrolebindings │ └── cluster-readers.yaml │ ├── configmaps │ ├── cluster-monitoring-config.yaml │ ├── service-catalog-k8s-plugin.yaml │ └── user-workload-monitoring-config.yaml │ ├── externalsecrets │ ├── api-certs.yaml │ ├── kustomization.yaml │ └── router-certs.yaml │ ├── groups │ ├── cluster-admins.yaml │ ├── cluster-readers.yaml │ ├── grafana-admin.yaml │ ├── grafana-editor.yaml │ ├── grafana-viewer.yaml │ ├── inception-admins.yaml │ ├── kafka-admins.yaml │ ├── kepler-admins.yaml │ ├── kubeflow-admin.yaml │ ├── odh-admin.yaml │ ├── odh-users.yaml │ ├── openmetadata-admins.yaml │ ├── openshift-operators-admin.yaml │ ├── openshift-operators-view.yaml │ ├── pachyderm-admins.yaml │ └── seldon-admin.yaml │ ├── ingresscontroller │ ├── ingresscontroller.yaml │ └── kustomization.yaml │ ├── kustomization.yaml │ ├── machineconfiguration.openshift.io │ ├── containerruntimeconfigs │ │ └── trino │ │ │ ├── 60-set-container-pid-limit.yaml │ │ │ └── kustomization.yaml │ ├── machineconfigpools │ │ ├── kustomization.yaml │ │ └── osc-platform.yaml │ └── machineconfigs │ │ ├── kepler │ │ ├── 55-worker-kernel-devel-cgroupv2.yaml │ │ └── kustomization.yaml │ │ └── trino │ │ ├── 60-worker-kubeconfig-pid-limit.yaml │ │ └── kustomization.yaml │ ├── machinesets │ ├── kustomization.yaml │ ├── machineset-compute-notebook.yaml │ ├── machineset-notebook-gpu-g.yaml │ ├── machineset-notebook-gpu-p.yaml │ └── machineset-worker.yaml │ ├── nodefeaturediscovery │ ├── kustomization.yaml │ └── nfd-instance.yaml │ ├── nvidia-gpu │ ├── gpu-cluster-policy.yaml │ └── kustomization.yaml │ ├── oauths │ └── cluster-patch.yaml │ ├── operators.coreos.com │ ├── operatorgroups │ │ └── nvidia-gpu-operator │ │ │ ├── kustomization.yaml │ │ │ └── operatorgroup.yaml │ ├── patches │ │ └── nfd-sub-patch.yaml │ └── subscriptions │ │ └── nvidia-gpu-operator │ │ ├── kustomization.yaml │ │ └── subscription.yaml │ └── secret-mgmt │ ├── base │ ├── kustomization.yaml │ ├── opf-vault-store.yaml │ └── vault-secret-fetcher.yaml │ ├── dex-secondary │ └── kustomization.yaml │ ├── dex │ └── kustomization.yaml │ ├── kafka │ └── kustomization.yaml │ ├── kepler-monitoring │ └── kustomization.yaml │ ├── kubeflow │ └── kustomization.yaml │ ├── kustomization.yaml │ ├── odh-superset │ └── kustomization.yaml │ ├── odh-trino │ └── kustomization.yaml │ ├── openmetadata │ └── kustomization.yaml │ ├── openshift-config │ └── kustomization.yaml │ ├── openshift-ingress │ └── kustomization.yaml │ ├── openshift-monitoring │ └── kustomization.yaml │ ├── opf-monitoring │ └── kustomization.yaml │ └── pachyderm │ └── kustomization.yaml ├── contributing.md ├── curator-operator-system ├── base │ ├── kustomization.yaml │ ├── rbac.authorization.k8s.io │ │ ├── kustomization.yaml │ │ ├── rolebindings │ │ │ └── rolebinding.yaml │ │ └── roles │ │ │ └── role.yaml │ └── serviceaccounts │ │ ├── kustomization.yaml │ │ └── serviceaccount.yaml └── overlays │ └── moc │ └── smaug │ └── kustomization.yaml ├── das ├── base │ ├── configmap.yaml │ ├── deployment.yaml │ ├── kustomization.yaml │ ├── route.yaml │ └── service.yaml └── overlays │ ├── osc-cl1 │ ├── configmap.yaml │ ├── externalsecret.yaml │ └── kustomization.yaml │ └── osc-cl2 │ ├── configmap.yaml │ ├── externalsecret.yaml │ └── kustomization.yaml ├── dex ├── README.md ├── base │ ├── configmaps │ │ ├── files │ │ │ └── config.yaml │ │ └── kustomization.yaml │ ├── deployments │ │ ├── dex-deployment.yaml │ │ └── kustomization.yaml │ ├── externalsecrets │ │ ├── dex-clients.yaml │ │ └── kustomization.yaml │ ├── kustomization.yaml │ ├── routes │ │ ├── dex-route.yaml │ │ └── kustomization.yaml │ ├── secrets │ │ ├── dex-sa-token.yaml │ │ └── kustomization.yaml │ ├── serviceaccounts │ │ ├── dex-sa.yaml │ │ └── kustomization.yaml │ └── services │ │ ├── dex-service.yaml │ │ └── kustomization.yaml └── overlays │ ├── moc │ └── smaug │ │ ├── configmaps │ │ ├── files │ │ │ └── config.yaml │ │ └── kustomization.yaml │ │ ├── externalsecrets │ │ └── dex-clients_patch.yaml │ │ └── kustomization.yaml │ └── osc │ ├── .sops.yaml │ ├── OWNERS │ ├── osc-cl1-secondary │ ├── configmaps │ │ ├── files │ │ │ └── config.yaml │ │ └── kustomization.yaml │ ├── externalsecrets │ │ └── dex-clients_patch.yaml │ └── kustomization.yaml │ ├── osc-cl1 │ ├── configmaps │ │ ├── files │ │ │ └── config.yaml │ │ └── kustomization.yaml │ ├── externalsecrets │ │ └── dex-clients_patch.yaml │ └── kustomization.yaml │ ├── osc-cl2-secondary │ ├── configmaps │ │ ├── files │ │ │ └── config.yaml │ │ └── kustomization.yaml │ ├── externalsecrets │ │ └── dex-clients_patch.yaml │ └── kustomization.yaml │ └── osc-cl2 │ ├── configmaps │ ├── files │ │ └── config.yaml │ └── kustomization.yaml │ ├── externalsecrets │ └── dex-clients_patch.yaml │ └── kustomization.yaml ├── dns ├── OWNERS ├── README.md ├── emea-operate-first.zone ├── na-operate-first.zone ├── operate-first.zone ├── operatefirst.zone └── zones.txt ├── docs ├── CONTRIBUTING.md ├── _config.yml ├── _toc.yml ├── content │ ├── README.md │ ├── acm │ │ ├── docs │ │ │ ├── README.md │ │ │ ├── adding_managed_cluster_to_argocd.md │ │ │ ├── adding_managed_cluster_to_identitatem.md │ │ │ └── manage_your_teams_ocp_clusters_via_acm.md │ │ └── mkdocs.yaml │ ├── acme │ │ ├── docs │ │ │ ├── README.md │ │ │ └── issuing_certificates.md │ │ └── mkdocs.yaml │ ├── argocd-gitops │ │ ├── docs │ │ │ ├── README.md │ │ │ ├── add_application.md │ │ │ ├── add_permissions_to_project.md │ │ │ ├── argocd_notifications.md │ │ │ ├── get_access_to_argocd.md │ │ │ ├── onboarding_to_argocd.md │ │ │ ├── secret_management.md │ │ │ ├── setup_argocd_dev_environment.md │ │ │ └── update_argocd.md │ │ ├── key.asc │ │ └── mkdocs.yaml │ ├── cluster-scope │ │ ├── docs │ │ │ ├── README.md │ │ │ ├── add_user_to_group.md │ │ │ ├── add_user_to_project_admin.md │ │ │ ├── create_ocp_group.md │ │ │ ├── offboarding_cluster.md │ │ │ ├── onboarding_project.md │ │ │ └── quotas.md │ │ └── mkdocs.yaml │ ├── development │ │ ├── assets │ │ │ ├── bundle_select.png │ │ │ ├── cluster_information.png │ │ │ ├── cluster_log_1.png │ │ │ ├── cluster_log_2.png │ │ │ └── template_select.png │ │ ├── docs │ │ │ ├── README.md │ │ │ ├── crc-disk-size.md │ │ │ └── setup_quicklab.md │ │ └── mkdocs.yaml │ ├── grafana │ │ ├── docs │ │ │ ├── README.md │ │ │ ├── add_grafana_dashboard.md │ │ │ ├── img │ │ │ │ └── share-icon.png │ │ │ └── map_groups_to_roles.md │ │ └── mkdocs.yaml │ ├── jaeger │ │ ├── docs │ │ │ ├── README.md │ │ │ └── using-distributed-tracing-jaeger.md │ │ └── mkdocs.yaml │ ├── kafka │ │ ├── docs │ │ │ ├── README.md │ │ │ ├── add_kafka_topics.md │ │ │ ├── add_kafka_users.md │ │ │ └── runbook.md │ │ └── mkdocs.yaml │ ├── kubeval │ │ ├── docs │ │ │ ├── README.md │ │ │ └── updating_schema_store.md │ │ └── mkdocs.yaml │ ├── notebooks │ │ ├── README.md │ │ ├── img │ │ │ ├── jh-gitopsbook-cellblock-play-output.png │ │ │ ├── jh-gitopsbook-cellblock-play.png │ │ │ ├── jh-gitopsbook-cellblock.png │ │ │ ├── jh-gitopsbook-path.png │ │ │ ├── jh-spawner-gitopsbook-containersize.png │ │ │ └── jh-spawner-gitopsbook.png │ │ ├── increase_pvc_size.ipynb │ │ ├── onboarding_new_cluster.ipynb │ │ └── onboarding_project.ipynb │ ├── observatorium │ │ ├── docs │ │ │ ├── README.md │ │ │ ├── loki │ │ │ │ ├── README.md │ │ │ │ ├── add_loki_grafana_datasource.md │ │ │ │ ├── loki_grafana.png │ │ │ │ └── loki_query_api.md │ │ │ ├── thanos │ │ │ │ ├── README.md │ │ │ │ ├── request_grafana_access.md │ │ │ │ ├── request_thanos_access.md │ │ │ │ └── thanos_programmatic_access.md │ │ │ └── vector │ │ │ │ └── README.md │ │ └── mkdocs.yaml │ ├── odf │ │ ├── docs │ │ │ ├── README.md │ │ │ ├── buckets-external-access.md │ │ │ ├── claiming_object_store.md │ │ │ └── runbook.md │ │ └── mkdocs.yaml │ ├── odh │ │ ├── docs │ │ │ ├── README.md │ │ │ ├── adding_kfdefs.md │ │ │ ├── jupyterhub │ │ │ │ ├── README.md │ │ │ │ ├── access_jupyterhub.md │ │ │ │ ├── add_imagestream_to_jh.md │ │ │ │ ├── analyze_storage.md │ │ │ │ ├── increase_pvc_size_jh.md │ │ │ │ ├── reinstall_kernel.md │ │ │ │ ├── runbook.md │ │ │ │ └── user_profiles.md │ │ │ ├── seldon │ │ │ │ └── README.md │ │ │ ├── superset │ │ │ │ ├── README.md │ │ │ │ ├── add_superset_users.md │ │ │ │ ├── add_trino_db.md │ │ │ │ ├── img │ │ │ │ │ └── nouser.png │ │ │ │ ├── map_groups_to_roles.md │ │ │ │ └── runbook.md │ │ │ └── trino │ │ │ │ ├── README.md │ │ │ │ ├── access_public_bucket.md │ │ │ │ ├── add_more_buckets.md │ │ │ │ ├── add_more_postgress_catalogs.md │ │ │ │ ├── assets │ │ │ │ └── images │ │ │ │ │ ├── cloudbeaver-db-view.png │ │ │ │ │ ├── cloudbeaver-main-tab.png │ │ │ │ │ ├── cloudbeaver-table-view.png │ │ │ │ │ ├── odh-dashboard.png │ │ │ │ │ ├── superset-add-chart.png │ │ │ │ │ ├── superset-add-dataset.png │ │ │ │ │ ├── superset-barchart.png │ │ │ │ │ ├── superset-dashboard-properties.png │ │ │ │ │ ├── superset-dashboard.png │ │ │ │ │ ├── superset-data-tab.png │ │ │ │ │ ├── superset-export-dashboard.png │ │ │ │ │ ├── superset-save-chart.png │ │ │ │ │ ├── superset-save-dashboard.png │ │ │ │ │ ├── superset-select-chart.png │ │ │ │ │ ├── superset-visualizations.png │ │ │ │ │ ├── trino-landing-page.png │ │ │ │ │ └── trino-query-page.png │ │ │ │ └── trino_superset_user_guide.md │ │ └── mkdocs.yaml │ ├── openmetadata │ │ ├── docs │ │ │ ├── README.md │ │ │ ├── deployment.md │ │ │ └── updating_om.md │ │ └── mkdocs.yaml │ ├── opentelemetry-collector │ │ ├── docs │ │ │ ├── README.md │ │ │ └── using-opentelemetry-collector.md │ │ └── mkdocs.yaml │ ├── prometheus │ │ ├── docs │ │ │ └── README.md │ │ └── mkdocs.yaml │ ├── reloader │ │ ├── docs │ │ │ ├── README.md │ │ │ └── monitoring-secrets-configmaps.md │ │ └── mkdocs.yaml │ ├── templates │ │ ├── README.md │ │ └── runbook.md │ ├── uwm │ │ ├── docs │ │ │ ├── README.md │ │ │ └── overview.md │ │ └── mkdocs.yaml │ ├── vault_eso │ │ ├── docs │ │ │ ├── README.md │ │ │ ├── create_external_secret.md │ │ │ ├── enable_cluster_to_eso_and_vault.md │ │ │ ├── enable_es_in_namespace.md │ │ │ ├── install_es_operator_in_cluster.md │ │ │ ├── onboard_team_to_vault.md │ │ │ ├── restore_vault.md │ │ │ ├── runbook.md │ │ │ ├── unsealing_vault.md │ │ │ ├── vault_backup_job.md │ │ │ └── write_to_vault_with_k8s.md │ │ └── mkdocs.yaml │ └── volsync │ │ └── docs │ │ └── README.md ├── img │ ├── apps_repo.png │ ├── favicon.png │ └── icon.png └── requirements.txt ├── external-secrets ├── base │ ├── eso.yaml │ ├── kustomization.yaml │ └── serviceaccount.yaml └── overlays │ ├── emea │ └── jerry │ │ └── kustomization.yaml │ ├── moc │ ├── curator │ │ └── kustomization.yaml │ ├── infra │ │ └── kustomization.yaml │ └── smaug │ │ └── kustomization.yaml │ └── osc │ ├── osc-cl1 │ └── kustomization.yaml │ └── osc-cl2 │ └── kustomization.yaml ├── fake-metrics-server ├── base │ ├── deployment.yaml │ ├── kustomization.yaml │ └── service.yaml └── overlays │ └── openshift-storage │ ├── deploy_patch.yaml │ ├── kustomization.yaml │ └── metrics.json ├── grafana ├── base │ ├── grafana-datasource-serviceaccount.yaml │ ├── grafana-route.yaml │ ├── grafana.yaml │ ├── kustomization.yaml │ └── servicemonitor.yaml └── overlays │ ├── common │ ├── README.md │ ├── dashboards │ │ ├── compute-resources-overview │ │ │ ├── cluster-cpu-overview.yaml │ │ │ ├── cluster-memory-overview.yaml │ │ │ ├── cluster-node-resource-consumption.yaml │ │ │ ├── cluster-pod-overview.yaml │ │ │ ├── cluster-storage-overview.yaml │ │ │ ├── configmaps │ │ │ │ ├── files │ │ │ │ │ ├── cluster-cpu-overview.json │ │ │ │ │ ├── cluster-memory-overview.json │ │ │ │ │ ├── cluster-node-resource-consumption.json │ │ │ │ │ ├── cluster-pod-overview.json │ │ │ │ │ └── cluster-storage-overview.json │ │ │ │ └── kustomization.yaml │ │ │ └── kustomization.yaml │ │ └── kustomization.yaml │ └── kustomization.yaml │ ├── moc │ ├── common │ │ ├── dashboards │ │ │ ├── cluster-management │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── namespace_cpu_and_memory_overview.yaml │ │ │ │ ├── node-feature-discovery.yaml │ │ │ │ └── vpa-rc-cpu-and-memory-overview.yaml │ │ │ ├── kubeflow │ │ │ │ ├── kfp-tekton-user.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── odh │ │ │ │ ├── jupyterhub-user.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── operate-first │ │ │ │ ├── argocd.yaml │ │ │ │ ├── cluster-logs-quick-search.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── opf-availability.yaml │ │ │ │ ├── opf-workload-overview.yaml │ │ │ │ └── strimzi-kafka-overview.yaml │ │ │ ├── prometheus │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── overview.yaml │ │ │ │ └── remote-write.yaml │ │ │ ├── pulp │ │ │ │ ├── kustomization.yaml │ │ │ │ └── pulp-metrics.yaml │ │ │ ├── thanos │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── thanos-compact.yaml │ │ │ │ ├── thanos-overview.yaml │ │ │ │ ├── thanos-query.yaml │ │ │ │ ├── thanos-receive.yaml │ │ │ │ ├── thanos-rule.yaml │ │ │ │ └── thanos-store.yaml │ │ │ └── thoth-station │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── thoth-kafka-argo-metrics.yaml │ │ │ │ ├── thoth-knowledge-graph-content-metrics.yaml │ │ │ │ ├── thoth-postgresql-metrics.yaml │ │ │ │ ├── thoth-service-metrics.yaml │ │ │ │ ├── thoth-sli-slo.yaml │ │ │ │ ├── thoth-user-api-metrics.yaml │ │ │ │ └── thoth-workflow-controllers-metrics.yaml │ │ ├── datasources │ │ │ ├── cluster-logs.yaml │ │ │ ├── grafanadatasource.yaml │ │ │ └── kustomization.yaml │ │ └── kustomization.yaml │ ├── smaug-public │ │ ├── dashboards │ │ │ └── operate-first │ │ │ │ └── opf-projects-overview.yaml │ │ ├── externalsecrets │ │ │ ├── grafana-secret-config.yaml │ │ │ └── kustomization.yaml │ │ ├── grafana-public.yaml │ │ ├── grafana-route-public.yaml │ │ ├── kustomization.yaml │ │ └── servicemonitor.yaml │ └── smaug │ │ ├── blackbox-exporter │ │ ├── config-map.yaml │ │ ├── deployment.yaml │ │ ├── kustomization.yaml │ │ ├── recording-rules.yaml │ │ ├── route.yaml │ │ ├── service-monitor.yaml │ │ └── service.yaml │ │ ├── externalsecrets │ │ ├── grafana-secret-config.yaml │ │ ├── kustomization.yaml │ │ └── oauth-client-secret.yaml │ │ ├── grafana-oauth.yaml │ │ ├── kustomization.yaml │ │ ├── landingpage-dashboard-configmap.yaml │ │ └── route_patch.yaml │ └── osc │ ├── common │ ├── dashboards │ │ ├── data-pipeline-resources.yaml │ │ ├── json │ │ │ ├── data-pipeline-resources.json │ │ │ ├── kepler.json │ │ │ └── landingpage.json │ │ ├── kepler.yaml │ │ └── kustomization.yaml │ ├── datasources │ │ ├── grafanadatasource.yaml │ │ └── kustomization.yaml │ ├── grafana_oauth_patch.yaml │ └── kustomization.yaml │ ├── osc-cl1 │ ├── grafana-secret-config.yaml │ ├── grafana_oauth_patch.yaml │ └── kustomization.yaml │ └── osc-cl2 │ ├── grafana-secret-config.yaml │ ├── grafana_oauth_patch.yaml │ └── kustomization.yaml ├── inception ├── README.md ├── base │ ├── deployments │ │ ├── inception-deployment.yaml │ │ ├── kustomization.yaml │ │ └── proxy-deployment.yaml │ ├── kustomization.yaml │ ├── routes │ │ ├── inception-route.yaml │ │ └── kustomization.yaml │ ├── secrets │ │ ├── inception-proxy.yaml │ │ ├── inception-secrets.yaml │ │ └── kustomization.yaml │ └── services │ │ ├── inception-service.yaml │ │ ├── kustomization.yaml │ │ └── proxy-service.yaml └── overlays │ └── osc │ ├── osc-cl1 │ └── kustomization.yaml │ └── osc-cl2 │ └── kustomization.yaml ├── jupyterhub-idle-culler ├── base │ ├── deployment.yaml │ └── kustomization.yaml └── overlays │ └── moc │ └── smaug │ ├── deployment_patch.yaml │ ├── externalsecrets │ ├── jupyterhub-api-token.yaml │ └── kustomization.yaml │ └── kustomization.yaml ├── k8s-annotations-exporter ├── base │ ├── deployment.yaml │ ├── kustomization.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ └── servicemonitor.yaml └── overlays │ ├── moc │ ├── infra │ │ └── kustomization.yaml │ └── smaug │ │ └── kustomization.yaml │ └── osc │ ├── osc-cl1 │ └── kustomization.yaml │ └── osc-cl2 │ └── kustomization.yaml ├── kafka ├── base │ ├── kustomization.yaml │ ├── opf-kafdrop-route.yaml │ ├── opf-kafdrop-service.yaml │ ├── opf-kafdrop.yaml │ ├── opf-kafka-metrics-configmaps.yaml │ └── opf-kafka.yaml └── overlays │ ├── osc │ └── osc-cl2 │ │ ├── kafka │ │ ├── kustomization.yaml │ │ └── my-cluster.yaml │ │ ├── kustomization.yaml │ │ ├── prometheus-kafka-adapter │ │ ├── deployment.yaml │ │ ├── external-secret.yaml │ │ ├── kustomization.yaml │ │ ├── service.yaml │ │ └── serviceaccount.yaml │ │ └── topics │ │ ├── ecb-fx.yaml │ │ ├── kepler-metrics.yaml │ │ ├── kustomization.yaml │ │ └── my-topic.yaml │ └── smaug │ ├── kafka-podmonitors.yaml │ ├── kustomization.yaml │ ├── opf-kafdrop.yaml │ ├── topics │ ├── audio-decoder-decoded-speech.yaml │ ├── audio-decoder-sentiment-text.yaml │ ├── ddas-commands.yaml │ ├── emea-sa-od-demo-images.yaml │ ├── emea-sa-od-demo-objects.yaml │ ├── infra-cluster-app-logs.yaml │ ├── infra-cluster-audit-logs.yaml │ ├── infra-cluster-infra-logs.yaml │ ├── kustomization.yaml │ ├── smartvillage-sumo-run-report.yaml │ ├── smartvillage-sumo-run.yaml │ ├── smaug-cluster-app-logs.yaml │ ├── smaug-cluster-audit-logs.yaml │ ├── smaug-cluster-infra-logs.yaml │ ├── thoth-advise-justification.yaml │ ├── thoth-adviser-trigger.yaml │ ├── thoth-build-analysis-trigger.yaml │ ├── thoth-cve-provided.yaml │ ├── thoth-hash-mismatch.yaml │ ├── thoth-kebechet-run-url.yaml │ ├── thoth-kebechet-trigger.yaml │ ├── thoth-missing-package-version.yaml │ ├── thoth-missing-package.yaml │ ├── thoth-package-extract-trigger.yaml │ ├── thoth-package-released.yaml │ ├── thoth-provenance-checker-trigger.yaml │ ├── thoth-qebhwt-trigger.yaml │ ├── thoth-si-unanalyzed-package.yaml │ ├── thoth-solved-package.yaml │ ├── thoth-unresolved-package.yaml │ ├── thoth-unrevsolved-package.yaml │ └── thoth-update-provides-source-distro.yaml │ └── users │ ├── audio-decoder.yaml │ ├── cluster-logging.yaml │ ├── ddas.yaml │ ├── emea-sa-od-demo.yaml │ ├── kustomization.yaml │ ├── opf-public-demo.yaml │ ├── smartvillage.yaml │ └── thoth.yaml ├── kepler ├── base │ ├── kustomization.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ └── servicemonitor.yaml └── overlays │ └── osc │ ├── osc-cl1 │ └── kustomization.yaml │ └── osc-cl2 │ ├── CO2Signal-producer │ ├── external-secret-dot-env.yaml │ ├── kafka-producer.yaml │ └── kustomization.yaml │ └── kustomization.yaml ├── kfdefs ├── base │ ├── jupyterhub │ │ └── notebook-images │ │ │ ├── audio-decoder-demo.yaml │ │ │ ├── bu-cs-jupyterbook.yaml │ │ │ ├── categorical-encoding.yaml │ │ │ ├── ceph-drive-failure.yaml │ │ │ ├── cloud-price-analysis.yaml │ │ │ ├── configuration-files-analysis.yaml │ │ │ ├── experimental-elyra-notebook-imagestream.yaml │ │ │ ├── hitchhikers-guide.yaml │ │ │ ├── htm-applications.yaml │ │ │ ├── jupyterbook-test.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── mailing-list-analysis-toolkit.yaml │ │ │ ├── ml-prague-workshop.yaml │ │ │ ├── ocp-ci-analysis.yaml │ │ │ ├── ope.yaml │ │ │ ├── openshift-anomaly-detection.yaml │ │ │ ├── operate-first-jupyterhub-analysis.yaml │ │ │ ├── pet-image-detection.yaml │ │ │ ├── ray-ml-notebook.yaml │ │ │ ├── s2i-pytorch-py38-notebook.yaml │ │ │ ├── s2i-spark3.0.1-minimal-notebook.yaml │ │ │ ├── time-series.yaml │ │ │ └── ucsls.yaml │ └── trino │ │ └── hive-metastore-template │ │ ├── hive-metastore-sts.yaml │ │ ├── kustomization.yaml │ │ └── service.yaml └── overlays │ ├── moc │ └── smaug │ │ ├── argo │ │ ├── kfdef.yaml │ │ ├── kustomization.yaml │ │ └── servicemonitor.yaml │ │ ├── dashboard │ │ ├── kfdef.yaml │ │ ├── kustomization.yaml │ │ └── route.yaml │ │ ├── ds-ml-workflows-ws │ │ ├── kfdef.yaml │ │ └── kustomization.yaml │ │ ├── google-spark-operator │ │ ├── kfdef.yaml │ │ └── kustomization.yaml │ │ ├── jupyterhub-stage │ │ ├── kfdef.yaml │ │ └── kustomization.yaml │ │ ├── jupyterhub │ │ ├── alerts.yaml │ │ ├── kfdef.yaml │ │ ├── kustomization.yaml │ │ ├── pvcs │ │ │ ├── aakankshaduggal.yaml │ │ │ ├── antter.yaml │ │ │ ├── benlugasi.yaml │ │ │ ├── chauhankaranraj.yaml │ │ │ ├── guyelf.yaml │ │ │ ├── hemajv.yaml │ │ │ ├── isabelizimm.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── michaelclifford.yaml │ │ │ ├── moradnir.yaml │ │ │ ├── ofir-shechtman.yaml │ │ │ ├── oindrillac.yaml │ │ │ ├── pacospace.yaml │ │ │ ├── shreyanand.yaml │ │ │ └── suppathak.yaml │ │ ├── ray-odh-integration │ │ │ ├── kustomization.yaml │ │ │ ├── ray-cluster-template-cm.yaml │ │ │ ├── ray-jh-rolebinding.yaml │ │ │ ├── ray-ml-profile-cm.yaml │ │ │ ├── ray-operator-deployment.yaml │ │ │ ├── ray-operator-role.yaml │ │ │ ├── ray-operator-rolebinding.yaml │ │ │ └── ray-operator-serviceaccount.yaml │ │ └── servicemonitor.yaml │ │ ├── kustomization.yaml │ │ ├── seldon │ │ ├── alerts.yaml │ │ ├── kfdef.yaml │ │ ├── kustomization.yaml │ │ ├── seldon-podmonitor.yaml │ │ └── seldon-servicemonitor.yaml │ │ ├── superset │ │ ├── configmaps │ │ │ ├── custom_sso_security_manager.py │ │ │ ├── kustomization.yaml │ │ │ └── superset_config.py │ │ ├── externalsecrets │ │ │ ├── kustomization.yaml │ │ │ ├── superset-custom.yaml │ │ │ └── superset-db-custom.yaml │ │ ├── kfdef.yaml │ │ └── kustomization.yaml │ │ ├── trino-stage │ │ ├── .sops.yaml │ │ ├── configs │ │ │ ├── catalogs │ │ │ │ └── operate_first_general.properties │ │ │ ├── config-coordinator.properties │ │ │ ├── config-worker.properties │ │ │ ├── jmx.properties │ │ │ ├── jvm-coordinator.config │ │ │ ├── jvm-worker.config │ │ │ ├── kustomization.yaml │ │ │ ├── log.properties │ │ │ ├── node.properties │ │ │ ├── password-authenticator.properties │ │ │ └── password.db │ │ ├── externalsecrets │ │ │ ├── file-auth-secret.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── postgres-dbs.yaml │ │ │ ├── s3buckets.yaml │ │ │ └── trino-oauth.yaml │ │ ├── hive-metastores │ │ │ ├── kustomization.yaml │ │ │ └── operate-first_general │ │ │ │ └── kustomization.yaml │ │ ├── kfdef.yaml │ │ ├── kustomization.yaml │ │ ├── obcs │ │ │ ├── kustomization.yaml │ │ │ └── trino-stage-bucket.yaml │ │ ├── routes │ │ │ ├── kustomization.yaml │ │ │ └── trino-route.yaml │ │ └── vpa │ │ │ ├── kustomization.yaml │ │ │ └── vpa-custom-resource.yaml │ │ └── trino │ │ ├── alerts.yaml │ │ ├── configs │ │ ├── catalogs │ │ │ ├── curator_general.properties │ │ │ ├── operate_first_general.properties │ │ │ └── ospo_sandiego.properties │ │ ├── config-coordinator.properties │ │ ├── config-worker.properties │ │ ├── jmx.properties │ │ ├── jvm-coordinator.config │ │ ├── jvm-worker.config │ │ ├── kustomization.yaml │ │ ├── log.properties │ │ ├── node.properties │ │ ├── password-authenticator.properties │ │ └── password.db │ │ ├── externalsecrets │ │ ├── file-auth-secret.yaml │ │ ├── kustomization.yaml │ │ ├── postgres-dbs.yaml │ │ ├── s3buckets.yaml │ │ └── trino-oauth.yaml │ │ ├── hive-metastores │ │ ├── kustomization.yaml │ │ └── operate-first_general │ │ │ └── kustomization.yaml │ │ ├── kfdef.yaml │ │ ├── kustomization.yaml │ │ ├── obcs │ │ ├── kustomization.yaml │ │ └── opf-datacatalog.yaml │ │ ├── servicemonitor.yaml │ │ └── vpa │ │ ├── kustomization.yaml │ │ └── vpa-custom-resource.yaml │ └── osc │ ├── OWNERS │ ├── osc-cl1 │ ├── cnbi │ │ ├── kfdef.yaml │ │ └── kustomization.yaml │ ├── dashboard │ │ ├── kfdef.yaml │ │ └── kustomization.yaml │ ├── jupyterhub-stage │ │ ├── kfdef.yaml │ │ ├── kustomization.yaml │ │ └── profiles │ │ │ ├── kustomization.yaml │ │ │ └── singleuser-profiles-container-sizes.yaml │ ├── jupyterhub │ │ ├── kfdef.yaml │ │ ├── kustomization.yaml │ │ ├── notebook-images │ │ │ ├── aicoe-osc-demo.yaml │ │ │ ├── corporate-data-pipeline-nb.yaml │ │ │ ├── elyra-image.yaml │ │ │ ├── iris-notebook.yaml │ │ │ └── kustomization.yaml │ │ ├── profiles │ │ │ ├── kustomization.yaml │ │ │ ├── singleuser-profiles-container-sizes.yaml │ │ │ └── singleuser-profiles-gpu-ui.yaml │ │ ├── pvcs │ │ │ ├── kustomization.yaml │ │ │ ├── oindrillac.yaml │ │ │ └── shreyanand.yaml │ │ └── servicemonitor.yaml │ ├── kustomization.yaml │ ├── seldon │ │ ├── customresources │ │ │ └── kustomization.yaml │ │ ├── kfdef-sandbox.yaml │ │ ├── kfdef.yaml │ │ └── kustomization.yaml │ ├── superset │ │ ├── configmaps │ │ │ ├── custom_sso_security_manager.py │ │ │ ├── kustomization.yaml │ │ │ └── superset_config.py │ │ ├── externalsecrets │ │ │ ├── kustomization.yaml │ │ │ ├── superset-custom.yaml │ │ │ └── supersetdb.yaml │ │ ├── kfdef.yaml │ │ ├── kustomization.yaml │ │ └── secure-route.yaml │ ├── trino-dev │ │ ├── configs │ │ │ ├── access-control.properties │ │ │ ├── catalogs │ │ │ │ └── osc_devcatalog.properties │ │ │ ├── config-coordinator.properties │ │ │ ├── config-worker.properties │ │ │ ├── group-mapping.properties │ │ │ ├── group-provider.properties │ │ │ ├── jmx.properties │ │ │ ├── jvm.config │ │ │ ├── kustomization.yaml │ │ │ ├── log.properties │ │ │ ├── node.properties │ │ │ ├── password-authenticator.properties │ │ │ ├── password.db │ │ │ ├── rules.json │ │ │ └── trino-acl-dsl.yaml │ │ ├── externalsecrets │ │ │ ├── kustomization.yaml │ │ │ ├── s3buckets.yaml │ │ │ ├── trino-admin-acct.yaml │ │ │ └── trino-oauth.yaml │ │ ├── hive-metastores │ │ │ ├── OSC_DevCatalog │ │ │ │ └── kustomization.yaml │ │ │ └── kustomization.yaml │ │ ├── kfdef.yaml │ │ ├── kustomization.yaml │ │ └── secure-route.yaml │ └── trino │ │ ├── configs │ │ ├── access-control.properties │ │ ├── catalogs │ │ │ ├── osc_datacommons_dev.properties │ │ │ ├── osc_datacommons_iceberg_dev.properties │ │ │ └── osc_datacommons_prod.properties │ │ ├── config-coordinator.properties │ │ ├── config-worker.properties │ │ ├── group-mapping.properties │ │ ├── group-provider.properties │ │ ├── jmx.properties │ │ ├── jvm-coordinator.config │ │ ├── jvm-worker.config │ │ ├── kustomization.yaml │ │ ├── log.properties │ │ ├── node.properties │ │ ├── password-authenticator.properties │ │ ├── password.db │ │ ├── rules.json │ │ └── trino-acl-dsl.yaml │ │ ├── externalsecrets │ │ ├── kustomization.yaml │ │ ├── s3buckets.yaml │ │ └── trino-oauth.yaml │ │ ├── hive-metastores │ │ ├── OSC_DataCommons_Dev │ │ │ └── kustomization.yaml │ │ ├── OSC_DataCommons_Iceberg_Dev │ │ │ └── kustomization.yaml │ │ ├── OSC_DataCommons_Prod │ │ │ └── kustomization.yaml │ │ └── kustomization.yaml │ │ ├── kfdef.yaml │ │ ├── kustomization.yaml │ │ └── secure-route.yaml │ └── osc-cl2 │ ├── jupyterhub │ ├── kfdef.yaml │ ├── kustomization.yaml │ ├── notebook-images │ │ ├── aicoe-osc-demo.yaml │ │ ├── corporate-data-pipeline-nb.yaml │ │ ├── elyra-image.yaml │ │ ├── iris-notebook.yaml │ │ └── kustomization.yaml │ ├── profiles │ │ ├── kustomization.yaml │ │ ├── singleuser-profiles-container-sizes.yaml │ │ └── singleuser-profiles-gpu-ui.yaml │ ├── pvcs │ │ ├── kustomization.yaml │ │ └── suppathak.yaml │ └── servicemonitor.yaml │ ├── kustomization.yaml │ ├── seldon │ ├── kfdef.yaml │ └── kustomization.yaml │ ├── superset │ ├── configmaps │ │ ├── custom_sso_security_manager.py │ │ ├── kustomization.yaml │ │ └── superset_config.py │ ├── externalsecrets │ │ ├── kustomization.yaml │ │ ├── superset-custom.yaml │ │ └── supersetdb.yaml │ ├── kfdef.yaml │ ├── kustomization.yaml │ └── secure-route.yaml │ └── trino │ ├── configs │ ├── access-control.properties │ ├── catalogs │ │ ├── kafka_fx.properties │ │ ├── kafka_osclimate.properties │ │ ├── oef_openclimate.properties │ │ ├── osc_datacommons_dev.properties │ │ ├── osc_datacommons_hive_ingest.properties │ │ ├── riskthinking.properties │ │ └── uwm_prometheus.properties │ ├── config-coordinator.properties │ ├── config-worker.properties │ ├── group-mapping.properties │ ├── group-provider.properties │ ├── jmx.properties │ ├── jvm-coordinator.config │ ├── jvm-worker.config │ ├── kafka-table-description-dir │ │ ├── co2signal-trino-schema.json │ │ ├── ecb-trino-schema.json │ │ ├── fx.json │ │ └── kepler.json │ ├── kustomization.yaml │ ├── log.properties │ ├── monitoring-config.yaml │ ├── node.properties │ ├── password-authenticator.properties │ ├── password.db │ ├── rules.json │ └── trino-acl-dsl.yaml │ ├── externalsecrets │ ├── kustomization.yaml │ ├── s3buckets.yaml │ ├── shared-secret.yaml │ ├── trino-oauth.yaml │ ├── trino-secret-env.yaml │ └── trino-secret-files.yaml │ ├── hive-metastores │ ├── OSC_DataCommons_Dev │ │ └── kustomization.yaml │ ├── kustomization.yaml │ └── osc_datacommons_hive_ingest │ │ └── kustomization.yaml │ ├── kfdef.yaml │ ├── kustomization.yaml │ ├── secure-route.yaml │ └── servicemonitors │ ├── OSC_DataCommons_Dev.yaml │ ├── kustomization.yaml │ ├── osc_datacommons_hive_ingest.yaml │ ├── trino-coordinator.yaml │ └── trino-workers.yaml ├── kfp-tekton ├── README.md ├── base │ ├── configmaps │ │ ├── kfp-tekton-config.yaml │ │ ├── ml-pipeline-ui-configmap.yaml │ │ └── pipeline-install-config.yaml │ ├── deployments │ │ ├── metadata-envoy-deployment.yaml │ │ ├── metadata-grpc-deployment.yaml │ │ ├── metadata-writer.yaml │ │ ├── minio.yaml │ │ ├── ml-pipeline-persistenceagent.yaml │ │ ├── ml-pipeline-scheduledworkflow.yaml │ │ ├── ml-pipeline-ui.yaml │ │ ├── ml-pipeline-viewer-crd.yaml │ │ ├── ml-pipeline-visualizationserver.yaml │ │ ├── ml-pipeline.yaml │ │ └── mysql.yaml │ ├── kustomization.yaml │ ├── params.env │ ├── params.yaml │ ├── persistentvolumeclaims │ │ ├── minio-pvc.yaml │ │ └── mysql-pv-claim.yaml │ ├── rolebindings │ │ ├── kubeflow-pipelines-metadata-writer-binding.yaml │ │ ├── ml-pipeline-persistenceagent-binding.yaml │ │ ├── ml-pipeline-scheduledworkflow-binding.yaml │ │ ├── ml-pipeline-ui.yaml │ │ ├── ml-pipeline-viewer-crd-binding.yaml │ │ ├── ml-pipeline.yaml │ │ └── pipeline-runner-binding.yaml │ ├── roles │ │ ├── kubeflow-pipelines-metadata-writer-role.yaml │ │ ├── ml-pipeline-persistenceagent-role.yaml │ │ ├── ml-pipeline-scheduledworkflow-role.yaml │ │ ├── ml-pipeline-ui.yaml │ │ ├── ml-pipeline-viewer-controller-role.yaml │ │ ├── ml-pipeline.yaml │ │ └── pipeline-runner.yaml │ ├── routes │ │ └── ml-pipeline-ui.yaml │ ├── secrets │ │ ├── mlpipeline-minio-artifact.yaml │ │ └── mysql-secret.yaml │ ├── serviceaccounts │ │ ├── kubeflow-pipelines-container-builder.yaml │ │ ├── kubeflow-pipelines-metadata-writer.yaml │ │ ├── kubeflow-pipelines-viewer.yaml │ │ ├── metadata-grpc-server.yaml │ │ ├── ml-pipeline-persistenceagent.yaml │ │ ├── ml-pipeline-scheduledworkflow.yaml │ │ ├── ml-pipeline-ui.yaml │ │ ├── ml-pipeline-viewer-crd-service-account.yaml │ │ ├── ml-pipeline-visualizationserver.yaml │ │ ├── ml-pipeline.yaml │ │ ├── mysql.yaml │ │ └── pipeline-runner.yaml │ └── services │ │ ├── metadata-envoy-service.yaml │ │ ├── metadata-grpc-service.yaml │ │ ├── minio.yaml │ │ ├── ml-pipeline-ui.yaml │ │ ├── ml-pipeline-visualizationserver.yaml │ │ ├── ml-pipeline.yaml │ │ └── mysql.yaml └── overlays │ ├── moc │ └── smaug │ │ ├── externalsecrets │ │ ├── kustomization.yaml │ │ ├── mlpipeline-minio-artifact.yaml │ │ └── mysql-secret.yaml │ │ └── kustomization.yaml │ └── osc │ └── osc-cl2 │ ├── externalsecrets │ ├── kustomization.yaml │ ├── mlpipeline-minio-artifact.yaml │ └── mysql-secret.yaml │ └── kustomization.yaml ├── kubevirt-hyperconverged ├── README.md ├── base │ ├── hyperconverged.yaml │ └── kustomization.yaml └── overlays │ ├── dev │ └── kustomization.yaml │ ├── emea │ └── morty │ │ └── kustomization.yaml │ └── moc │ ├── infra │ └── kustomization.yaml │ └── smaug │ └── kustomization.yaml ├── kvm-device-plugin ├── base │ ├── buildconfig.yaml │ ├── imagestream.yaml │ ├── kustomization.yaml │ └── serviceaccount.yaml └── overlays │ └── smaug │ └── kustomization.yaml ├── local-storage ├── README.md ├── base │ └── kustomization.yaml └── overlays │ └── dev │ └── kustomization.yaml ├── nfd ├── base │ ├── kustomization.yaml │ └── nfd.yaml └── overlays │ ├── emea │ └── morty │ │ └── kustomization.yaml │ └── moc │ └── smaug │ └── kustomization.yaml ├── nfs-server-and-provisioner ├── README.md ├── base │ ├── deployment.yaml │ ├── export-pv-claim.yaml │ ├── kustomization.yaml │ └── rbac.yaml └── overlays │ └── moc │ └── smaug │ └── kustomization.yaml ├── node-labeler ├── README.md ├── add-interface-label.sh ├── daemonset.yaml ├── kustomization.yaml ├── namespace.yaml └── serviceaccount.yaml ├── observatorium ├── base │ ├── instance │ │ ├── example-loki-objectstorage-secret.yaml │ │ ├── example-oauth-client-secret.enc.yaml │ │ ├── example-thanos-objectstorage-secret.yaml │ │ ├── loki │ │ │ ├── chunk-cache │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── statefulset.yaml │ │ │ ├── common │ │ │ │ ├── example-loki-objectstorage-secret.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ └── observatorium-loki-configmap.yaml │ │ │ ├── compactor │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── services │ │ │ │ │ ├── grpc.yaml │ │ │ │ │ ├── http.yaml │ │ │ │ │ └── kustomization.yaml │ │ │ │ └── statefulset.yaml │ │ │ ├── distributor │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ └── services │ │ │ │ │ ├── grpc.yaml │ │ │ │ │ ├── http.yaml │ │ │ │ │ └── kustomization.yaml │ │ │ ├── gossip-ring │ │ │ │ ├── kustomization.yaml │ │ │ │ └── service.yaml │ │ │ ├── index-query-cache │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── statefulset.yaml │ │ │ ├── ingester │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── services │ │ │ │ │ ├── grpc.yaml │ │ │ │ │ ├── http.yaml │ │ │ │ │ └── kustomization.yaml │ │ │ │ └── statefulset.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── querier │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── services │ │ │ │ │ ├── grpc.yaml │ │ │ │ │ ├── http.yaml │ │ │ │ │ └── kustomization.yaml │ │ │ │ └── statefulset.yaml │ │ │ ├── query-frontend │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ └── services │ │ │ │ │ ├── grpc.yaml │ │ │ │ │ ├── http.yaml │ │ │ │ │ └── kustomization.yaml │ │ │ └── results-cache │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── statefulset.yaml │ │ ├── thanos │ │ │ ├── common │ │ │ │ ├── example-thanos-objectstorage-secret.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── query-frontend │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ └── service.yaml │ │ │ ├── query │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ └── service.yaml │ │ │ ├── receive-controller │ │ │ │ ├── configmap.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── serviceaccount.yaml │ │ │ ├── receive │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── services │ │ │ │ │ ├── default-hashring.yaml │ │ │ │ │ ├── kustomization.yaml │ │ │ │ │ └── service.yaml │ │ │ │ └── statefulset.yaml │ │ │ ├── store-bucket-cache │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── statefulset.yaml │ │ │ ├── store-index-cache │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── statefulset.yaml │ │ │ └── store │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── shard-0 │ │ │ │ └── kustomization.yaml │ │ │ │ ├── shard-1 │ │ │ │ └── kustomization.yaml │ │ │ │ └── shard-base │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── statefulset.yaml │ │ └── vector │ │ │ ├── deployment.yaml │ │ │ └── kustomization.yaml │ └── operator │ │ ├── deployment.yaml │ │ ├── kustomization.yaml │ │ └── serviceaccount.yaml └── overlays │ └── moc │ └── smaug │ ├── kustomization.yaml │ ├── loki │ ├── configmaps │ │ └── observatorium-loki-configmap_patch.yaml │ ├── externalsecrets │ │ ├── kustomization.yaml │ │ └── loki-objectstorage-secret.yaml │ ├── kustomization.yaml │ ├── obcs │ │ ├── kustomization.yaml │ │ └── opf-observatorium-logs.yaml │ └── servicemonitors │ │ ├── kustomization.yaml │ │ ├── observatorium-loki-chunk-cache.yaml │ │ ├── observatorium-loki-compactor.yaml │ │ ├── observatorium-loki-distributor.yaml │ │ ├── observatorium-loki-index-query-cache.yaml │ │ ├── observatorium-loki-ingester.yaml │ │ ├── observatorium-loki-querier.yaml │ │ ├── observatorium-loki-query-frontend.yaml │ │ └── observatorium-loki-results-cache.yaml │ ├── thanos │ ├── deployments │ │ ├── kustomization.yaml │ │ ├── thanos-query-frontend-oauth-proxy.yaml │ │ └── thanos-receive-oauth-proxy.yaml │ ├── externalsecrets │ │ ├── kustomization.yaml │ │ └── thanos-objectstorage-secret.yaml │ ├── horizontalpodautoscalers │ │ ├── kustomization.yaml │ │ ├── observatorium-thanos-receive-default.yaml │ │ └── thanos-receive-oauth-proxy.yaml │ ├── kustomization.yaml │ ├── obcs │ │ ├── kustomization.yaml │ │ └── opf-observatorium-metrics.yaml │ ├── rolebindings │ │ ├── kustomization.yaml │ │ └── opf-observatorium-view.yaml │ ├── roles │ │ ├── kustomization.yaml │ │ └── opf-observatorium-view.yaml │ ├── routes │ │ ├── kustomization.yaml │ │ ├── thanos-query-frontend-oauth-proxy.yaml │ │ └── thanos-receive-oauth-proxy.yaml │ ├── serviceaccounts │ │ ├── kustomization.yaml │ │ ├── remote-write-moc-infra.yaml │ │ ├── remote-write-moc-smaug.yaml │ │ ├── thanos-query-frontend-oauth-proxy.yaml │ │ └── thanos-receive-oauth-proxy.yaml │ ├── servicemonitors │ │ ├── kustomization.yaml │ │ ├── observatorium-thanos-query-frontend.yaml │ │ ├── observatorium-thanos-query.yaml │ │ ├── observatorium-thanos-receive-controller.yaml │ │ ├── observatorium-thanos-receive.yaml │ │ ├── observatorium-thanos-store-bucket-cache-memcached.yaml │ │ ├── observatorium-thanos-store-index-cache-memcached.yaml │ │ └── observatorium-thanos-store-shard.yaml │ └── services │ │ ├── kustomization.yaml │ │ ├── thanos-query-frontend-oauth-proxy.yaml │ │ └── thanos-receive-oauth-proxy.yaml │ └── vector │ ├── clo-kafka.yaml │ ├── infra │ ├── configmap.yaml │ ├── deployment.yaml │ ├── kustomization.yaml │ └── service.yaml │ ├── kustomization.yaml │ └── smaug │ ├── configmap.yaml │ ├── deployment.yaml │ ├── kustomization.yaml │ └── service.yaml ├── odf ├── README.md ├── base │ └── kustomization.yaml └── overlays │ └── emea │ └── morty │ ├── kustomization.yaml │ ├── ocs-storagecluster-storagesystem.yaml │ ├── ocs-storagecluster.yaml │ └── route.yaml ├── odh-manifests ├── README.md └── osc │ ├── OWNERS │ └── trino-dev │ └── base │ ├── hive-config.yaml │ ├── kustomization.yaml │ ├── trino-coordinator-dc.yaml │ └── trino-worker-dc.yaml ├── odh-operator ├── base │ ├── deployment.yaml │ ├── kustomization.yaml │ ├── serviceaccount.yaml │ └── servicemonitor.yaml └── overlays │ ├── dev │ └── kustomization.yaml │ ├── emea │ └── devconfus2021 │ │ └── kustomization.yaml │ ├── moc │ └── smaug │ │ └── kustomization.yaml │ └── osc │ ├── osc-cl1 │ └── kustomization.yaml │ └── osc-cl2 │ └── kustomization.yaml ├── okd-centos ├── base │ ├── buildconfig.yaml │ ├── imagestream.yaml │ ├── kustomization.yaml │ └── rolebinding.yaml └── overlays │ └── smaug │ └── kustomization.yaml ├── openmetadata ├── OWNERS ├── base │ ├── openmetadata-dependencies │ │ ├── configmaps │ │ │ ├── files │ │ │ │ ├── db_migrations.py │ │ │ │ ├── pod_template.yaml │ │ │ │ ├── sync_users.py │ │ │ │ └── webserver_config.py │ │ │ ├── kustomization.yaml │ │ │ ├── mysql-init-scripts.yaml │ │ │ ├── mysql.yaml │ │ │ └── openmetadata-dependencies-config-envs.yaml │ │ ├── deployments │ │ │ ├── airflow-db-migrations.yaml │ │ │ ├── airflow-scheduler.yaml │ │ │ ├── airflow-sync-users.yaml │ │ │ ├── airflow-web.yaml │ │ │ ├── airlfow-triggerer.yaml │ │ │ └── kustomization.yaml │ │ ├── kustomization.yaml │ │ ├── persistentvolumeclaims │ │ │ ├── airflow-dags.yaml │ │ │ ├── airflow-logs.yaml │ │ │ └── kustomization.yaml │ │ ├── pods │ │ │ ├── kustomization.yaml │ │ │ └── openmetadata-dependencies-test.yaml │ │ ├── rolebindings │ │ │ ├── airflow.yaml │ │ │ └── kustomization.yaml │ │ ├── roles │ │ │ ├── airflow.yaml │ │ │ └── kustomization.yaml │ │ ├── routes │ │ │ ├── airflow.yaml │ │ │ └── kustomization.yaml │ │ ├── serviceaccounts │ │ │ ├── airflow.yaml │ │ │ ├── kustomization.yaml │ │ │ └── mysql.yaml │ │ ├── services │ │ │ ├── airflow.yaml │ │ │ ├── elasticsearch-headless.yaml │ │ │ ├── elasticsearch.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── mysql-headless.yaml │ │ │ └── mysql.yaml │ │ └── statefulsets │ │ │ ├── elasticsearch.yaml │ │ │ ├── kustomization.yaml │ │ │ └── mysql.yaml │ └── openmetadata │ │ ├── configmaps │ │ ├── files │ │ │ ├── check_db_migrations.sh │ │ │ ├── openmetadata-env.sh │ │ │ └── openmetadata.yaml │ │ └── kustomization.yaml │ │ ├── deployments │ │ ├── kustomization.yaml │ │ └── openmetadata.yaml │ │ ├── jobs │ │ └── openmetadata-db-migrations-hook.yaml │ │ ├── kustomization.yaml │ │ ├── pods │ │ ├── kustomization.yaml │ │ └── openmetadata-test-connection.yaml │ │ ├── routes │ │ ├── kustomization.yaml │ │ ├── openmetadata-admin.yaml │ │ └── openmetadata.yaml │ │ ├── serviceaccounts │ │ ├── kustomization.yaml │ │ └── openmetadata.yaml │ │ └── services │ │ ├── kustomization.yaml │ │ └── openmetadata.yaml └── overlays │ ├── dev │ ├── README.md │ ├── kustomization.yaml │ ├── patches │ │ ├── configmaps │ │ │ └── openmetadata-dependencies-config-envs.yaml │ │ └── deployments │ │ │ └── openmetadata.yaml │ └── secret │ │ ├── airflow-mysql-secrets.yaml │ │ ├── airflow-secrets.yaml │ │ ├── kustomization.yaml │ │ ├── mysql-init-scripts.yaml │ │ ├── mysql-secrets.yaml │ │ ├── mysql.yaml │ │ ├── openmetadata-dependencies-config-envs.yaml │ │ └── openmetadata-envs.yaml │ └── osc │ ├── osc-cl1 │ ├── configmaps │ │ ├── files │ │ │ ├── auth_roles_mapping.json │ │ │ └── dex_provider_cfg.json │ │ └── kustomization.yaml │ ├── externalsecrets │ │ ├── airflow-mysql-secrets.yaml │ │ ├── airflow-secrets.yaml │ │ ├── dex-provider-cfg.yaml │ │ ├── kustomization.yaml │ │ ├── mysql-init-scripts.yaml │ │ ├── mysql-secrets.yaml │ │ ├── mysql.yaml │ │ ├── openmetadata-auth.yaml │ │ ├── openmetadata-dependencies-config-envs.yaml │ │ └── openmetadata-envs.yaml │ ├── kustomization.yaml │ └── patches │ │ └── deployments │ │ ├── airflow-db-migrations.yaml │ │ ├── airflow-scheduler.yaml │ │ ├── airflow-sync-users.yaml │ │ ├── airflow-web.yaml │ │ ├── airlfow-triggerer.yaml │ │ ├── elasticsearch.yaml │ │ ├── mysql.yaml │ │ └── openmetadata.yaml │ └── osc-cl2 │ ├── configmaps │ ├── files │ │ ├── auth_roles_mapping.json │ │ └── dex_provider_cfg.json │ └── kustomization.yaml │ ├── externalsecrets │ ├── airflow-mysql-secrets.yaml │ ├── airflow-secrets.yaml │ ├── dex-provider-cfg.yaml │ ├── kustomization.yaml │ ├── mysql-init-scripts.yaml │ ├── mysql-secrets.yaml │ ├── mysql.yaml │ ├── openmetadata-auth.yaml │ ├── openmetadata-dependencies-config-envs.yaml │ └── openmetadata-envs.yaml │ ├── kustomization.yaml │ └── patches │ └── deployments │ ├── airflow-db-migrations.yaml │ ├── airflow-scheduler.yaml │ ├── airflow-sync-users.yaml │ ├── airflow-web.yaml │ ├── airlfow-triggerer.yaml │ ├── elasticsearch.yaml │ ├── mysql.yaml │ └── openmetadata.yaml ├── pachyderm ├── base │ ├── kustomization.yaml │ └── pachyderm.yaml └── overlays │ └── osc │ ├── OWNERS │ └── osc-cl2 │ ├── externalsecret.yaml │ └── kustomization.yaml ├── prow ├── OWNERS ├── README.md ├── base │ ├── branchprotector.yaml │ ├── crier.yaml │ ├── deck.yaml │ ├── hook.yaml │ ├── horologium.yaml │ ├── imagestreams.yaml │ ├── ingress.yaml │ ├── kustomization.yaml │ ├── label_sync_job.yaml │ ├── needs-rebase.yaml │ ├── pipeline.yaml │ ├── plank.yaml │ ├── prow-controller-manager.yaml │ ├── sinker.yaml │ ├── statusreconciler.yaml │ └── tide.yaml ├── overlays │ ├── smaug-test-pods │ │ ├── crier_rbac.yaml │ │ ├── deck_rbac.yaml │ │ ├── kustomization.yaml │ │ ├── prow-controller-manager_rbac.yaml │ │ └── sinker_rbac.yaml │ └── smaug │ │ ├── config.yaml │ │ ├── externalsecrets │ │ ├── cookie.yaml │ │ ├── github-oauth-config.yaml │ │ ├── github-token.yaml │ │ ├── hmac-token.yaml │ │ ├── kustomization.yaml │ │ ├── oauth-token.yaml │ │ ├── s3-credentials.yaml │ │ └── ssh-secret.yaml │ │ ├── ghproxy.yaml │ │ ├── imagestreamtags.yaml │ │ ├── integration-test-configmap.yaml │ │ ├── kustomization.yaml │ │ ├── plugins.yaml │ │ ├── routes.yaml │ │ ├── s3-storage.yaml │ │ ├── service-monitor.yaml │ │ └── unsuspend_branchprotector.yaml └── update-imagestreams.py ├── pulp ├── base │ ├── kustomization.yaml │ └── opf-pulp.yaml └── overlays │ └── moc │ └── smaug │ ├── certificate.yaml │ ├── issuer.yaml │ ├── kustomization.yaml │ ├── opf-pulp-backup.yaml │ └── opf-pulp.yaml ├── reloader ├── base │ ├── deployment.yaml │ ├── kustomization.yaml │ └── serviceaccount.yaml └── overlays │ ├── moc │ └── smaug │ │ └── kustomization.yaml │ └── osc │ └── osc-cl2 │ └── kustomization.yaml ├── robozome ├── base │ └── kustomization.yaml └── overlays │ └── moc │ └── smaug │ ├── externalsecret.yaml │ └── kustomization.yaml ├── scripts ├── argocd │ ├── configure_development.sh │ └── update_cluster_resources.sh ├── common.sh ├── fake-ksops.sh ├── jsonnet │ ├── group.jsonnet │ ├── namespace.jsonnet │ └── rbac.jsonnet ├── offboarding.sh ├── onboarding.sh ├── payload_examples │ ├── offboarding.yaml │ └── onboarding.yaml ├── set-odh-release.sh ├── setup_pvs │ ├── README.md │ ├── env.yaml │ ├── playbook.yaml │ └── requirements.yaml └── update-cluster-version.sh ├── service-catalog ├── all.yaml ├── apis.yaml ├── apis │ ├── argocd.yaml │ ├── backstage.yaml │ ├── dex.yaml │ ├── github-webhooks-consumer.yaml │ ├── grafana-public.yaml │ ├── grafana.yaml │ ├── mco-grafana.yaml │ ├── observatorium.yaml │ └── vault.yaml ├── components.yaml ├── components │ ├── acm.yaml │ ├── acme-operator-infra.yaml │ ├── acme-operator-smaug.yaml │ ├── argocd.yaml │ ├── backstage.yaml │ ├── cert-manager-curator.yaml │ ├── cert-manager-infra.yaml │ ├── cert-manager-jerry.yaml │ ├── cert-manager-smaug.yaml │ ├── dex-smaug.yaml │ ├── eso-curator.yaml │ ├── eso-infra.yaml │ ├── eso-jerry.yaml │ ├── eso-smaug.yaml │ ├── fake-metrics-exporter-infra.yaml │ ├── mco-grafana.yaml │ ├── mco-observatorium-operator.yaml │ ├── mco-observatorium.yaml │ ├── odf-operator-infra.yaml │ ├── odf-operator-smaug.yaml │ ├── openshift-pipelines-operator-smaug.yaml │ ├── opf-grafana-public-grafana-operator.yaml │ ├── opf-grafana-public.yaml │ ├── opf-monitoring-grafana-operator.yaml │ ├── opf-monitoring-grafana.yaml │ ├── peribolos-controller.yaml │ ├── probot-kubernetes.yaml │ ├── probot-metrics.yaml │ ├── prow-controller-manager.yaml │ ├── prow-crier.yaml │ ├── prow-deck.yaml │ ├── prow-ghproxy.yaml │ ├── prow-hook.yaml │ ├── prow-horologium.yaml │ ├── prow-needs-rebase.yaml │ ├── prow-plank.yaml │ ├── prow-sinker.yaml │ ├── prow-statusreconciler.yaml │ ├── prow-tide.yaml │ ├── reloader-smaug.yaml │ ├── service-catalog-crunchy-postgres-operator.yaml │ ├── service-catalog-pg-cluster.yaml │ └── vault.yaml ├── domains.yaml ├── domains │ ├── community.yaml │ ├── platform.yaml │ └── sre.yaml ├── groups.yaml ├── groups │ └── operate-first.yaml ├── resources.yaml ├── resources │ ├── nese-ceph.yaml │ ├── obc-open-cluster-management-observability-thanos.yaml │ ├── odf-external-cluster-infra.yaml │ ├── odf-external-cluster-smaug.yaml │ ├── service-catalog-bucket-cla-b58cf604-019a-467c-8cae-50e3a47c12b1.yaml │ └── service-catalog-pg-cluster.yaml ├── systems.yaml ├── systems │ ├── acm.yaml │ ├── argocd.yaml │ ├── certificate-management.yaml │ ├── dex.yaml │ ├── grafana-public.yaml │ ├── grafana.yaml │ ├── odf.yaml │ ├── odh.yaml │ ├── openshift-pipelines.yaml │ ├── peribolos.yaml │ ├── prow.yaml │ ├── reloader.yaml │ ├── secret-management.yaml │ └── service-catalog.yaml ├── users.yaml └── users │ └── operate-first.yaml ├── slack-first ├── base │ ├── configmap.yaml │ ├── deployment.yaml │ ├── kustomization.yaml │ ├── route.yaml │ ├── secret.yaml │ └── service.yaml └── overlays │ └── moc │ └── smaug │ ├── config.yaml │ ├── externalsecret.yaml │ └── kustomization.yaml ├── terraform └── aws │ ├── .terraform.lock.hcl │ ├── README.md │ └── main.tf ├── training-operator ├── base │ ├── deployment.yaml │ ├── kustomization.yaml │ ├── service.yaml │ └── serviceaccount.yaml └── overlays │ └── osc │ └── osc-cl1 │ └── kustomization.yaml ├── triage-party ├── base │ ├── deployment.yaml │ ├── kustomization.yaml │ ├── route.yaml │ └── service.yaml └── overlays │ └── moc │ └── smaug │ ├── config.yaml │ ├── deployment.yaml │ ├── externalsecret.yaml │ ├── kustomization.yaml │ ├── pcache.yaml │ └── route.yaml ├── vault ├── base │ ├── configmaps │ │ ├── configmap.yaml │ │ └── kustomization.yaml │ ├── kustomization.yaml │ ├── policy │ │ ├── kustomization.yaml │ │ └── poddisruptionbudget.yaml │ ├── rbac.authorization.k8s.io │ │ ├── kustomization.yaml │ │ ├── rolebindings │ │ │ └── rolebinding.yaml │ │ └── roles │ │ │ └── role.yaml │ ├── route │ │ ├── kustomization.yaml │ │ └── route.yaml │ ├── serviceaccounts │ │ ├── kustomization.yaml │ │ └── serviceaccount.yaml │ ├── services │ │ ├── kustomization.yaml │ │ ├── opf-vault-active │ │ │ └── service.yaml │ │ ├── opf-vault-internal │ │ │ └── service.yaml │ │ ├── opf-vault-standby │ │ │ └── service.yaml │ │ ├── opf-vault-ui │ │ │ └── service.yaml │ │ └── opf-vault │ │ │ └── service.yaml │ └── statefulsets │ │ ├── kustomization.yaml │ │ └── statefulset.yaml └── overlays │ └── moc │ └── smaug │ ├── backup-job │ ├── cronjob.yaml │ ├── kustomization.yaml │ ├── pvc.yaml │ ├── rolebinding.yaml │ ├── sa.yaml │ ├── scripts │ │ ├── backup-snapshot-to-s3.sh │ │ ├── cleanup-old-taskruns.sh │ │ ├── create-snapshot.sh │ │ └── prune-old-snapshots.sh │ ├── secret.yaml │ ├── task.yaml │ ├── taskrun.yaml │ └── toolkitpod.yaml │ ├── kustomization.yaml │ └── obc.yaml └── yamllint-config.yaml /.aicoe-ci.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | check: [] 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/copilot_ops.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/.github/ISSUE_TEMPLATE/copilot_ops.yaml -------------------------------------------------------------------------------- /.github/sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/.github/sync.yml -------------------------------------------------------------------------------- /.github/workflows/book.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/.github/workflows/book.yml -------------------------------------------------------------------------------- /.github/workflows/sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/.github/workflows/sync.yml -------------------------------------------------------------------------------- /.github/workflows/techdocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/.github/workflows/techdocs.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.prow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/.prow.yaml -------------------------------------------------------------------------------- /.sops.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/.sops.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/LICENSE -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/OWNERS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/README.md -------------------------------------------------------------------------------- /acm/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/acm/base/kustomization.yaml -------------------------------------------------------------------------------- /acm/base/multiclusterhub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/acm/base/multiclusterhub.yaml -------------------------------------------------------------------------------- /acm/overlays/moc/infra/gitopsclusters/argocd-managed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/acm/overlays/moc/infra/gitopsclusters/argocd-managed.yaml -------------------------------------------------------------------------------- /acm/overlays/moc/infra/gitopsclusters/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/acm/overlays/moc/infra/gitopsclusters/kustomization.yaml -------------------------------------------------------------------------------- /acm/overlays/moc/infra/identitatem/clients/github.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/acm/overlays/moc/infra/identitatem/clients/github.yaml -------------------------------------------------------------------------------- /acm/overlays/moc/infra/identitatem/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/acm/overlays/moc/infra/identitatem/kustomization.yaml -------------------------------------------------------------------------------- /acm/overlays/moc/infra/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/acm/overlays/moc/infra/kustomization.yaml -------------------------------------------------------------------------------- /acm/overlays/moc/infra/managedclusters/curator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/acm/overlays/moc/infra/managedclusters/curator.yaml -------------------------------------------------------------------------------- /acm/overlays/moc/infra/managedclusters/jerry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/acm/overlays/moc/infra/managedclusters/jerry.yaml -------------------------------------------------------------------------------- /acm/overlays/moc/infra/managedclusters/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/acm/overlays/moc/infra/managedclusters/kustomization.yaml -------------------------------------------------------------------------------- /acm/overlays/moc/infra/managedclusters/ocp-prod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/acm/overlays/moc/infra/managedclusters/ocp-prod.yaml -------------------------------------------------------------------------------- /acm/overlays/moc/infra/managedclusters/ocp-staging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/acm/overlays/moc/infra/managedclusters/ocp-staging.yaml -------------------------------------------------------------------------------- /acm/overlays/moc/infra/managedclusters/smaug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/acm/overlays/moc/infra/managedclusters/smaug.yaml -------------------------------------------------------------------------------- /acm/overlays/moc/infra/managedclustersets/drvbw.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/acm/overlays/moc/infra/managedclustersets/drvbw.yaml -------------------------------------------------------------------------------- /acm/overlays/moc/infra/placements/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/acm/overlays/moc/infra/placements/kustomization.yaml -------------------------------------------------------------------------------- /acm/overlays/moc/infra/placements/primary-auth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/acm/overlays/moc/infra/placements/primary-auth.yaml -------------------------------------------------------------------------------- /acm/overlays/moc/infra/provider-connections/aws-octo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/acm/overlays/moc/infra/provider-connections/aws-octo.yaml -------------------------------------------------------------------------------- /acme-operator/base/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/acme-operator/base/deployment.yaml -------------------------------------------------------------------------------- /acme-operator/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/acme-operator/base/kustomization.yaml -------------------------------------------------------------------------------- /acme-operator/base/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/acme-operator/base/serviceaccount.yaml -------------------------------------------------------------------------------- /acme-operator/overlays/dev/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/acme-operator/overlays/dev/kustomization.yaml -------------------------------------------------------------------------------- /acme-operator/overlays/moc/infra/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/acme-operator/overlays/moc/infra/kustomization.yaml -------------------------------------------------------------------------------- /acme-operator/overlays/moc/smaug/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/acme-operator/overlays/moc/smaug/kustomization.yaml -------------------------------------------------------------------------------- /acme-operator/overlays/osc/osc-cl1/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/acme-operator/overlays/osc/osc-cl1/kustomization.yaml -------------------------------------------------------------------------------- /acme-operator/overlays/osc/osc-cl2/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/acme-operator/overlays/osc/osc-cl2/kustomization.yaml -------------------------------------------------------------------------------- /alertreceiver/base/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/alertreceiver/base/deployment.yaml -------------------------------------------------------------------------------- /alertreceiver/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/alertreceiver/base/kustomization.yaml -------------------------------------------------------------------------------- /alertreceiver/base/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/alertreceiver/base/service.yaml -------------------------------------------------------------------------------- /alertreceiver/overlays/moc/infra/github-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/alertreceiver/overlays/moc/infra/github-secrets.yaml -------------------------------------------------------------------------------- /alertreceiver/overlays/moc/infra/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/alertreceiver/overlays/moc/infra/kustomization.yaml -------------------------------------------------------------------------------- /alertreceiver/overlays/moc/smaug/github-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/alertreceiver/overlays/moc/smaug/github-secrets.yaml -------------------------------------------------------------------------------- /alertreceiver/overlays/moc/smaug/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/alertreceiver/overlays/moc/smaug/kustomization.yaml -------------------------------------------------------------------------------- /argocd-notifications/base/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/argocd-notifications/base/configmap.yaml -------------------------------------------------------------------------------- /argocd-notifications/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/argocd-notifications/base/kustomization.yaml -------------------------------------------------------------------------------- /argocd-notifications/overlays/infra/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/argocd-notifications/overlays/infra/kustomization.yaml -------------------------------------------------------------------------------- /argocd/base/deployments/argocd-dex-server_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/argocd/base/deployments/argocd-dex-server_patch.yaml -------------------------------------------------------------------------------- /argocd/base/deployments/argocd-redis_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/argocd/base/deployments/argocd-redis_patch.yaml -------------------------------------------------------------------------------- /argocd/base/deployments/argocd-repo-server_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/argocd/base/deployments/argocd-repo-server_patch.yaml -------------------------------------------------------------------------------- /argocd/base/deployments/argocd-server_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/argocd/base/deployments/argocd-server_patch.yaml -------------------------------------------------------------------------------- /argocd/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/argocd/base/kustomization.yaml -------------------------------------------------------------------------------- /argocd/base/routes/argocd_server_route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/argocd/base/routes/argocd_server_route.yaml -------------------------------------------------------------------------------- /argocd/base/service-monitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/argocd/base/service-monitor.yaml -------------------------------------------------------------------------------- /argocd/base/serviceaccounts/argocd-manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/argocd/base/serviceaccounts/argocd-manager.yaml -------------------------------------------------------------------------------- /argocd/base/services/argocd_metrics_service_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/argocd/base/services/argocd_metrics_service_patch.yaml -------------------------------------------------------------------------------- /argocd/cluster-resources/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/argocd/cluster-resources/kustomization.yaml -------------------------------------------------------------------------------- /argocd/overlays/moc-infra/alerts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/argocd/overlays/moc-infra/alerts.yaml -------------------------------------------------------------------------------- /argocd/overlays/moc-infra/applications/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/argocd/overlays/moc-infra/applications/kustomization.yaml -------------------------------------------------------------------------------- /argocd/overlays/moc-infra/configs/argo_cm/dex.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/argocd/overlays/moc-infra/configs/argo_cm/dex.config -------------------------------------------------------------------------------- /argocd/overlays/moc-infra/configs/argo_cm/envs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/argocd/overlays/moc-infra/configs/argo_cm/envs -------------------------------------------------------------------------------- /argocd/overlays/moc-infra/configs/argo_cm/globalProjects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/argocd/overlays/moc-infra/configs/argo_cm/globalProjects -------------------------------------------------------------------------------- /argocd/overlays/moc-infra/configs/argo_rbac_cm/policy.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/argocd/overlays/moc-infra/configs/argo_rbac_cm/policy.csv -------------------------------------------------------------------------------- /argocd/overlays/moc-infra/configs/argo_rbac_cm/policy.default: -------------------------------------------------------------------------------- 1 | role:readonly -------------------------------------------------------------------------------- /argocd/overlays/moc-infra/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/argocd/overlays/moc-infra/kustomization.yaml -------------------------------------------------------------------------------- /argocd/overlays/moc-infra/projects/apicurio-registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/argocd/overlays/moc-infra/projects/apicurio-registry.yaml -------------------------------------------------------------------------------- /argocd/overlays/moc-infra/projects/copilot-ops.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/argocd/overlays/moc-infra/projects/copilot-ops.yaml -------------------------------------------------------------------------------- /argocd/overlays/moc-infra/projects/data-science.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/argocd/overlays/moc-infra/projects/data-science.yaml -------------------------------------------------------------------------------- /argocd/overlays/moc-infra/projects/global_project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/argocd/overlays/moc-infra/projects/global_project.yaml -------------------------------------------------------------------------------- /argocd/overlays/moc-infra/projects/janus-idp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/argocd/overlays/moc-infra/projects/janus-idp.yaml -------------------------------------------------------------------------------- /argocd/overlays/moc-infra/projects/kruize.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/argocd/overlays/moc-infra/projects/kruize.yaml -------------------------------------------------------------------------------- /argocd/overlays/moc-infra/projects/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/argocd/overlays/moc-infra/projects/kustomization.yaml -------------------------------------------------------------------------------- /argocd/overlays/moc-infra/projects/lab-cicd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/argocd/overlays/moc-infra/projects/lab-cicd.yaml -------------------------------------------------------------------------------- /argocd/overlays/moc-infra/projects/mocops.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/argocd/overlays/moc-infra/projects/mocops.yaml -------------------------------------------------------------------------------- /argocd/overlays/moc-infra/projects/okd-team.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/argocd/overlays/moc-infra/projects/okd-team.yaml -------------------------------------------------------------------------------- /argocd/overlays/moc-infra/projects/operate-first.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/argocd/overlays/moc-infra/projects/operate-first.yaml -------------------------------------------------------------------------------- /argocd/overlays/moc-infra/projects/os-climate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/argocd/overlays/moc-infra/projects/os-climate.yaml -------------------------------------------------------------------------------- /argocd/overlays/moc-infra/projects/rekor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/argocd/overlays/moc-infra/projects/rekor.yaml -------------------------------------------------------------------------------- /argocd/overlays/moc-infra/projects/sostrades.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/argocd/overlays/moc-infra/projects/sostrades.yaml -------------------------------------------------------------------------------- /argocd/overlays/moc-infra/projects/thoth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/argocd/overlays/moc-infra/projects/thoth.yaml -------------------------------------------------------------------------------- /argocd/overlays/moc-infra/projects/tremor-demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/argocd/overlays/moc-infra/projects/tremor-demo.yaml -------------------------------------------------------------------------------- /argocd/overlays/moc-infra/routes/argocd-google.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/argocd/overlays/moc-infra/routes/argocd-google.yaml -------------------------------------------------------------------------------- /cert-manager/overlays/emea/jerry/api/certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cert-manager/overlays/emea/jerry/api/certificate.yaml -------------------------------------------------------------------------------- /cert-manager/overlays/emea/jerry/api/issuer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cert-manager/overlays/emea/jerry/api/issuer.yaml -------------------------------------------------------------------------------- /cert-manager/overlays/emea/jerry/api/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cert-manager/overlays/emea/jerry/api/kustomization.yaml -------------------------------------------------------------------------------- /cert-manager/overlays/emea/jerry/ingress/certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cert-manager/overlays/emea/jerry/ingress/certificate.yaml -------------------------------------------------------------------------------- /cert-manager/overlays/emea/jerry/ingress/issuer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cert-manager/overlays/emea/jerry/ingress/issuer.yaml -------------------------------------------------------------------------------- /cert-manager/overlays/emea/jerry/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cert-manager/overlays/emea/jerry/kustomization.yaml -------------------------------------------------------------------------------- /cert-manager/overlays/moc/curator/api/certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cert-manager/overlays/moc/curator/api/certificate.yaml -------------------------------------------------------------------------------- /cert-manager/overlays/moc/curator/api/issuer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cert-manager/overlays/moc/curator/api/issuer.yaml -------------------------------------------------------------------------------- /cert-manager/overlays/moc/curator/api/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cert-manager/overlays/moc/curator/api/kustomization.yaml -------------------------------------------------------------------------------- /cert-manager/overlays/moc/curator/ingress/issuer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cert-manager/overlays/moc/curator/ingress/issuer.yaml -------------------------------------------------------------------------------- /cert-manager/overlays/moc/curator/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cert-manager/overlays/moc/curator/kustomization.yaml -------------------------------------------------------------------------------- /cert-manager/overlays/moc/infra/api/certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cert-manager/overlays/moc/infra/api/certificate.yaml -------------------------------------------------------------------------------- /cert-manager/overlays/moc/infra/api/issuer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cert-manager/overlays/moc/infra/api/issuer.yaml -------------------------------------------------------------------------------- /cert-manager/overlays/moc/infra/api/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cert-manager/overlays/moc/infra/api/kustomization.yaml -------------------------------------------------------------------------------- /cert-manager/overlays/moc/infra/ingress/certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cert-manager/overlays/moc/infra/ingress/certificate.yaml -------------------------------------------------------------------------------- /cert-manager/overlays/moc/infra/ingress/issuer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cert-manager/overlays/moc/infra/ingress/issuer.yaml -------------------------------------------------------------------------------- /cert-manager/overlays/moc/infra/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cert-manager/overlays/moc/infra/kustomization.yaml -------------------------------------------------------------------------------- /cert-manager/overlays/moc/smaug/api/certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cert-manager/overlays/moc/smaug/api/certificate.yaml -------------------------------------------------------------------------------- /cert-manager/overlays/moc/smaug/api/issuer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cert-manager/overlays/moc/smaug/api/issuer.yaml -------------------------------------------------------------------------------- /cert-manager/overlays/moc/smaug/api/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cert-manager/overlays/moc/smaug/api/kustomization.yaml -------------------------------------------------------------------------------- /cert-manager/overlays/moc/smaug/ingress/certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cert-manager/overlays/moc/smaug/ingress/certificate.yaml -------------------------------------------------------------------------------- /cert-manager/overlays/moc/smaug/ingress/issuer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cert-manager/overlays/moc/smaug/ingress/issuer.yaml -------------------------------------------------------------------------------- /cert-manager/overlays/moc/smaug/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cert-manager/overlays/moc/smaug/kustomization.yaml -------------------------------------------------------------------------------- /cert-manager/overlays/osc/osc-cl1/api/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cert-manager/overlays/osc/osc-cl1/api/kustomization.yaml -------------------------------------------------------------------------------- /cert-manager/overlays/osc/osc-cl1/ingress/issuer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cert-manager/overlays/osc/osc-cl1/ingress/issuer.yaml -------------------------------------------------------------------------------- /cert-manager/overlays/osc/osc-cl1/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cert-manager/overlays/osc/osc-cl1/kustomization.yaml -------------------------------------------------------------------------------- /cloudbeaver/base/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cloudbeaver/base/deployment.yaml -------------------------------------------------------------------------------- /cloudbeaver/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cloudbeaver/base/kustomization.yaml -------------------------------------------------------------------------------- /cloudbeaver/base/persistentvolumeclaim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cloudbeaver/base/persistentvolumeclaim.yaml -------------------------------------------------------------------------------- /cloudbeaver/base/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cloudbeaver/base/route.yaml -------------------------------------------------------------------------------- /cloudbeaver/base/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cloudbeaver/base/service.yaml -------------------------------------------------------------------------------- /cloudbeaver/overlays/moc/smaug-stage/add_configs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cloudbeaver/overlays/moc/smaug-stage/add_configs.yaml -------------------------------------------------------------------------------- /cloudbeaver/overlays/moc/smaug-stage/configs/product.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cloudbeaver/overlays/moc/smaug-stage/configs/product.conf -------------------------------------------------------------------------------- /cloudbeaver/overlays/moc/smaug-stage/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cloudbeaver/overlays/moc/smaug-stage/kustomization.yaml -------------------------------------------------------------------------------- /cloudbeaver/overlays/moc/smaug/add_configs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cloudbeaver/overlays/moc/smaug/add_configs.yaml -------------------------------------------------------------------------------- /cloudbeaver/overlays/moc/smaug/configs/cloudbeaver.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cloudbeaver/overlays/moc/smaug/configs/cloudbeaver.conf -------------------------------------------------------------------------------- /cloudbeaver/overlays/moc/smaug/configs/initial-data.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cloudbeaver/overlays/moc/smaug/configs/initial-data.conf -------------------------------------------------------------------------------- /cloudbeaver/overlays/moc/smaug/configs/product.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cloudbeaver/overlays/moc/smaug/configs/product.conf -------------------------------------------------------------------------------- /cloudbeaver/overlays/moc/smaug/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cloudbeaver/overlays/moc/smaug/kustomization.yaml -------------------------------------------------------------------------------- /cloudbeaver/overlays/osc/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cloudbeaver/overlays/osc/OWNERS -------------------------------------------------------------------------------- /cloudbeaver/overlays/osc/osc-cl1/add_configs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cloudbeaver/overlays/osc/osc-cl1/add_configs.yaml -------------------------------------------------------------------------------- /cloudbeaver/overlays/osc/osc-cl1/configs/cloudbeaver.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cloudbeaver/overlays/osc/osc-cl1/configs/cloudbeaver.conf -------------------------------------------------------------------------------- /cloudbeaver/overlays/osc/osc-cl1/configs/product.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cloudbeaver/overlays/osc/osc-cl1/configs/product.conf -------------------------------------------------------------------------------- /cloudbeaver/overlays/osc/osc-cl1/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cloudbeaver/overlays/osc/osc-cl1/kustomization.yaml -------------------------------------------------------------------------------- /cloudbeaver/overlays/osc/osc-cl1/secure-route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cloudbeaver/overlays/osc/osc-cl1/secure-route.yaml -------------------------------------------------------------------------------- /cloudbeaver/overlays/osc/osc-cl2/add_configs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cloudbeaver/overlays/osc/osc-cl2/add_configs.yaml -------------------------------------------------------------------------------- /cloudbeaver/overlays/osc/osc-cl2/configs/cloudbeaver.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cloudbeaver/overlays/osc/osc-cl2/configs/cloudbeaver.conf -------------------------------------------------------------------------------- /cloudbeaver/overlays/osc/osc-cl2/configs/product.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cloudbeaver/overlays/osc/osc-cl2/configs/product.conf -------------------------------------------------------------------------------- /cloudbeaver/overlays/osc/osc-cl2/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cloudbeaver/overlays/osc/osc-cl2/kustomization.yaml -------------------------------------------------------------------------------- /cloudbeaver/overlays/osc/osc-cl2/secure-route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cloudbeaver/overlays/osc/osc-cl2/secure-route.yaml -------------------------------------------------------------------------------- /cluster-logging/base/clusterlogging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cluster-logging/base/clusterlogging.yaml -------------------------------------------------------------------------------- /cluster-logging/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cluster-logging/base/kustomization.yaml -------------------------------------------------------------------------------- /cluster-logging/base/rolebindings/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cluster-logging/base/rolebindings/kustomization.yaml -------------------------------------------------------------------------------- /cluster-logging/base/rolebindings/prometheus-k8s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cluster-logging/base/rolebindings/prometheus-k8s.yaml -------------------------------------------------------------------------------- /cluster-logging/base/roles/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cluster-logging/base/roles/kustomization.yaml -------------------------------------------------------------------------------- /cluster-logging/base/roles/prometheus-k8s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cluster-logging/base/roles/prometheus-k8s.yaml -------------------------------------------------------------------------------- /cluster-logging/overlays/dev/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cluster-logging/overlays/dev/kustomization.yaml -------------------------------------------------------------------------------- /cluster-logging/overlays/moc/infra/.sops.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cluster-logging/overlays/moc/infra/.sops.yaml -------------------------------------------------------------------------------- /cluster-logging/overlays/moc/infra/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cluster-logging/overlays/moc/infra/kustomization.yaml -------------------------------------------------------------------------------- /cluster-logging/overlays/moc/infra/secret-generator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cluster-logging/overlays/moc/infra/secret-generator.yaml -------------------------------------------------------------------------------- /cluster-logging/overlays/moc/smaug/.sops.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cluster-logging/overlays/moc/smaug/.sops.yaml -------------------------------------------------------------------------------- /cluster-logging/overlays/moc/smaug/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cluster-logging/overlays/moc/smaug/kustomization.yaml -------------------------------------------------------------------------------- /cluster-logging/overlays/moc/smaug/secret-generator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cluster-logging/overlays/moc/smaug/secret-generator.yaml -------------------------------------------------------------------------------- /cluster-scope/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cluster-scope/README.md -------------------------------------------------------------------------------- /cluster-scope/base/core/namespaces/acm/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cluster-scope/base/core/namespaces/acm/kustomization.yaml -------------------------------------------------------------------------------- /cluster-scope/base/core/namespaces/acm/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cluster-scope/base/core/namespaces/acm/namespace.yaml -------------------------------------------------------------------------------- /cluster-scope/base/core/namespaces/argocd/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cluster-scope/base/core/namespaces/argocd/namespace.yaml -------------------------------------------------------------------------------- /cluster-scope/base/core/namespaces/bragi/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cluster-scope/base/core/namespaces/bragi/namespace.yaml -------------------------------------------------------------------------------- /cluster-scope/base/core/namespaces/caas/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cluster-scope/base/core/namespaces/caas/namespace.yaml -------------------------------------------------------------------------------- /cluster-scope/base/core/namespaces/demolab/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cluster-scope/base/core/namespaces/demolab/namespace.yaml -------------------------------------------------------------------------------- /cluster-scope/base/core/namespaces/dex/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cluster-scope/base/core/namespaces/dex/kustomization.yaml -------------------------------------------------------------------------------- /cluster-scope/base/core/namespaces/dex/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cluster-scope/base/core/namespaces/dex/namespace.yaml -------------------------------------------------------------------------------- /cluster-scope/base/core/namespaces/fedora/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cluster-scope/base/core/namespaces/fedora/namespace.yaml -------------------------------------------------------------------------------- /cluster-scope/base/core/namespaces/kafka/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cluster-scope/base/core/namespaces/kafka/namespace.yaml -------------------------------------------------------------------------------- /cluster-scope/base/core/namespaces/kaoto/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cluster-scope/base/core/namespaces/kaoto/namespace.yaml -------------------------------------------------------------------------------- /cluster-scope/base/core/namespaces/lotus/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cluster-scope/base/core/namespaces/lotus/namespace.yaml -------------------------------------------------------------------------------- /cluster-scope/base/core/namespaces/okd-centos/namespace.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | apiVersion: v1 3 | kind: Namespace 4 | metadata: 5 | name: okd-centos 6 | -------------------------------------------------------------------------------- /cluster-scope/base/core/namespaces/sdap/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cluster-scope/base/core/namespaces/sdap/namespace.yaml -------------------------------------------------------------------------------- /cluster-scope/bundles/acme-operator/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cluster-scope/bundles/acme-operator/kustomization.yaml -------------------------------------------------------------------------------- /cluster-scope/bundles/cert-manager/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cluster-scope/bundles/cert-manager/kustomization.yaml -------------------------------------------------------------------------------- /cluster-scope/bundles/curator/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cluster-scope/bundles/curator/kustomization.yaml -------------------------------------------------------------------------------- /cluster-scope/bundles/kepler/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cluster-scope/bundles/kepler/kustomization.yaml -------------------------------------------------------------------------------- /cluster-scope/bundles/kfp-tekton/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cluster-scope/bundles/kfp-tekton/kustomization.yaml -------------------------------------------------------------------------------- /cluster-scope/bundles/nfd/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cluster-scope/bundles/nfd/kustomization.yaml -------------------------------------------------------------------------------- /cluster-scope/bundles/odf-external/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cluster-scope/bundles/odf-external/kustomization.yaml -------------------------------------------------------------------------------- /cluster-scope/bundles/odf/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cluster-scope/bundles/odf/kustomization.yaml -------------------------------------------------------------------------------- /cluster-scope/bundles/opf-vault/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cluster-scope/bundles/opf-vault/kustomization.yaml -------------------------------------------------------------------------------- /cluster-scope/bundles/ray-operator/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cluster-scope/bundles/ray-operator/kustomization.yaml -------------------------------------------------------------------------------- /cluster-scope/bundles/reloader/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cluster-scope/bundles/reloader/kustomization.yaml -------------------------------------------------------------------------------- /cluster-scope/bundles/tekton-chains/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cluster-scope/bundles/tekton-chains/kustomization.yaml -------------------------------------------------------------------------------- /cluster-scope/components/project-logs-reader/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cluster-scope/components/project-logs-reader/role.yaml -------------------------------------------------------------------------------- /cluster-scope/components/project-view-public/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cluster-scope/components/project-view-public/rbac.yaml -------------------------------------------------------------------------------- /cluster-scope/overlays/prod/common/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cluster-scope/overlays/prod/common/kustomization.yaml -------------------------------------------------------------------------------- /cluster-scope/overlays/prod/moc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cluster-scope/overlays/prod/moc/README.md -------------------------------------------------------------------------------- /cluster-scope/overlays/prod/moc/infra/.sops.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cluster-scope/overlays/prod/moc/infra/.sops.yaml -------------------------------------------------------------------------------- /cluster-scope/overlays/prod/moc/infra/oauth/oauth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cluster-scope/overlays/prod/moc/infra/oauth/oauth.yaml -------------------------------------------------------------------------------- /cluster-scope/overlays/prod/moc/smaug/.sops.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cluster-scope/overlays/prod/moc/smaug/.sops.yaml -------------------------------------------------------------------------------- /cluster-scope/overlays/prod/osc/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/cluster-scope/overlays/prod/osc/OWNERS -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/contributing.md -------------------------------------------------------------------------------- /curator-operator-system/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/curator-operator-system/base/kustomization.yaml -------------------------------------------------------------------------------- /das/base/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/das/base/configmap.yaml -------------------------------------------------------------------------------- /das/base/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/das/base/deployment.yaml -------------------------------------------------------------------------------- /das/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/das/base/kustomization.yaml -------------------------------------------------------------------------------- /das/base/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/das/base/route.yaml -------------------------------------------------------------------------------- /das/base/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/das/base/service.yaml -------------------------------------------------------------------------------- /das/overlays/osc-cl1/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/das/overlays/osc-cl1/configmap.yaml -------------------------------------------------------------------------------- /das/overlays/osc-cl1/externalsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/das/overlays/osc-cl1/externalsecret.yaml -------------------------------------------------------------------------------- /das/overlays/osc-cl1/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/das/overlays/osc-cl1/kustomization.yaml -------------------------------------------------------------------------------- /das/overlays/osc-cl2/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/das/overlays/osc-cl2/configmap.yaml -------------------------------------------------------------------------------- /das/overlays/osc-cl2/externalsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/das/overlays/osc-cl2/externalsecret.yaml -------------------------------------------------------------------------------- /das/overlays/osc-cl2/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/das/overlays/osc-cl2/kustomization.yaml -------------------------------------------------------------------------------- /dex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/dex/README.md -------------------------------------------------------------------------------- /dex/base/configmaps/files/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/dex/base/configmaps/files/config.yaml -------------------------------------------------------------------------------- /dex/base/configmaps/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/dex/base/configmaps/kustomization.yaml -------------------------------------------------------------------------------- /dex/base/deployments/dex-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/dex/base/deployments/dex-deployment.yaml -------------------------------------------------------------------------------- /dex/base/deployments/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/dex/base/deployments/kustomization.yaml -------------------------------------------------------------------------------- /dex/base/externalsecrets/dex-clients.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/dex/base/externalsecrets/dex-clients.yaml -------------------------------------------------------------------------------- /dex/base/externalsecrets/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/dex/base/externalsecrets/kustomization.yaml -------------------------------------------------------------------------------- /dex/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/dex/base/kustomization.yaml -------------------------------------------------------------------------------- /dex/base/routes/dex-route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/dex/base/routes/dex-route.yaml -------------------------------------------------------------------------------- /dex/base/routes/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/dex/base/routes/kustomization.yaml -------------------------------------------------------------------------------- /dex/base/secrets/dex-sa-token.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/dex/base/secrets/dex-sa-token.yaml -------------------------------------------------------------------------------- /dex/base/secrets/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/dex/base/secrets/kustomization.yaml -------------------------------------------------------------------------------- /dex/base/serviceaccounts/dex-sa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/dex/base/serviceaccounts/dex-sa.yaml -------------------------------------------------------------------------------- /dex/base/serviceaccounts/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/dex/base/serviceaccounts/kustomization.yaml -------------------------------------------------------------------------------- /dex/base/services/dex-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/dex/base/services/dex-service.yaml -------------------------------------------------------------------------------- /dex/base/services/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/dex/base/services/kustomization.yaml -------------------------------------------------------------------------------- /dex/overlays/moc/smaug/configmaps/files/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/dex/overlays/moc/smaug/configmaps/files/config.yaml -------------------------------------------------------------------------------- /dex/overlays/moc/smaug/configmaps/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/dex/overlays/moc/smaug/configmaps/kustomization.yaml -------------------------------------------------------------------------------- /dex/overlays/moc/smaug/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/dex/overlays/moc/smaug/kustomization.yaml -------------------------------------------------------------------------------- /dex/overlays/osc/.sops.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/dex/overlays/osc/.sops.yaml -------------------------------------------------------------------------------- /dex/overlays/osc/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/dex/overlays/osc/OWNERS -------------------------------------------------------------------------------- /dex/overlays/osc/osc-cl1-secondary/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/dex/overlays/osc/osc-cl1-secondary/kustomization.yaml -------------------------------------------------------------------------------- /dex/overlays/osc/osc-cl1/configmaps/files/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/dex/overlays/osc/osc-cl1/configmaps/files/config.yaml -------------------------------------------------------------------------------- /dex/overlays/osc/osc-cl1/configmaps/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/dex/overlays/osc/osc-cl1/configmaps/kustomization.yaml -------------------------------------------------------------------------------- /dex/overlays/osc/osc-cl1/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/dex/overlays/osc/osc-cl1/kustomization.yaml -------------------------------------------------------------------------------- /dex/overlays/osc/osc-cl2-secondary/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/dex/overlays/osc/osc-cl2-secondary/kustomization.yaml -------------------------------------------------------------------------------- /dex/overlays/osc/osc-cl2/configmaps/files/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/dex/overlays/osc/osc-cl2/configmaps/files/config.yaml -------------------------------------------------------------------------------- /dex/overlays/osc/osc-cl2/configmaps/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/dex/overlays/osc/osc-cl2/configmaps/kustomization.yaml -------------------------------------------------------------------------------- /dex/overlays/osc/osc-cl2/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/dex/overlays/osc/osc-cl2/kustomization.yaml -------------------------------------------------------------------------------- /dns/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/dns/OWNERS -------------------------------------------------------------------------------- /dns/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/dns/README.md -------------------------------------------------------------------------------- /dns/emea-operate-first.zone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/dns/emea-operate-first.zone -------------------------------------------------------------------------------- /dns/na-operate-first.zone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/dns/na-operate-first.zone -------------------------------------------------------------------------------- /dns/operate-first.zone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/dns/operate-first.zone -------------------------------------------------------------------------------- /dns/operatefirst.zone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/dns/operatefirst.zone -------------------------------------------------------------------------------- /dns/zones.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/dns/zones.txt -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/_toc.yml -------------------------------------------------------------------------------- /docs/content/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/README.md -------------------------------------------------------------------------------- /docs/content/acm/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/acm/docs/README.md -------------------------------------------------------------------------------- /docs/content/acm/mkdocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/acm/mkdocs.yaml -------------------------------------------------------------------------------- /docs/content/acme/docs/README.md: -------------------------------------------------------------------------------- 1 | # ACME 2 | -------------------------------------------------------------------------------- /docs/content/acme/docs/issuing_certificates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/acme/docs/issuing_certificates.md -------------------------------------------------------------------------------- /docs/content/acme/mkdocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/acme/mkdocs.yaml -------------------------------------------------------------------------------- /docs/content/argocd-gitops/docs/README.md: -------------------------------------------------------------------------------- 1 | # ArgoCD 2 | -------------------------------------------------------------------------------- /docs/content/argocd-gitops/docs/add_application.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/argocd-gitops/docs/add_application.md -------------------------------------------------------------------------------- /docs/content/argocd-gitops/docs/secret_management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/argocd-gitops/docs/secret_management.md -------------------------------------------------------------------------------- /docs/content/argocd-gitops/docs/update_argocd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/argocd-gitops/docs/update_argocd.md -------------------------------------------------------------------------------- /docs/content/argocd-gitops/key.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/argocd-gitops/key.asc -------------------------------------------------------------------------------- /docs/content/argocd-gitops/mkdocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/argocd-gitops/mkdocs.yaml -------------------------------------------------------------------------------- /docs/content/cluster-scope/docs/README.md: -------------------------------------------------------------------------------- 1 | # Cluster Management 2 | -------------------------------------------------------------------------------- /docs/content/cluster-scope/docs/add_user_to_group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/cluster-scope/docs/add_user_to_group.md -------------------------------------------------------------------------------- /docs/content/cluster-scope/docs/create_ocp_group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/cluster-scope/docs/create_ocp_group.md -------------------------------------------------------------------------------- /docs/content/cluster-scope/docs/offboarding_cluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/cluster-scope/docs/offboarding_cluster.md -------------------------------------------------------------------------------- /docs/content/cluster-scope/docs/onboarding_project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/cluster-scope/docs/onboarding_project.md -------------------------------------------------------------------------------- /docs/content/cluster-scope/docs/quotas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/cluster-scope/docs/quotas.md -------------------------------------------------------------------------------- /docs/content/cluster-scope/mkdocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/cluster-scope/mkdocs.yaml -------------------------------------------------------------------------------- /docs/content/development/assets/bundle_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/development/assets/bundle_select.png -------------------------------------------------------------------------------- /docs/content/development/assets/cluster_log_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/development/assets/cluster_log_1.png -------------------------------------------------------------------------------- /docs/content/development/assets/cluster_log_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/development/assets/cluster_log_2.png -------------------------------------------------------------------------------- /docs/content/development/assets/template_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/development/assets/template_select.png -------------------------------------------------------------------------------- /docs/content/development/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/development/docs/README.md -------------------------------------------------------------------------------- /docs/content/development/docs/crc-disk-size.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/development/docs/crc-disk-size.md -------------------------------------------------------------------------------- /docs/content/development/docs/setup_quicklab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/development/docs/setup_quicklab.md -------------------------------------------------------------------------------- /docs/content/development/mkdocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/development/mkdocs.yaml -------------------------------------------------------------------------------- /docs/content/grafana/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/grafana/docs/README.md -------------------------------------------------------------------------------- /docs/content/grafana/docs/add_grafana_dashboard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/grafana/docs/add_grafana_dashboard.md -------------------------------------------------------------------------------- /docs/content/grafana/docs/img/share-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/grafana/docs/img/share-icon.png -------------------------------------------------------------------------------- /docs/content/grafana/docs/map_groups_to_roles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/grafana/docs/map_groups_to_roles.md -------------------------------------------------------------------------------- /docs/content/grafana/mkdocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/grafana/mkdocs.yaml -------------------------------------------------------------------------------- /docs/content/jaeger/docs/README.md: -------------------------------------------------------------------------------- 1 | # Jaeger 2 | -------------------------------------------------------------------------------- /docs/content/jaeger/mkdocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/jaeger/mkdocs.yaml -------------------------------------------------------------------------------- /docs/content/kafka/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/kafka/docs/README.md -------------------------------------------------------------------------------- /docs/content/kafka/docs/add_kafka_topics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/kafka/docs/add_kafka_topics.md -------------------------------------------------------------------------------- /docs/content/kafka/docs/add_kafka_users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/kafka/docs/add_kafka_users.md -------------------------------------------------------------------------------- /docs/content/kafka/docs/runbook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/kafka/docs/runbook.md -------------------------------------------------------------------------------- /docs/content/kafka/mkdocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/kafka/mkdocs.yaml -------------------------------------------------------------------------------- /docs/content/kubeval/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/kubeval/docs/README.md -------------------------------------------------------------------------------- /docs/content/kubeval/docs/updating_schema_store.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/kubeval/docs/updating_schema_store.md -------------------------------------------------------------------------------- /docs/content/kubeval/mkdocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/kubeval/mkdocs.yaml -------------------------------------------------------------------------------- /docs/content/notebooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/notebooks/README.md -------------------------------------------------------------------------------- /docs/content/notebooks/img/jh-gitopsbook-cellblock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/notebooks/img/jh-gitopsbook-cellblock.png -------------------------------------------------------------------------------- /docs/content/notebooks/img/jh-gitopsbook-path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/notebooks/img/jh-gitopsbook-path.png -------------------------------------------------------------------------------- /docs/content/notebooks/img/jh-spawner-gitopsbook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/notebooks/img/jh-spawner-gitopsbook.png -------------------------------------------------------------------------------- /docs/content/notebooks/increase_pvc_size.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/notebooks/increase_pvc_size.ipynb -------------------------------------------------------------------------------- /docs/content/notebooks/onboarding_new_cluster.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/notebooks/onboarding_new_cluster.ipynb -------------------------------------------------------------------------------- /docs/content/notebooks/onboarding_project.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/notebooks/onboarding_project.ipynb -------------------------------------------------------------------------------- /docs/content/observatorium/docs/README.md: -------------------------------------------------------------------------------- 1 | # Observatorium 2 | -------------------------------------------------------------------------------- /docs/content/observatorium/docs/loki/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/observatorium/docs/loki/README.md -------------------------------------------------------------------------------- /docs/content/observatorium/docs/loki/loki_grafana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/observatorium/docs/loki/loki_grafana.png -------------------------------------------------------------------------------- /docs/content/observatorium/docs/loki/loki_query_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/observatorium/docs/loki/loki_query_api.md -------------------------------------------------------------------------------- /docs/content/observatorium/docs/thanos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/observatorium/docs/thanos/README.md -------------------------------------------------------------------------------- /docs/content/observatorium/docs/vector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/observatorium/docs/vector/README.md -------------------------------------------------------------------------------- /docs/content/observatorium/mkdocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/observatorium/mkdocs.yaml -------------------------------------------------------------------------------- /docs/content/odf/docs/README.md: -------------------------------------------------------------------------------- 1 | # OpenShift Data Foundation 2 | -------------------------------------------------------------------------------- /docs/content/odf/docs/buckets-external-access.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/odf/docs/buckets-external-access.md -------------------------------------------------------------------------------- /docs/content/odf/docs/claiming_object_store.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/odf/docs/claiming_object_store.md -------------------------------------------------------------------------------- /docs/content/odf/docs/runbook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/odf/docs/runbook.md -------------------------------------------------------------------------------- /docs/content/odf/mkdocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/odf/mkdocs.yaml -------------------------------------------------------------------------------- /docs/content/odh/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/odh/docs/README.md -------------------------------------------------------------------------------- /docs/content/odh/docs/adding_kfdefs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/odh/docs/adding_kfdefs.md -------------------------------------------------------------------------------- /docs/content/odh/docs/jupyterhub/README.md: -------------------------------------------------------------------------------- 1 | # JupyterHub 2 | -------------------------------------------------------------------------------- /docs/content/odh/docs/jupyterhub/access_jupyterhub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/odh/docs/jupyterhub/access_jupyterhub.md -------------------------------------------------------------------------------- /docs/content/odh/docs/jupyterhub/analyze_storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/odh/docs/jupyterhub/analyze_storage.md -------------------------------------------------------------------------------- /docs/content/odh/docs/jupyterhub/reinstall_kernel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/odh/docs/jupyterhub/reinstall_kernel.md -------------------------------------------------------------------------------- /docs/content/odh/docs/jupyterhub/runbook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/odh/docs/jupyterhub/runbook.md -------------------------------------------------------------------------------- /docs/content/odh/docs/jupyterhub/user_profiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/odh/docs/jupyterhub/user_profiles.md -------------------------------------------------------------------------------- /docs/content/odh/docs/seldon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/odh/docs/seldon/README.md -------------------------------------------------------------------------------- /docs/content/odh/docs/superset/README.md: -------------------------------------------------------------------------------- 1 | # Superset 2 | -------------------------------------------------------------------------------- /docs/content/odh/docs/superset/add_superset_users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/odh/docs/superset/add_superset_users.md -------------------------------------------------------------------------------- /docs/content/odh/docs/superset/add_trino_db.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/odh/docs/superset/add_trino_db.md -------------------------------------------------------------------------------- /docs/content/odh/docs/superset/img/nouser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/odh/docs/superset/img/nouser.png -------------------------------------------------------------------------------- /docs/content/odh/docs/superset/map_groups_to_roles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/odh/docs/superset/map_groups_to_roles.md -------------------------------------------------------------------------------- /docs/content/odh/docs/superset/runbook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/odh/docs/superset/runbook.md -------------------------------------------------------------------------------- /docs/content/odh/docs/trino/README.md: -------------------------------------------------------------------------------- 1 | # Trino 2 | -------------------------------------------------------------------------------- /docs/content/odh/docs/trino/access_public_bucket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/odh/docs/trino/access_public_bucket.md -------------------------------------------------------------------------------- /docs/content/odh/docs/trino/add_more_buckets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/odh/docs/trino/add_more_buckets.md -------------------------------------------------------------------------------- /docs/content/odh/mkdocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/odh/mkdocs.yaml -------------------------------------------------------------------------------- /docs/content/openmetadata/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/openmetadata/docs/README.md -------------------------------------------------------------------------------- /docs/content/openmetadata/docs/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/openmetadata/docs/deployment.md -------------------------------------------------------------------------------- /docs/content/openmetadata/docs/updating_om.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/openmetadata/docs/updating_om.md -------------------------------------------------------------------------------- /docs/content/openmetadata/mkdocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/openmetadata/mkdocs.yaml -------------------------------------------------------------------------------- /docs/content/opentelemetry-collector/docs/README.md: -------------------------------------------------------------------------------- 1 | # OpenTelemetry Collector 2 | -------------------------------------------------------------------------------- /docs/content/opentelemetry-collector/mkdocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/opentelemetry-collector/mkdocs.yaml -------------------------------------------------------------------------------- /docs/content/prometheus/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/prometheus/docs/README.md -------------------------------------------------------------------------------- /docs/content/prometheus/mkdocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/prometheus/mkdocs.yaml -------------------------------------------------------------------------------- /docs/content/reloader/docs/README.md: -------------------------------------------------------------------------------- 1 | # Reloader 2 | -------------------------------------------------------------------------------- /docs/content/reloader/mkdocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/reloader/mkdocs.yaml -------------------------------------------------------------------------------- /docs/content/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/templates/README.md -------------------------------------------------------------------------------- /docs/content/templates/runbook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/templates/runbook.md -------------------------------------------------------------------------------- /docs/content/uwm/docs/README.md: -------------------------------------------------------------------------------- 1 | # User WorkLoad Monitoring 2 | -------------------------------------------------------------------------------- /docs/content/uwm/docs/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/uwm/docs/overview.md -------------------------------------------------------------------------------- /docs/content/uwm/mkdocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/uwm/mkdocs.yaml -------------------------------------------------------------------------------- /docs/content/vault_eso/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/vault_eso/docs/README.md -------------------------------------------------------------------------------- /docs/content/vault_eso/docs/create_external_secret.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/vault_eso/docs/create_external_secret.md -------------------------------------------------------------------------------- /docs/content/vault_eso/docs/enable_es_in_namespace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/vault_eso/docs/enable_es_in_namespace.md -------------------------------------------------------------------------------- /docs/content/vault_eso/docs/onboard_team_to_vault.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/vault_eso/docs/onboard_team_to_vault.md -------------------------------------------------------------------------------- /docs/content/vault_eso/docs/restore_vault.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/vault_eso/docs/restore_vault.md -------------------------------------------------------------------------------- /docs/content/vault_eso/docs/runbook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/vault_eso/docs/runbook.md -------------------------------------------------------------------------------- /docs/content/vault_eso/docs/unsealing_vault.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/vault_eso/docs/unsealing_vault.md -------------------------------------------------------------------------------- /docs/content/vault_eso/docs/vault_backup_job.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/vault_eso/docs/vault_backup_job.md -------------------------------------------------------------------------------- /docs/content/vault_eso/docs/write_to_vault_with_k8s.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/vault_eso/docs/write_to_vault_with_k8s.md -------------------------------------------------------------------------------- /docs/content/vault_eso/mkdocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/content/vault_eso/mkdocs.yaml -------------------------------------------------------------------------------- /docs/content/volsync/docs/README.md: -------------------------------------------------------------------------------- 1 | # Volsync 2 | -------------------------------------------------------------------------------- /docs/img/apps_repo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/img/apps_repo.png -------------------------------------------------------------------------------- /docs/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/img/favicon.png -------------------------------------------------------------------------------- /docs/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/docs/img/icon.png -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | jupyter-book 2 | -------------------------------------------------------------------------------- /external-secrets/base/eso.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/external-secrets/base/eso.yaml -------------------------------------------------------------------------------- /external-secrets/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/external-secrets/base/kustomization.yaml -------------------------------------------------------------------------------- /external-secrets/base/serviceaccount.yaml: -------------------------------------------------------------------------------- 1 | kind: ServiceAccount 2 | apiVersion: v1 3 | metadata: 4 | name: eso-vault-auth 5 | -------------------------------------------------------------------------------- /external-secrets/overlays/moc/infra/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/external-secrets/overlays/moc/infra/kustomization.yaml -------------------------------------------------------------------------------- /external-secrets/overlays/moc/smaug/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/external-secrets/overlays/moc/smaug/kustomization.yaml -------------------------------------------------------------------------------- /fake-metrics-server/base/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/fake-metrics-server/base/deployment.yaml -------------------------------------------------------------------------------- /fake-metrics-server/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/fake-metrics-server/base/kustomization.yaml -------------------------------------------------------------------------------- /fake-metrics-server/base/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/fake-metrics-server/base/service.yaml -------------------------------------------------------------------------------- /grafana/base/grafana-datasource-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/grafana/base/grafana-datasource-serviceaccount.yaml -------------------------------------------------------------------------------- /grafana/base/grafana-route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/grafana/base/grafana-route.yaml -------------------------------------------------------------------------------- /grafana/base/grafana.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/grafana/base/grafana.yaml -------------------------------------------------------------------------------- /grafana/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/grafana/base/kustomization.yaml -------------------------------------------------------------------------------- /grafana/base/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/grafana/base/servicemonitor.yaml -------------------------------------------------------------------------------- /grafana/overlays/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/grafana/overlays/common/README.md -------------------------------------------------------------------------------- /grafana/overlays/common/dashboards/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/grafana/overlays/common/dashboards/kustomization.yaml -------------------------------------------------------------------------------- /grafana/overlays/common/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/grafana/overlays/common/kustomization.yaml -------------------------------------------------------------------------------- /grafana/overlays/moc/common/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/grafana/overlays/moc/common/kustomization.yaml -------------------------------------------------------------------------------- /grafana/overlays/moc/smaug-public/grafana-public.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/grafana/overlays/moc/smaug-public/grafana-public.yaml -------------------------------------------------------------------------------- /grafana/overlays/moc/smaug-public/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/grafana/overlays/moc/smaug-public/kustomization.yaml -------------------------------------------------------------------------------- /grafana/overlays/moc/smaug-public/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/grafana/overlays/moc/smaug-public/servicemonitor.yaml -------------------------------------------------------------------------------- /grafana/overlays/moc/smaug/grafana-oauth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/grafana/overlays/moc/smaug/grafana-oauth.yaml -------------------------------------------------------------------------------- /grafana/overlays/moc/smaug/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/grafana/overlays/moc/smaug/kustomization.yaml -------------------------------------------------------------------------------- /grafana/overlays/moc/smaug/route_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/grafana/overlays/moc/smaug/route_patch.yaml -------------------------------------------------------------------------------- /grafana/overlays/osc/common/dashboards/kepler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/grafana/overlays/osc/common/dashboards/kepler.yaml -------------------------------------------------------------------------------- /grafana/overlays/osc/common/grafana_oauth_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/grafana/overlays/osc/common/grafana_oauth_patch.yaml -------------------------------------------------------------------------------- /grafana/overlays/osc/common/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/grafana/overlays/osc/common/kustomization.yaml -------------------------------------------------------------------------------- /grafana/overlays/osc/osc-cl1/grafana_oauth_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/grafana/overlays/osc/osc-cl1/grafana_oauth_patch.yaml -------------------------------------------------------------------------------- /grafana/overlays/osc/osc-cl1/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/grafana/overlays/osc/osc-cl1/kustomization.yaml -------------------------------------------------------------------------------- /grafana/overlays/osc/osc-cl2/grafana_oauth_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/grafana/overlays/osc/osc-cl2/grafana_oauth_patch.yaml -------------------------------------------------------------------------------- /grafana/overlays/osc/osc-cl2/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/grafana/overlays/osc/osc-cl2/kustomization.yaml -------------------------------------------------------------------------------- /inception/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/inception/README.md -------------------------------------------------------------------------------- /inception/base/deployments/inception-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/inception/base/deployments/inception-deployment.yaml -------------------------------------------------------------------------------- /inception/base/deployments/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/inception/base/deployments/kustomization.yaml -------------------------------------------------------------------------------- /inception/base/deployments/proxy-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/inception/base/deployments/proxy-deployment.yaml -------------------------------------------------------------------------------- /inception/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/inception/base/kustomization.yaml -------------------------------------------------------------------------------- /inception/base/routes/inception-route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/inception/base/routes/inception-route.yaml -------------------------------------------------------------------------------- /inception/base/routes/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/inception/base/routes/kustomization.yaml -------------------------------------------------------------------------------- /inception/base/secrets/inception-proxy.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | apiVersion: v1 3 | kind: Secret 4 | metadata: 5 | name: inception-proxy 6 | -------------------------------------------------------------------------------- /inception/base/secrets/inception-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/inception/base/secrets/inception-secrets.yaml -------------------------------------------------------------------------------- /inception/base/secrets/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/inception/base/secrets/kustomization.yaml -------------------------------------------------------------------------------- /inception/base/services/inception-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/inception/base/services/inception-service.yaml -------------------------------------------------------------------------------- /inception/base/services/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/inception/base/services/kustomization.yaml -------------------------------------------------------------------------------- /inception/base/services/proxy-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/inception/base/services/proxy-service.yaml -------------------------------------------------------------------------------- /inception/overlays/osc/osc-cl1/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/inception/overlays/osc/osc-cl1/kustomization.yaml -------------------------------------------------------------------------------- /inception/overlays/osc/osc-cl2/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/inception/overlays/osc/osc-cl2/kustomization.yaml -------------------------------------------------------------------------------- /jupyterhub-idle-culler/base/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/jupyterhub-idle-culler/base/deployment.yaml -------------------------------------------------------------------------------- /jupyterhub-idle-culler/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/jupyterhub-idle-culler/base/kustomization.yaml -------------------------------------------------------------------------------- /k8s-annotations-exporter/base/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/k8s-annotations-exporter/base/deployment.yaml -------------------------------------------------------------------------------- /k8s-annotations-exporter/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/k8s-annotations-exporter/base/kustomization.yaml -------------------------------------------------------------------------------- /k8s-annotations-exporter/base/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/k8s-annotations-exporter/base/service.yaml -------------------------------------------------------------------------------- /k8s-annotations-exporter/base/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/k8s-annotations-exporter/base/serviceaccount.yaml -------------------------------------------------------------------------------- /k8s-annotations-exporter/base/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/k8s-annotations-exporter/base/servicemonitor.yaml -------------------------------------------------------------------------------- /kafka/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kafka/base/kustomization.yaml -------------------------------------------------------------------------------- /kafka/base/opf-kafdrop-route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kafka/base/opf-kafdrop-route.yaml -------------------------------------------------------------------------------- /kafka/base/opf-kafdrop-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kafka/base/opf-kafdrop-service.yaml -------------------------------------------------------------------------------- /kafka/base/opf-kafdrop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kafka/base/opf-kafdrop.yaml -------------------------------------------------------------------------------- /kafka/base/opf-kafka-metrics-configmaps.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kafka/base/opf-kafka-metrics-configmaps.yaml -------------------------------------------------------------------------------- /kafka/base/opf-kafka.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kafka/base/opf-kafka.yaml -------------------------------------------------------------------------------- /kafka/overlays/osc/osc-cl2/kafka/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kafka/overlays/osc/osc-cl2/kafka/kustomization.yaml -------------------------------------------------------------------------------- /kafka/overlays/osc/osc-cl2/kafka/my-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kafka/overlays/osc/osc-cl2/kafka/my-cluster.yaml -------------------------------------------------------------------------------- /kafka/overlays/osc/osc-cl2/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kafka/overlays/osc/osc-cl2/kustomization.yaml -------------------------------------------------------------------------------- /kafka/overlays/osc/osc-cl2/topics/ecb-fx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kafka/overlays/osc/osc-cl2/topics/ecb-fx.yaml -------------------------------------------------------------------------------- /kafka/overlays/osc/osc-cl2/topics/kepler-metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kafka/overlays/osc/osc-cl2/topics/kepler-metrics.yaml -------------------------------------------------------------------------------- /kafka/overlays/osc/osc-cl2/topics/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kafka/overlays/osc/osc-cl2/topics/kustomization.yaml -------------------------------------------------------------------------------- /kafka/overlays/osc/osc-cl2/topics/my-topic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kafka/overlays/osc/osc-cl2/topics/my-topic.yaml -------------------------------------------------------------------------------- /kafka/overlays/smaug/kafka-podmonitors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kafka/overlays/smaug/kafka-podmonitors.yaml -------------------------------------------------------------------------------- /kafka/overlays/smaug/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kafka/overlays/smaug/kustomization.yaml -------------------------------------------------------------------------------- /kafka/overlays/smaug/opf-kafdrop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kafka/overlays/smaug/opf-kafdrop.yaml -------------------------------------------------------------------------------- /kafka/overlays/smaug/topics/ddas-commands.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kafka/overlays/smaug/topics/ddas-commands.yaml -------------------------------------------------------------------------------- /kafka/overlays/smaug/topics/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kafka/overlays/smaug/topics/kustomization.yaml -------------------------------------------------------------------------------- /kafka/overlays/smaug/topics/smartvillage-sumo-run.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kafka/overlays/smaug/topics/smartvillage-sumo-run.yaml -------------------------------------------------------------------------------- /kafka/overlays/smaug/topics/thoth-adviser-trigger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kafka/overlays/smaug/topics/thoth-adviser-trigger.yaml -------------------------------------------------------------------------------- /kafka/overlays/smaug/topics/thoth-cve-provided.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kafka/overlays/smaug/topics/thoth-cve-provided.yaml -------------------------------------------------------------------------------- /kafka/overlays/smaug/topics/thoth-hash-mismatch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kafka/overlays/smaug/topics/thoth-hash-mismatch.yaml -------------------------------------------------------------------------------- /kafka/overlays/smaug/topics/thoth-missing-package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kafka/overlays/smaug/topics/thoth-missing-package.yaml -------------------------------------------------------------------------------- /kafka/overlays/smaug/topics/thoth-qebhwt-trigger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kafka/overlays/smaug/topics/thoth-qebhwt-trigger.yaml -------------------------------------------------------------------------------- /kafka/overlays/smaug/topics/thoth-solved-package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kafka/overlays/smaug/topics/thoth-solved-package.yaml -------------------------------------------------------------------------------- /kafka/overlays/smaug/users/audio-decoder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kafka/overlays/smaug/users/audio-decoder.yaml -------------------------------------------------------------------------------- /kafka/overlays/smaug/users/cluster-logging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kafka/overlays/smaug/users/cluster-logging.yaml -------------------------------------------------------------------------------- /kafka/overlays/smaug/users/ddas.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kafka/overlays/smaug/users/ddas.yaml -------------------------------------------------------------------------------- /kafka/overlays/smaug/users/emea-sa-od-demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kafka/overlays/smaug/users/emea-sa-od-demo.yaml -------------------------------------------------------------------------------- /kafka/overlays/smaug/users/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kafka/overlays/smaug/users/kustomization.yaml -------------------------------------------------------------------------------- /kafka/overlays/smaug/users/opf-public-demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kafka/overlays/smaug/users/opf-public-demo.yaml -------------------------------------------------------------------------------- /kafka/overlays/smaug/users/smartvillage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kafka/overlays/smaug/users/smartvillage.yaml -------------------------------------------------------------------------------- /kafka/overlays/smaug/users/thoth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kafka/overlays/smaug/users/thoth.yaml -------------------------------------------------------------------------------- /kepler/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kepler/base/kustomization.yaml -------------------------------------------------------------------------------- /kepler/base/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kepler/base/service.yaml -------------------------------------------------------------------------------- /kepler/base/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kepler/base/serviceaccount.yaml -------------------------------------------------------------------------------- /kepler/base/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kepler/base/servicemonitor.yaml -------------------------------------------------------------------------------- /kepler/overlays/osc/osc-cl1/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kepler/overlays/osc/osc-cl1/kustomization.yaml -------------------------------------------------------------------------------- /kepler/overlays/osc/osc-cl2/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kepler/overlays/osc/osc-cl2/kustomization.yaml -------------------------------------------------------------------------------- /kfdefs/base/jupyterhub/notebook-images/ope.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/base/jupyterhub/notebook-images/ope.yaml -------------------------------------------------------------------------------- /kfdefs/base/jupyterhub/notebook-images/ucsls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/base/jupyterhub/notebook-images/ucsls.yaml -------------------------------------------------------------------------------- /kfdefs/base/trino/hive-metastore-template/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/base/trino/hive-metastore-template/service.yaml -------------------------------------------------------------------------------- /kfdefs/overlays/moc/smaug/argo/kfdef.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/overlays/moc/smaug/argo/kfdef.yaml -------------------------------------------------------------------------------- /kfdefs/overlays/moc/smaug/argo/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/overlays/moc/smaug/argo/kustomization.yaml -------------------------------------------------------------------------------- /kfdefs/overlays/moc/smaug/argo/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/overlays/moc/smaug/argo/servicemonitor.yaml -------------------------------------------------------------------------------- /kfdefs/overlays/moc/smaug/dashboard/kfdef.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/overlays/moc/smaug/dashboard/kfdef.yaml -------------------------------------------------------------------------------- /kfdefs/overlays/moc/smaug/dashboard/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/overlays/moc/smaug/dashboard/kustomization.yaml -------------------------------------------------------------------------------- /kfdefs/overlays/moc/smaug/dashboard/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/overlays/moc/smaug/dashboard/route.yaml -------------------------------------------------------------------------------- /kfdefs/overlays/moc/smaug/jupyterhub-stage/kfdef.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/overlays/moc/smaug/jupyterhub-stage/kfdef.yaml -------------------------------------------------------------------------------- /kfdefs/overlays/moc/smaug/jupyterhub/alerts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/overlays/moc/smaug/jupyterhub/alerts.yaml -------------------------------------------------------------------------------- /kfdefs/overlays/moc/smaug/jupyterhub/kfdef.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/overlays/moc/smaug/jupyterhub/kfdef.yaml -------------------------------------------------------------------------------- /kfdefs/overlays/moc/smaug/jupyterhub/pvcs/antter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/overlays/moc/smaug/jupyterhub/pvcs/antter.yaml -------------------------------------------------------------------------------- /kfdefs/overlays/moc/smaug/jupyterhub/pvcs/guyelf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/overlays/moc/smaug/jupyterhub/pvcs/guyelf.yaml -------------------------------------------------------------------------------- /kfdefs/overlays/moc/smaug/jupyterhub/pvcs/hemajv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/overlays/moc/smaug/jupyterhub/pvcs/hemajv.yaml -------------------------------------------------------------------------------- /kfdefs/overlays/moc/smaug/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/overlays/moc/smaug/kustomization.yaml -------------------------------------------------------------------------------- /kfdefs/overlays/moc/smaug/seldon/alerts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/overlays/moc/smaug/seldon/alerts.yaml -------------------------------------------------------------------------------- /kfdefs/overlays/moc/smaug/seldon/kfdef.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/overlays/moc/smaug/seldon/kfdef.yaml -------------------------------------------------------------------------------- /kfdefs/overlays/moc/smaug/seldon/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/overlays/moc/smaug/seldon/kustomization.yaml -------------------------------------------------------------------------------- /kfdefs/overlays/moc/smaug/superset/kfdef.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/overlays/moc/smaug/superset/kfdef.yaml -------------------------------------------------------------------------------- /kfdefs/overlays/moc/smaug/superset/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/overlays/moc/smaug/superset/kustomization.yaml -------------------------------------------------------------------------------- /kfdefs/overlays/moc/smaug/trino-stage/.sops.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/overlays/moc/smaug/trino-stage/.sops.yaml -------------------------------------------------------------------------------- /kfdefs/overlays/moc/smaug/trino-stage/configs/jmx.properties: -------------------------------------------------------------------------------- 1 | connector.name=jmx 2 | -------------------------------------------------------------------------------- /kfdefs/overlays/moc/smaug/trino-stage/configs/log.properties: -------------------------------------------------------------------------------- 1 | io.trino=INFO 2 | -------------------------------------------------------------------------------- /kfdefs/overlays/moc/smaug/trino-stage/configs/password.db: -------------------------------------------------------------------------------- 1 | admin:$2y$10$k9hdrLXH5OGLz4xbuTqzFOTKHX7EFazUMQaprckCbj.EW8nCBIPEe 2 | -------------------------------------------------------------------------------- /kfdefs/overlays/moc/smaug/trino-stage/kfdef.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/overlays/moc/smaug/trino-stage/kfdef.yaml -------------------------------------------------------------------------------- /kfdefs/overlays/moc/smaug/trino/alerts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/overlays/moc/smaug/trino/alerts.yaml -------------------------------------------------------------------------------- /kfdefs/overlays/moc/smaug/trino/configs/jmx.properties: -------------------------------------------------------------------------------- 1 | connector.name=jmx 2 | -------------------------------------------------------------------------------- /kfdefs/overlays/moc/smaug/trino/configs/log.properties: -------------------------------------------------------------------------------- 1 | io.trino=INFO 2 | -------------------------------------------------------------------------------- /kfdefs/overlays/moc/smaug/trino/configs/password.db: -------------------------------------------------------------------------------- 1 | admin:$2y$10$M60fHfWagldcNdZyx1QKU.L9J3mkSxM02FlOAeF3qqAWu3wolbqGK 2 | -------------------------------------------------------------------------------- /kfdefs/overlays/moc/smaug/trino/kfdef.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/overlays/moc/smaug/trino/kfdef.yaml -------------------------------------------------------------------------------- /kfdefs/overlays/moc/smaug/trino/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/overlays/moc/smaug/trino/kustomization.yaml -------------------------------------------------------------------------------- /kfdefs/overlays/moc/smaug/trino/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/overlays/moc/smaug/trino/servicemonitor.yaml -------------------------------------------------------------------------------- /kfdefs/overlays/moc/smaug/trino/vpa/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/overlays/moc/smaug/trino/vpa/kustomization.yaml -------------------------------------------------------------------------------- /kfdefs/overlays/osc/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/overlays/osc/OWNERS -------------------------------------------------------------------------------- /kfdefs/overlays/osc/osc-cl1/cnbi/kfdef.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/overlays/osc/osc-cl1/cnbi/kfdef.yaml -------------------------------------------------------------------------------- /kfdefs/overlays/osc/osc-cl1/cnbi/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/overlays/osc/osc-cl1/cnbi/kustomization.yaml -------------------------------------------------------------------------------- /kfdefs/overlays/osc/osc-cl1/dashboard/kfdef.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/overlays/osc/osc-cl1/dashboard/kfdef.yaml -------------------------------------------------------------------------------- /kfdefs/overlays/osc/osc-cl1/jupyterhub/kfdef.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/overlays/osc/osc-cl1/jupyterhub/kfdef.yaml -------------------------------------------------------------------------------- /kfdefs/overlays/osc/osc-cl1/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/overlays/osc/osc-cl1/kustomization.yaml -------------------------------------------------------------------------------- /kfdefs/overlays/osc/osc-cl1/seldon/kfdef-sandbox.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/overlays/osc/osc-cl1/seldon/kfdef-sandbox.yaml -------------------------------------------------------------------------------- /kfdefs/overlays/osc/osc-cl1/seldon/kfdef.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/overlays/osc/osc-cl1/seldon/kfdef.yaml -------------------------------------------------------------------------------- /kfdefs/overlays/osc/osc-cl1/seldon/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/overlays/osc/osc-cl1/seldon/kustomization.yaml -------------------------------------------------------------------------------- /kfdefs/overlays/osc/osc-cl1/superset/kfdef.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/overlays/osc/osc-cl1/superset/kfdef.yaml -------------------------------------------------------------------------------- /kfdefs/overlays/osc/osc-cl1/superset/secure-route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/overlays/osc/osc-cl1/superset/secure-route.yaml -------------------------------------------------------------------------------- /kfdefs/overlays/osc/osc-cl1/trino-dev/configs/jmx.properties: -------------------------------------------------------------------------------- 1 | connector.name=jmx 2 | -------------------------------------------------------------------------------- /kfdefs/overlays/osc/osc-cl1/trino-dev/configs/log.properties: -------------------------------------------------------------------------------- 1 | io.trino=INFO 2 | -------------------------------------------------------------------------------- /kfdefs/overlays/osc/osc-cl1/trino-dev/configs/password.db: -------------------------------------------------------------------------------- 1 | admin:$2y$10$mD/NvdrRynfW.gp6QvvAfe/49lF3F67LmeF9wp0a7vpByRclVnMrm 2 | -------------------------------------------------------------------------------- /kfdefs/overlays/osc/osc-cl1/trino-dev/kfdef.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/overlays/osc/osc-cl1/trino-dev/kfdef.yaml -------------------------------------------------------------------------------- /kfdefs/overlays/osc/osc-cl1/trino/configs/jmx.properties: -------------------------------------------------------------------------------- 1 | connector.name=jmx 2 | -------------------------------------------------------------------------------- /kfdefs/overlays/osc/osc-cl1/trino/configs/log.properties: -------------------------------------------------------------------------------- 1 | io.trino=INFO 2 | -------------------------------------------------------------------------------- /kfdefs/overlays/osc/osc-cl1/trino/configs/password.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/overlays/osc/osc-cl1/trino/configs/password.db -------------------------------------------------------------------------------- /kfdefs/overlays/osc/osc-cl1/trino/configs/rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/overlays/osc/osc-cl1/trino/configs/rules.json -------------------------------------------------------------------------------- /kfdefs/overlays/osc/osc-cl1/trino/kfdef.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/overlays/osc/osc-cl1/trino/kfdef.yaml -------------------------------------------------------------------------------- /kfdefs/overlays/osc/osc-cl1/trino/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/overlays/osc/osc-cl1/trino/kustomization.yaml -------------------------------------------------------------------------------- /kfdefs/overlays/osc/osc-cl1/trino/secure-route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/overlays/osc/osc-cl1/trino/secure-route.yaml -------------------------------------------------------------------------------- /kfdefs/overlays/osc/osc-cl2/jupyterhub/kfdef.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/overlays/osc/osc-cl2/jupyterhub/kfdef.yaml -------------------------------------------------------------------------------- /kfdefs/overlays/osc/osc-cl2/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/overlays/osc/osc-cl2/kustomization.yaml -------------------------------------------------------------------------------- /kfdefs/overlays/osc/osc-cl2/seldon/kfdef.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/overlays/osc/osc-cl2/seldon/kfdef.yaml -------------------------------------------------------------------------------- /kfdefs/overlays/osc/osc-cl2/seldon/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/overlays/osc/osc-cl2/seldon/kustomization.yaml -------------------------------------------------------------------------------- /kfdefs/overlays/osc/osc-cl2/superset/kfdef.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/overlays/osc/osc-cl2/superset/kfdef.yaml -------------------------------------------------------------------------------- /kfdefs/overlays/osc/osc-cl2/superset/secure-route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/overlays/osc/osc-cl2/superset/secure-route.yaml -------------------------------------------------------------------------------- /kfdefs/overlays/osc/osc-cl2/trino/configs/jmx.properties: -------------------------------------------------------------------------------- 1 | connector.name=jmx 2 | -------------------------------------------------------------------------------- /kfdefs/overlays/osc/osc-cl2/trino/configs/password.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/overlays/osc/osc-cl2/trino/configs/password.db -------------------------------------------------------------------------------- /kfdefs/overlays/osc/osc-cl2/trino/configs/rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/overlays/osc/osc-cl2/trino/configs/rules.json -------------------------------------------------------------------------------- /kfdefs/overlays/osc/osc-cl2/trino/kfdef.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/overlays/osc/osc-cl2/trino/kfdef.yaml -------------------------------------------------------------------------------- /kfdefs/overlays/osc/osc-cl2/trino/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/overlays/osc/osc-cl2/trino/kustomization.yaml -------------------------------------------------------------------------------- /kfdefs/overlays/osc/osc-cl2/trino/secure-route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfdefs/overlays/osc/osc-cl2/trino/secure-route.yaml -------------------------------------------------------------------------------- /kfp-tekton/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfp-tekton/README.md -------------------------------------------------------------------------------- /kfp-tekton/base/configmaps/kfp-tekton-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfp-tekton/base/configmaps/kfp-tekton-config.yaml -------------------------------------------------------------------------------- /kfp-tekton/base/deployments/metadata-writer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfp-tekton/base/deployments/metadata-writer.yaml -------------------------------------------------------------------------------- /kfp-tekton/base/deployments/minio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfp-tekton/base/deployments/minio.yaml -------------------------------------------------------------------------------- /kfp-tekton/base/deployments/ml-pipeline-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfp-tekton/base/deployments/ml-pipeline-ui.yaml -------------------------------------------------------------------------------- /kfp-tekton/base/deployments/ml-pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfp-tekton/base/deployments/ml-pipeline.yaml -------------------------------------------------------------------------------- /kfp-tekton/base/deployments/mysql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfp-tekton/base/deployments/mysql.yaml -------------------------------------------------------------------------------- /kfp-tekton/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfp-tekton/base/kustomization.yaml -------------------------------------------------------------------------------- /kfp-tekton/base/params.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfp-tekton/base/params.env -------------------------------------------------------------------------------- /kfp-tekton/base/params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfp-tekton/base/params.yaml -------------------------------------------------------------------------------- /kfp-tekton/base/persistentvolumeclaims/minio-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfp-tekton/base/persistentvolumeclaims/minio-pvc.yaml -------------------------------------------------------------------------------- /kfp-tekton/base/rolebindings/ml-pipeline-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfp-tekton/base/rolebindings/ml-pipeline-ui.yaml -------------------------------------------------------------------------------- /kfp-tekton/base/rolebindings/ml-pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfp-tekton/base/rolebindings/ml-pipeline.yaml -------------------------------------------------------------------------------- /kfp-tekton/base/roles/ml-pipeline-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfp-tekton/base/roles/ml-pipeline-ui.yaml -------------------------------------------------------------------------------- /kfp-tekton/base/roles/ml-pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfp-tekton/base/roles/ml-pipeline.yaml -------------------------------------------------------------------------------- /kfp-tekton/base/roles/pipeline-runner.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfp-tekton/base/roles/pipeline-runner.yaml -------------------------------------------------------------------------------- /kfp-tekton/base/routes/ml-pipeline-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfp-tekton/base/routes/ml-pipeline-ui.yaml -------------------------------------------------------------------------------- /kfp-tekton/base/secrets/mlpipeline-minio-artifact.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfp-tekton/base/secrets/mlpipeline-minio-artifact.yaml -------------------------------------------------------------------------------- /kfp-tekton/base/secrets/mysql-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfp-tekton/base/secrets/mysql-secret.yaml -------------------------------------------------------------------------------- /kfp-tekton/base/serviceaccounts/ml-pipeline-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfp-tekton/base/serviceaccounts/ml-pipeline-ui.yaml -------------------------------------------------------------------------------- /kfp-tekton/base/serviceaccounts/ml-pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfp-tekton/base/serviceaccounts/ml-pipeline.yaml -------------------------------------------------------------------------------- /kfp-tekton/base/serviceaccounts/mysql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfp-tekton/base/serviceaccounts/mysql.yaml -------------------------------------------------------------------------------- /kfp-tekton/base/serviceaccounts/pipeline-runner.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfp-tekton/base/serviceaccounts/pipeline-runner.yaml -------------------------------------------------------------------------------- /kfp-tekton/base/services/metadata-envoy-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfp-tekton/base/services/metadata-envoy-service.yaml -------------------------------------------------------------------------------- /kfp-tekton/base/services/metadata-grpc-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfp-tekton/base/services/metadata-grpc-service.yaml -------------------------------------------------------------------------------- /kfp-tekton/base/services/minio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfp-tekton/base/services/minio.yaml -------------------------------------------------------------------------------- /kfp-tekton/base/services/ml-pipeline-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfp-tekton/base/services/ml-pipeline-ui.yaml -------------------------------------------------------------------------------- /kfp-tekton/base/services/ml-pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfp-tekton/base/services/ml-pipeline.yaml -------------------------------------------------------------------------------- /kfp-tekton/base/services/mysql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfp-tekton/base/services/mysql.yaml -------------------------------------------------------------------------------- /kfp-tekton/overlays/moc/smaug/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfp-tekton/overlays/moc/smaug/kustomization.yaml -------------------------------------------------------------------------------- /kfp-tekton/overlays/osc/osc-cl2/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kfp-tekton/overlays/osc/osc-cl2/kustomization.yaml -------------------------------------------------------------------------------- /kubevirt-hyperconverged/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kubevirt-hyperconverged/README.md -------------------------------------------------------------------------------- /kubevirt-hyperconverged/base/hyperconverged.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kubevirt-hyperconverged/base/hyperconverged.yaml -------------------------------------------------------------------------------- /kubevirt-hyperconverged/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kubevirt-hyperconverged/base/kustomization.yaml -------------------------------------------------------------------------------- /kvm-device-plugin/base/buildconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kvm-device-plugin/base/buildconfig.yaml -------------------------------------------------------------------------------- /kvm-device-plugin/base/imagestream.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kvm-device-plugin/base/imagestream.yaml -------------------------------------------------------------------------------- /kvm-device-plugin/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kvm-device-plugin/base/kustomization.yaml -------------------------------------------------------------------------------- /kvm-device-plugin/base/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kvm-device-plugin/base/serviceaccount.yaml -------------------------------------------------------------------------------- /kvm-device-plugin/overlays/smaug/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/kvm-device-plugin/overlays/smaug/kustomization.yaml -------------------------------------------------------------------------------- /local-storage/README.md: -------------------------------------------------------------------------------- 1 | # Local storage deployment 2 | -------------------------------------------------------------------------------- /local-storage/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/local-storage/base/kustomization.yaml -------------------------------------------------------------------------------- /local-storage/overlays/dev/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/local-storage/overlays/dev/kustomization.yaml -------------------------------------------------------------------------------- /nfd/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/nfd/base/kustomization.yaml -------------------------------------------------------------------------------- /nfd/base/nfd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/nfd/base/nfd.yaml -------------------------------------------------------------------------------- /nfd/overlays/emea/morty/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/nfd/overlays/emea/morty/kustomization.yaml -------------------------------------------------------------------------------- /nfd/overlays/moc/smaug/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/nfd/overlays/moc/smaug/kustomization.yaml -------------------------------------------------------------------------------- /nfs-server-and-provisioner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/nfs-server-and-provisioner/README.md -------------------------------------------------------------------------------- /nfs-server-and-provisioner/base/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/nfs-server-and-provisioner/base/deployment.yaml -------------------------------------------------------------------------------- /nfs-server-and-provisioner/base/export-pv-claim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/nfs-server-and-provisioner/base/export-pv-claim.yaml -------------------------------------------------------------------------------- /nfs-server-and-provisioner/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/nfs-server-and-provisioner/base/kustomization.yaml -------------------------------------------------------------------------------- /nfs-server-and-provisioner/base/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/nfs-server-and-provisioner/base/rbac.yaml -------------------------------------------------------------------------------- /node-labeler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/node-labeler/README.md -------------------------------------------------------------------------------- /node-labeler/add-interface-label.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/node-labeler/add-interface-label.sh -------------------------------------------------------------------------------- /node-labeler/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/node-labeler/daemonset.yaml -------------------------------------------------------------------------------- /node-labeler/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/node-labeler/kustomization.yaml -------------------------------------------------------------------------------- /node-labeler/namespace.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: node-labeler 5 | spec: {} 6 | -------------------------------------------------------------------------------- /node-labeler/serviceaccount.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: ServiceAccount 3 | metadata: 4 | name: node-labeler 5 | -------------------------------------------------------------------------------- /observatorium/base/instance/loki/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/observatorium/base/instance/loki/kustomization.yaml -------------------------------------------------------------------------------- /observatorium/base/instance/thanos/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/observatorium/base/instance/thanos/kustomization.yaml -------------------------------------------------------------------------------- /observatorium/base/instance/thanos/query/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/observatorium/base/instance/thanos/query/service.yaml -------------------------------------------------------------------------------- /observatorium/base/instance/vector/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/observatorium/base/instance/vector/deployment.yaml -------------------------------------------------------------------------------- /observatorium/base/instance/vector/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/observatorium/base/instance/vector/kustomization.yaml -------------------------------------------------------------------------------- /observatorium/base/operator/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/observatorium/base/operator/deployment.yaml -------------------------------------------------------------------------------- /observatorium/base/operator/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/observatorium/base/operator/kustomization.yaml -------------------------------------------------------------------------------- /observatorium/base/operator/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/observatorium/base/operator/serviceaccount.yaml -------------------------------------------------------------------------------- /observatorium/overlays/moc/smaug/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/observatorium/overlays/moc/smaug/kustomization.yaml -------------------------------------------------------------------------------- /observatorium/overlays/moc/smaug/vector/clo-kafka.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/observatorium/overlays/moc/smaug/vector/clo-kafka.yaml -------------------------------------------------------------------------------- /odf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/odf/README.md -------------------------------------------------------------------------------- /odf/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/odf/base/kustomization.yaml -------------------------------------------------------------------------------- /odf/overlays/emea/morty/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/odf/overlays/emea/morty/kustomization.yaml -------------------------------------------------------------------------------- /odf/overlays/emea/morty/ocs-storagecluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/odf/overlays/emea/morty/ocs-storagecluster.yaml -------------------------------------------------------------------------------- /odf/overlays/emea/morty/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/odf/overlays/emea/morty/route.yaml -------------------------------------------------------------------------------- /odh-manifests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/odh-manifests/README.md -------------------------------------------------------------------------------- /odh-manifests/osc/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/odh-manifests/osc/OWNERS -------------------------------------------------------------------------------- /odh-manifests/osc/trino-dev/base/hive-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/odh-manifests/osc/trino-dev/base/hive-config.yaml -------------------------------------------------------------------------------- /odh-manifests/osc/trino-dev/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/odh-manifests/osc/trino-dev/base/kustomization.yaml -------------------------------------------------------------------------------- /odh-manifests/osc/trino-dev/base/trino-worker-dc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/odh-manifests/osc/trino-dev/base/trino-worker-dc.yaml -------------------------------------------------------------------------------- /odh-operator/base/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/odh-operator/base/deployment.yaml -------------------------------------------------------------------------------- /odh-operator/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/odh-operator/base/kustomization.yaml -------------------------------------------------------------------------------- /odh-operator/base/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/odh-operator/base/serviceaccount.yaml -------------------------------------------------------------------------------- /odh-operator/base/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/odh-operator/base/servicemonitor.yaml -------------------------------------------------------------------------------- /odh-operator/overlays/dev/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/odh-operator/overlays/dev/kustomization.yaml -------------------------------------------------------------------------------- /odh-operator/overlays/moc/smaug/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/odh-operator/overlays/moc/smaug/kustomization.yaml -------------------------------------------------------------------------------- /odh-operator/overlays/osc/osc-cl1/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/odh-operator/overlays/osc/osc-cl1/kustomization.yaml -------------------------------------------------------------------------------- /odh-operator/overlays/osc/osc-cl2/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/odh-operator/overlays/osc/osc-cl2/kustomization.yaml -------------------------------------------------------------------------------- /okd-centos/base/buildconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/okd-centos/base/buildconfig.yaml -------------------------------------------------------------------------------- /okd-centos/base/imagestream.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/okd-centos/base/imagestream.yaml -------------------------------------------------------------------------------- /okd-centos/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/okd-centos/base/kustomization.yaml -------------------------------------------------------------------------------- /okd-centos/base/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/okd-centos/base/rolebinding.yaml -------------------------------------------------------------------------------- /okd-centos/overlays/smaug/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/okd-centos/overlays/smaug/kustomization.yaml -------------------------------------------------------------------------------- /openmetadata/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/openmetadata/OWNERS -------------------------------------------------------------------------------- /openmetadata/base/openmetadata/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/openmetadata/base/openmetadata/kustomization.yaml -------------------------------------------------------------------------------- /openmetadata/base/openmetadata/pods/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/openmetadata/base/openmetadata/pods/kustomization.yaml -------------------------------------------------------------------------------- /openmetadata/overlays/dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/openmetadata/overlays/dev/README.md -------------------------------------------------------------------------------- /openmetadata/overlays/dev/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/openmetadata/overlays/dev/kustomization.yaml -------------------------------------------------------------------------------- /openmetadata/overlays/dev/secret/airflow-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/openmetadata/overlays/dev/secret/airflow-secrets.yaml -------------------------------------------------------------------------------- /openmetadata/overlays/dev/secret/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/openmetadata/overlays/dev/secret/kustomization.yaml -------------------------------------------------------------------------------- /openmetadata/overlays/dev/secret/mysql-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/openmetadata/overlays/dev/secret/mysql-secrets.yaml -------------------------------------------------------------------------------- /openmetadata/overlays/dev/secret/mysql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/openmetadata/overlays/dev/secret/mysql.yaml -------------------------------------------------------------------------------- /openmetadata/overlays/osc/osc-cl1/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/openmetadata/overlays/osc/osc-cl1/kustomization.yaml -------------------------------------------------------------------------------- /openmetadata/overlays/osc/osc-cl2/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/openmetadata/overlays/osc/osc-cl2/kustomization.yaml -------------------------------------------------------------------------------- /pachyderm/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/pachyderm/base/kustomization.yaml -------------------------------------------------------------------------------- /pachyderm/base/pachyderm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/pachyderm/base/pachyderm.yaml -------------------------------------------------------------------------------- /pachyderm/overlays/osc/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/pachyderm/overlays/osc/OWNERS -------------------------------------------------------------------------------- /pachyderm/overlays/osc/osc-cl2/externalsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/pachyderm/overlays/osc/osc-cl2/externalsecret.yaml -------------------------------------------------------------------------------- /pachyderm/overlays/osc/osc-cl2/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/pachyderm/overlays/osc/osc-cl2/kustomization.yaml -------------------------------------------------------------------------------- /prow/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/prow/OWNERS -------------------------------------------------------------------------------- /prow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/prow/README.md -------------------------------------------------------------------------------- /prow/base/branchprotector.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/prow/base/branchprotector.yaml -------------------------------------------------------------------------------- /prow/base/crier.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/prow/base/crier.yaml -------------------------------------------------------------------------------- /prow/base/deck.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/prow/base/deck.yaml -------------------------------------------------------------------------------- /prow/base/hook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/prow/base/hook.yaml -------------------------------------------------------------------------------- /prow/base/horologium.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/prow/base/horologium.yaml -------------------------------------------------------------------------------- /prow/base/imagestreams.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/prow/base/imagestreams.yaml -------------------------------------------------------------------------------- /prow/base/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/prow/base/ingress.yaml -------------------------------------------------------------------------------- /prow/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/prow/base/kustomization.yaml -------------------------------------------------------------------------------- /prow/base/label_sync_job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/prow/base/label_sync_job.yaml -------------------------------------------------------------------------------- /prow/base/needs-rebase.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/prow/base/needs-rebase.yaml -------------------------------------------------------------------------------- /prow/base/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/prow/base/pipeline.yaml -------------------------------------------------------------------------------- /prow/base/plank.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/prow/base/plank.yaml -------------------------------------------------------------------------------- /prow/base/prow-controller-manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/prow/base/prow-controller-manager.yaml -------------------------------------------------------------------------------- /prow/base/sinker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/prow/base/sinker.yaml -------------------------------------------------------------------------------- /prow/base/statusreconciler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/prow/base/statusreconciler.yaml -------------------------------------------------------------------------------- /prow/base/tide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/prow/base/tide.yaml -------------------------------------------------------------------------------- /prow/overlays/smaug-test-pods/crier_rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/prow/overlays/smaug-test-pods/crier_rbac.yaml -------------------------------------------------------------------------------- /prow/overlays/smaug-test-pods/deck_rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/prow/overlays/smaug-test-pods/deck_rbac.yaml -------------------------------------------------------------------------------- /prow/overlays/smaug-test-pods/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/prow/overlays/smaug-test-pods/kustomization.yaml -------------------------------------------------------------------------------- /prow/overlays/smaug-test-pods/sinker_rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/prow/overlays/smaug-test-pods/sinker_rbac.yaml -------------------------------------------------------------------------------- /prow/overlays/smaug/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/prow/overlays/smaug/config.yaml -------------------------------------------------------------------------------- /prow/overlays/smaug/externalsecrets/cookie.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/prow/overlays/smaug/externalsecrets/cookie.yaml -------------------------------------------------------------------------------- /prow/overlays/smaug/externalsecrets/github-token.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/prow/overlays/smaug/externalsecrets/github-token.yaml -------------------------------------------------------------------------------- /prow/overlays/smaug/externalsecrets/hmac-token.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/prow/overlays/smaug/externalsecrets/hmac-token.yaml -------------------------------------------------------------------------------- /prow/overlays/smaug/externalsecrets/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/prow/overlays/smaug/externalsecrets/kustomization.yaml -------------------------------------------------------------------------------- /prow/overlays/smaug/externalsecrets/oauth-token.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/prow/overlays/smaug/externalsecrets/oauth-token.yaml -------------------------------------------------------------------------------- /prow/overlays/smaug/externalsecrets/ssh-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/prow/overlays/smaug/externalsecrets/ssh-secret.yaml -------------------------------------------------------------------------------- /prow/overlays/smaug/ghproxy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/prow/overlays/smaug/ghproxy.yaml -------------------------------------------------------------------------------- /prow/overlays/smaug/imagestreamtags.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/prow/overlays/smaug/imagestreamtags.yaml -------------------------------------------------------------------------------- /prow/overlays/smaug/integration-test-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/prow/overlays/smaug/integration-test-configmap.yaml -------------------------------------------------------------------------------- /prow/overlays/smaug/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/prow/overlays/smaug/kustomization.yaml -------------------------------------------------------------------------------- /prow/overlays/smaug/plugins.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/prow/overlays/smaug/plugins.yaml -------------------------------------------------------------------------------- /prow/overlays/smaug/routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/prow/overlays/smaug/routes.yaml -------------------------------------------------------------------------------- /prow/overlays/smaug/s3-storage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/prow/overlays/smaug/s3-storage.yaml -------------------------------------------------------------------------------- /prow/overlays/smaug/service-monitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/prow/overlays/smaug/service-monitor.yaml -------------------------------------------------------------------------------- /prow/overlays/smaug/unsuspend_branchprotector.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/prow/overlays/smaug/unsuspend_branchprotector.yaml -------------------------------------------------------------------------------- /prow/update-imagestreams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/prow/update-imagestreams.py -------------------------------------------------------------------------------- /pulp/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/pulp/base/kustomization.yaml -------------------------------------------------------------------------------- /pulp/base/opf-pulp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/pulp/base/opf-pulp.yaml -------------------------------------------------------------------------------- /pulp/overlays/moc/smaug/certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/pulp/overlays/moc/smaug/certificate.yaml -------------------------------------------------------------------------------- /pulp/overlays/moc/smaug/issuer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/pulp/overlays/moc/smaug/issuer.yaml -------------------------------------------------------------------------------- /pulp/overlays/moc/smaug/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/pulp/overlays/moc/smaug/kustomization.yaml -------------------------------------------------------------------------------- /pulp/overlays/moc/smaug/opf-pulp-backup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/pulp/overlays/moc/smaug/opf-pulp-backup.yaml -------------------------------------------------------------------------------- /pulp/overlays/moc/smaug/opf-pulp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/pulp/overlays/moc/smaug/opf-pulp.yaml -------------------------------------------------------------------------------- /reloader/base/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/reloader/base/deployment.yaml -------------------------------------------------------------------------------- /reloader/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/reloader/base/kustomization.yaml -------------------------------------------------------------------------------- /reloader/base/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/reloader/base/serviceaccount.yaml -------------------------------------------------------------------------------- /reloader/overlays/moc/smaug/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/reloader/overlays/moc/smaug/kustomization.yaml -------------------------------------------------------------------------------- /reloader/overlays/osc/osc-cl2/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/reloader/overlays/osc/osc-cl2/kustomization.yaml -------------------------------------------------------------------------------- /robozome/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/robozome/base/kustomization.yaml -------------------------------------------------------------------------------- /robozome/overlays/moc/smaug/externalsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/robozome/overlays/moc/smaug/externalsecret.yaml -------------------------------------------------------------------------------- /robozome/overlays/moc/smaug/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/robozome/overlays/moc/smaug/kustomization.yaml -------------------------------------------------------------------------------- /scripts/argocd/configure_development.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/scripts/argocd/configure_development.sh -------------------------------------------------------------------------------- /scripts/argocd/update_cluster_resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/scripts/argocd/update_cluster_resources.sh -------------------------------------------------------------------------------- /scripts/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/scripts/common.sh -------------------------------------------------------------------------------- /scripts/fake-ksops.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/scripts/fake-ksops.sh -------------------------------------------------------------------------------- /scripts/jsonnet/group.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/scripts/jsonnet/group.jsonnet -------------------------------------------------------------------------------- /scripts/jsonnet/namespace.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/scripts/jsonnet/namespace.jsonnet -------------------------------------------------------------------------------- /scripts/jsonnet/rbac.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/scripts/jsonnet/rbac.jsonnet -------------------------------------------------------------------------------- /scripts/offboarding.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/scripts/offboarding.sh -------------------------------------------------------------------------------- /scripts/onboarding.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/scripts/onboarding.sh -------------------------------------------------------------------------------- /scripts/payload_examples/offboarding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/scripts/payload_examples/offboarding.yaml -------------------------------------------------------------------------------- /scripts/payload_examples/onboarding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/scripts/payload_examples/onboarding.yaml -------------------------------------------------------------------------------- /scripts/set-odh-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/scripts/set-odh-release.sh -------------------------------------------------------------------------------- /scripts/setup_pvs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/scripts/setup_pvs/README.md -------------------------------------------------------------------------------- /scripts/setup_pvs/env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/scripts/setup_pvs/env.yaml -------------------------------------------------------------------------------- /scripts/setup_pvs/playbook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/scripts/setup_pvs/playbook.yaml -------------------------------------------------------------------------------- /scripts/setup_pvs/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/scripts/setup_pvs/requirements.yaml -------------------------------------------------------------------------------- /scripts/update-cluster-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/scripts/update-cluster-version.sh -------------------------------------------------------------------------------- /service-catalog/all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/all.yaml -------------------------------------------------------------------------------- /service-catalog/apis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/apis.yaml -------------------------------------------------------------------------------- /service-catalog/apis/argocd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/apis/argocd.yaml -------------------------------------------------------------------------------- /service-catalog/apis/backstage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/apis/backstage.yaml -------------------------------------------------------------------------------- /service-catalog/apis/dex.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/apis/dex.yaml -------------------------------------------------------------------------------- /service-catalog/apis/github-webhooks-consumer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/apis/github-webhooks-consumer.yaml -------------------------------------------------------------------------------- /service-catalog/apis/grafana-public.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/apis/grafana-public.yaml -------------------------------------------------------------------------------- /service-catalog/apis/grafana.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/apis/grafana.yaml -------------------------------------------------------------------------------- /service-catalog/apis/mco-grafana.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/apis/mco-grafana.yaml -------------------------------------------------------------------------------- /service-catalog/apis/observatorium.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/apis/observatorium.yaml -------------------------------------------------------------------------------- /service-catalog/apis/vault.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/apis/vault.yaml -------------------------------------------------------------------------------- /service-catalog/components.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/components.yaml -------------------------------------------------------------------------------- /service-catalog/components/acm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/components/acm.yaml -------------------------------------------------------------------------------- /service-catalog/components/acme-operator-infra.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/components/acme-operator-infra.yaml -------------------------------------------------------------------------------- /service-catalog/components/acme-operator-smaug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/components/acme-operator-smaug.yaml -------------------------------------------------------------------------------- /service-catalog/components/argocd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/components/argocd.yaml -------------------------------------------------------------------------------- /service-catalog/components/backstage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/components/backstage.yaml -------------------------------------------------------------------------------- /service-catalog/components/cert-manager-curator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/components/cert-manager-curator.yaml -------------------------------------------------------------------------------- /service-catalog/components/cert-manager-infra.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/components/cert-manager-infra.yaml -------------------------------------------------------------------------------- /service-catalog/components/cert-manager-jerry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/components/cert-manager-jerry.yaml -------------------------------------------------------------------------------- /service-catalog/components/cert-manager-smaug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/components/cert-manager-smaug.yaml -------------------------------------------------------------------------------- /service-catalog/components/dex-smaug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/components/dex-smaug.yaml -------------------------------------------------------------------------------- /service-catalog/components/eso-curator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/components/eso-curator.yaml -------------------------------------------------------------------------------- /service-catalog/components/eso-infra.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/components/eso-infra.yaml -------------------------------------------------------------------------------- /service-catalog/components/eso-jerry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/components/eso-jerry.yaml -------------------------------------------------------------------------------- /service-catalog/components/eso-smaug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/components/eso-smaug.yaml -------------------------------------------------------------------------------- /service-catalog/components/mco-grafana.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/components/mco-grafana.yaml -------------------------------------------------------------------------------- /service-catalog/components/mco-observatorium.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/components/mco-observatorium.yaml -------------------------------------------------------------------------------- /service-catalog/components/odf-operator-infra.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/components/odf-operator-infra.yaml -------------------------------------------------------------------------------- /service-catalog/components/odf-operator-smaug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/components/odf-operator-smaug.yaml -------------------------------------------------------------------------------- /service-catalog/components/opf-grafana-public.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/components/opf-grafana-public.yaml -------------------------------------------------------------------------------- /service-catalog/components/opf-monitoring-grafana.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/components/opf-monitoring-grafana.yaml -------------------------------------------------------------------------------- /service-catalog/components/peribolos-controller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/components/peribolos-controller.yaml -------------------------------------------------------------------------------- /service-catalog/components/probot-kubernetes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/components/probot-kubernetes.yaml -------------------------------------------------------------------------------- /service-catalog/components/probot-metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/components/probot-metrics.yaml -------------------------------------------------------------------------------- /service-catalog/components/prow-crier.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/components/prow-crier.yaml -------------------------------------------------------------------------------- /service-catalog/components/prow-deck.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/components/prow-deck.yaml -------------------------------------------------------------------------------- /service-catalog/components/prow-ghproxy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/components/prow-ghproxy.yaml -------------------------------------------------------------------------------- /service-catalog/components/prow-hook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/components/prow-hook.yaml -------------------------------------------------------------------------------- /service-catalog/components/prow-horologium.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/components/prow-horologium.yaml -------------------------------------------------------------------------------- /service-catalog/components/prow-needs-rebase.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/components/prow-needs-rebase.yaml -------------------------------------------------------------------------------- /service-catalog/components/prow-plank.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/components/prow-plank.yaml -------------------------------------------------------------------------------- /service-catalog/components/prow-sinker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/components/prow-sinker.yaml -------------------------------------------------------------------------------- /service-catalog/components/prow-statusreconciler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/components/prow-statusreconciler.yaml -------------------------------------------------------------------------------- /service-catalog/components/prow-tide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/components/prow-tide.yaml -------------------------------------------------------------------------------- /service-catalog/components/reloader-smaug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/components/reloader-smaug.yaml -------------------------------------------------------------------------------- /service-catalog/components/vault.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/components/vault.yaml -------------------------------------------------------------------------------- /service-catalog/domains.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/domains.yaml -------------------------------------------------------------------------------- /service-catalog/domains/community.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/domains/community.yaml -------------------------------------------------------------------------------- /service-catalog/domains/platform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/domains/platform.yaml -------------------------------------------------------------------------------- /service-catalog/domains/sre.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/domains/sre.yaml -------------------------------------------------------------------------------- /service-catalog/groups.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/groups.yaml -------------------------------------------------------------------------------- /service-catalog/groups/operate-first.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/groups/operate-first.yaml -------------------------------------------------------------------------------- /service-catalog/resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/resources.yaml -------------------------------------------------------------------------------- /service-catalog/resources/nese-ceph.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/resources/nese-ceph.yaml -------------------------------------------------------------------------------- /service-catalog/systems.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/systems.yaml -------------------------------------------------------------------------------- /service-catalog/systems/acm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/systems/acm.yaml -------------------------------------------------------------------------------- /service-catalog/systems/argocd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/systems/argocd.yaml -------------------------------------------------------------------------------- /service-catalog/systems/certificate-management.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/systems/certificate-management.yaml -------------------------------------------------------------------------------- /service-catalog/systems/dex.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/systems/dex.yaml -------------------------------------------------------------------------------- /service-catalog/systems/grafana-public.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/systems/grafana-public.yaml -------------------------------------------------------------------------------- /service-catalog/systems/grafana.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/systems/grafana.yaml -------------------------------------------------------------------------------- /service-catalog/systems/odf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/systems/odf.yaml -------------------------------------------------------------------------------- /service-catalog/systems/odh.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/systems/odh.yaml -------------------------------------------------------------------------------- /service-catalog/systems/openshift-pipelines.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/systems/openshift-pipelines.yaml -------------------------------------------------------------------------------- /service-catalog/systems/peribolos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/systems/peribolos.yaml -------------------------------------------------------------------------------- /service-catalog/systems/prow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/systems/prow.yaml -------------------------------------------------------------------------------- /service-catalog/systems/reloader.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/systems/reloader.yaml -------------------------------------------------------------------------------- /service-catalog/systems/secret-management.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/systems/secret-management.yaml -------------------------------------------------------------------------------- /service-catalog/systems/service-catalog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/systems/service-catalog.yaml -------------------------------------------------------------------------------- /service-catalog/users.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/users.yaml -------------------------------------------------------------------------------- /service-catalog/users/operate-first.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/service-catalog/users/operate-first.yaml -------------------------------------------------------------------------------- /slack-first/base/configmap.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | kind: ConfigMap 3 | apiVersion: v1 4 | metadata: 5 | name: slack-first 6 | -------------------------------------------------------------------------------- /slack-first/base/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/slack-first/base/deployment.yaml -------------------------------------------------------------------------------- /slack-first/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/slack-first/base/kustomization.yaml -------------------------------------------------------------------------------- /slack-first/base/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/slack-first/base/route.yaml -------------------------------------------------------------------------------- /slack-first/base/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/slack-first/base/secret.yaml -------------------------------------------------------------------------------- /slack-first/base/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/slack-first/base/service.yaml -------------------------------------------------------------------------------- /slack-first/overlays/moc/smaug/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/slack-first/overlays/moc/smaug/config.yaml -------------------------------------------------------------------------------- /slack-first/overlays/moc/smaug/externalsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/slack-first/overlays/moc/smaug/externalsecret.yaml -------------------------------------------------------------------------------- /slack-first/overlays/moc/smaug/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/slack-first/overlays/moc/smaug/kustomization.yaml -------------------------------------------------------------------------------- /terraform/aws/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/terraform/aws/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/aws/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/terraform/aws/README.md -------------------------------------------------------------------------------- /terraform/aws/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/terraform/aws/main.tf -------------------------------------------------------------------------------- /training-operator/base/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/training-operator/base/deployment.yaml -------------------------------------------------------------------------------- /training-operator/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/training-operator/base/kustomization.yaml -------------------------------------------------------------------------------- /training-operator/base/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/training-operator/base/service.yaml -------------------------------------------------------------------------------- /training-operator/base/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/training-operator/base/serviceaccount.yaml -------------------------------------------------------------------------------- /triage-party/base/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/triage-party/base/deployment.yaml -------------------------------------------------------------------------------- /triage-party/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/triage-party/base/kustomization.yaml -------------------------------------------------------------------------------- /triage-party/base/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/triage-party/base/route.yaml -------------------------------------------------------------------------------- /triage-party/base/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/triage-party/base/service.yaml -------------------------------------------------------------------------------- /triage-party/overlays/moc/smaug/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/triage-party/overlays/moc/smaug/config.yaml -------------------------------------------------------------------------------- /triage-party/overlays/moc/smaug/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/triage-party/overlays/moc/smaug/deployment.yaml -------------------------------------------------------------------------------- /triage-party/overlays/moc/smaug/externalsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/triage-party/overlays/moc/smaug/externalsecret.yaml -------------------------------------------------------------------------------- /triage-party/overlays/moc/smaug/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/triage-party/overlays/moc/smaug/kustomization.yaml -------------------------------------------------------------------------------- /triage-party/overlays/moc/smaug/pcache.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/triage-party/overlays/moc/smaug/pcache.yaml -------------------------------------------------------------------------------- /triage-party/overlays/moc/smaug/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/triage-party/overlays/moc/smaug/route.yaml -------------------------------------------------------------------------------- /vault/base/configmaps/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/vault/base/configmaps/configmap.yaml -------------------------------------------------------------------------------- /vault/base/configmaps/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/vault/base/configmaps/kustomization.yaml -------------------------------------------------------------------------------- /vault/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/vault/base/kustomization.yaml -------------------------------------------------------------------------------- /vault/base/policy/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/vault/base/policy/kustomization.yaml -------------------------------------------------------------------------------- /vault/base/policy/poddisruptionbudget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/vault/base/policy/poddisruptionbudget.yaml -------------------------------------------------------------------------------- /vault/base/rbac.authorization.k8s.io/roles/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/vault/base/rbac.authorization.k8s.io/roles/role.yaml -------------------------------------------------------------------------------- /vault/base/route/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/vault/base/route/kustomization.yaml -------------------------------------------------------------------------------- /vault/base/route/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/vault/base/route/route.yaml -------------------------------------------------------------------------------- /vault/base/serviceaccounts/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/vault/base/serviceaccounts/kustomization.yaml -------------------------------------------------------------------------------- /vault/base/serviceaccounts/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/vault/base/serviceaccounts/serviceaccount.yaml -------------------------------------------------------------------------------- /vault/base/services/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/vault/base/services/kustomization.yaml -------------------------------------------------------------------------------- /vault/base/services/opf-vault-active/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/vault/base/services/opf-vault-active/service.yaml -------------------------------------------------------------------------------- /vault/base/services/opf-vault-internal/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/vault/base/services/opf-vault-internal/service.yaml -------------------------------------------------------------------------------- /vault/base/services/opf-vault-standby/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/vault/base/services/opf-vault-standby/service.yaml -------------------------------------------------------------------------------- /vault/base/services/opf-vault-ui/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/vault/base/services/opf-vault-ui/service.yaml -------------------------------------------------------------------------------- /vault/base/services/opf-vault/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/vault/base/services/opf-vault/service.yaml -------------------------------------------------------------------------------- /vault/base/statefulsets/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/vault/base/statefulsets/kustomization.yaml -------------------------------------------------------------------------------- /vault/base/statefulsets/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/vault/base/statefulsets/statefulset.yaml -------------------------------------------------------------------------------- /vault/overlays/moc/smaug/backup-job/cronjob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/vault/overlays/moc/smaug/backup-job/cronjob.yaml -------------------------------------------------------------------------------- /vault/overlays/moc/smaug/backup-job/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/vault/overlays/moc/smaug/backup-job/kustomization.yaml -------------------------------------------------------------------------------- /vault/overlays/moc/smaug/backup-job/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/vault/overlays/moc/smaug/backup-job/pvc.yaml -------------------------------------------------------------------------------- /vault/overlays/moc/smaug/backup-job/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/vault/overlays/moc/smaug/backup-job/rolebinding.yaml -------------------------------------------------------------------------------- /vault/overlays/moc/smaug/backup-job/sa.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: ServiceAccount 3 | metadata: 4 | name: backup-job 5 | -------------------------------------------------------------------------------- /vault/overlays/moc/smaug/backup-job/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/vault/overlays/moc/smaug/backup-job/secret.yaml -------------------------------------------------------------------------------- /vault/overlays/moc/smaug/backup-job/task.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/vault/overlays/moc/smaug/backup-job/task.yaml -------------------------------------------------------------------------------- /vault/overlays/moc/smaug/backup-job/taskrun.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/vault/overlays/moc/smaug/backup-job/taskrun.yaml -------------------------------------------------------------------------------- /vault/overlays/moc/smaug/backup-job/toolkitpod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/vault/overlays/moc/smaug/backup-job/toolkitpod.yaml -------------------------------------------------------------------------------- /vault/overlays/moc/smaug/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/vault/overlays/moc/smaug/kustomization.yaml -------------------------------------------------------------------------------- /vault/overlays/moc/smaug/obc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/vault/overlays/moc/smaug/obc.yaml -------------------------------------------------------------------------------- /yamllint-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/operate-first/apps/HEAD/yamllint-config.yaml --------------------------------------------------------------------------------