├── .bootstrap └── openshift │ ├── kustomization.yaml │ └── setup.sh ├── .gitattributes ├── .github ├── CODEOWNERS ├── linters │ ├── .markdownlint.yaml │ ├── .prettierignore │ ├── .prettierrc.yaml │ └── .yamllint.yaml └── renovate.json5 ├── .gitignore ├── .pre-commit-config.yaml ├── .sops.yaml ├── .taskfiles └── volsync │ ├── Taskfile.yaml │ └── resources │ ├── scripts │ ├── wait-for-job.sh │ └── which-controller.sh │ └── templates │ ├── list.yaml.j2 │ ├── replicationdestination.yaml.j2 │ ├── unlock.yaml.j2 │ └── wipe.yaml.j2 ├── .tekton └── pull-request.yaml ├── .yamllint.yaml ├── README.md ├── Taskfile.yml ├── apps └── virt-vm │ ├── kustomization.yaml │ ├── namespace.yaml │ ├── secret.yaml │ ├── svc.yaml │ └── vm.yaml ├── clusters ├── proxmox │ ├── acm.yaml │ ├── acs.yaml │ ├── alertmanager.yaml │ ├── cert-manager.yaml │ ├── cloudflared.yaml │ ├── cloudnative-pg.yaml │ ├── developer-hub.yaml │ ├── devspaces.yaml │ ├── external-secrets.yaml │ ├── image-registry.yaml │ ├── kubernetes-imagepuller.yaml │ ├── kustomization.yaml │ ├── logging.yaml │ ├── lvm.yaml │ ├── metallb.yaml │ ├── nmstate.yaml │ ├── oauth.yaml │ ├── onepassword-connect.yaml │ ├── openshift-gitops.yaml │ ├── openshift-pipelines.yaml │ ├── reflector.yaml │ ├── reloader.yaml │ ├── synology-csi.yaml │ ├── virtualization.yaml │ ├── volsync.yaml │ └── web-terminal.yaml └── vsphere │ ├── acm.yaml │ ├── alertmanager.yaml │ ├── cert-manager.yaml │ ├── cloudflared.yaml │ ├── external-secrets.yaml │ ├── keycloak.yaml │ ├── kustomization.yaml │ ├── oauth.yaml │ ├── onepassword-connect.yaml │ ├── openshift-gitops.yaml │ ├── openshift-pipelines.yaml │ ├── overlays │ └── vsphere1-cluster-config │ │ └── kustomization.yaml │ ├── reflector.yaml │ ├── reloader.yaml │ ├── rhdh.yaml │ └── web-terminal.yaml ├── code-workspace ├── components ├── aap-config │ ├── externalsecret.yaml │ └── kustomization.yaml ├── aap-operator │ ├── kustomization.yaml │ ├── namespace.yaml │ ├── operator.yaml │ └── subscription.yaml ├── acm-config │ ├── kustomization.yaml │ └── multi-cluster-hub.yaml ├── acm-operator │ ├── kustomization.yaml │ ├── namespace.yaml │ ├── operator.yaml │ └── subscription.yaml ├── acm-placement │ ├── clustersetbinding.yaml │ ├── gitops-cluster.yaml │ ├── kustomization.yaml │ └── placement.yaml ├── acm-policies-config │ ├── argocd-notification-annotation-policy │ │ ├── configuration-policy.yaml │ │ ├── kustomization.yaml │ │ └── policy-generator.yaml │ ├── configmap-copy-policy │ │ ├── config-map.yaml │ │ ├── configuration-policy.yaml │ │ ├── kustomization.yaml │ │ └── policy-generator.yaml │ ├── governance-standalone-hub-templating-addon │ │ └── managed-cluster-addon.yaml │ ├── nodeport-policies │ │ ├── configuration-policy.yaml │ │ ├── disallow-nodeport.yaml │ │ ├── kustomization.yaml │ │ └── policy-generator.yaml │ ├── secured-cluster-policy │ │ ├── configuration-policy.yaml │ │ ├── kustomization.yaml │ │ ├── placement-rule.yaml │ │ └── policy-generator.yaml │ └── sops-auth-policy │ │ ├── configuration-policy.yaml │ │ ├── kustomization.yaml │ │ └── policy-generator.yaml ├── acm-policies │ ├── kustomization.yaml │ ├── namespace.yaml │ └── service-account.yaml ├── acs-central-configuration │ ├── central-default-tls-cert.yaml │ ├── central.yaml │ ├── console-link.yaml │ ├── create-cluster-init-bundle-job.yaml │ ├── create-cluster-init-bundle-sa.yaml │ ├── job-create-auth-provider.yaml │ ├── kustomization.yaml │ ├── namespace.yaml │ └── secured-cluster.yaml ├── acs-operator │ ├── kustomization.yaml │ └── namespace.yaml ├── acs-secured-configuration │ ├── kustomization.yaml │ ├── namespace.yaml │ └── secured-cluster.yaml ├── agent-service-config │ ├── agent-service-config.yaml │ ├── config-map.yaml │ ├── kustomization.yaml │ └── provisioning.yaml ├── alertmanager-config │ ├── externalsecret-alertmanager.yaml │ ├── externalsecret.yaml │ ├── kustomization.yaml │ └── values.yaml ├── apache-devlake-chart │ ├── external-secret-regred.yaml │ ├── external-secret.yaml │ ├── ingress.yaml │ ├── kustomization.yaml │ └── namespace.yaml ├── argocd-chart │ └── kustomization.yaml ├── argocd-events-config │ ├── event-bus.yaml │ ├── event-source.yaml │ ├── kustomization.yaml │ └── sensor.yaml ├── argocd-events │ └── kustomization.yaml ├── argocd-image-updater │ └── kustomization.yaml ├── argocd-notifications │ ├── externalsecrets.yaml │ ├── kustomization.yaml │ └── notification-configuration.yaml ├── argocd-rollout │ ├── kustomization.yaml │ └── rollout-manager.yaml ├── argocd-webhook │ ├── externalsecrets.yaml │ └── kustomization.yaml ├── argocd-workflows │ ├── cluster-rolebinding.yaml │ ├── externalsecret.yaml │ ├── kustomization.yaml │ ├── route.yaml │ └── service-account.yaml ├── cert-manager-application │ ├── kustomization.yaml │ ├── openshift-api │ │ ├── api-server.yaml │ │ ├── kustomization.yaml │ │ └── openshift-api-certificate.yaml │ └── openshift-wildcard │ │ ├── ingress-controller.yaml │ │ ├── kustomization.yaml │ │ └── openshift-wildcard-certificate.yaml ├── cert-manager-config │ ├── certmanager.yaml │ ├── externalsecret.yaml │ ├── kustomization.yaml │ ├── prod-cluster-issuer.yaml │ └── staging-cluster-issuer.yaml ├── cert-manager-operator │ ├── kustomization.yaml │ └── namespace.yaml ├── cloudflared │ ├── external-secret.yaml │ ├── kustomization.yaml │ ├── namespace.yaml │ └── values.yaml ├── cloudnative-pg-operator │ ├── kustomization.yaml │ └── namespace.yaml ├── cluster-rbac-config │ ├── crb.yaml │ └── kustomization.yaml ├── crossplane-chart │ ├── kustomization.yaml │ └── namespace.yaml ├── crossplane-compositions │ └── azure │ │ └── storage │ │ ├── composite-resource-definition.yaml │ │ ├── composition.yaml │ │ └── kustomization.yaml ├── csvwatchdog-operator │ └── kustomization.yaml ├── developer-hub-config │ ├── aap-tools-deployment.yaml │ ├── app-config-rhdh.yaml │ ├── backstage.yaml │ ├── config │ │ ├── home-page.json │ │ ├── learning-paths.json │ │ └── tech-radar.json │ ├── console-link.yaml │ ├── dynamic-plugin-pvc.yaml │ ├── dynamic-plugins-rhdh.yaml │ ├── externalsecret-devhub-read.yaml │ ├── externalsecret-pipeline-build.yaml │ ├── externalsecret-pullsecret.yaml │ ├── externalsecret.yaml │ ├── kustomization.yaml │ ├── namespace.yaml │ ├── ocm-rolebindings.yaml │ ├── rbac-conditional-policies.yaml │ ├── rbac-policies.csv │ └── rolebindings.yaml ├── devspaces-config │ ├── checluster.yaml │ ├── configmap.yaml │ ├── external-secret.yaml │ ├── kustomization.yaml │ └── namespace.yaml ├── devspaces-operator │ ├── kustomization.yaml │ └── subscription.yaml ├── external-secrets-chart │ ├── cluster-secret-store.yaml │ ├── kustomization.yaml │ └── namespace.yaml ├── external-secrets-config │ ├── default-operatorconfig.yaml │ ├── kustomization.yaml │ └── vault-cluster-secret-store.yaml ├── external-secrets-operator │ ├── kustomization.yaml │ ├── namespace.yaml │ ├── operator-group.yaml │ └── subscription.yaml ├── gitops-bootstrap-policy │ ├── kustomization.yaml │ ├── managedclustersetbinding.yaml │ ├── manifests │ │ ├── gitops-bootstrap │ │ │ └── base │ │ │ │ ├── bootstrap-app.yaml │ │ │ │ └── kustomization.yaml │ │ ├── gitops-instance │ │ │ └── base │ │ │ │ ├── argocd.yaml │ │ │ │ ├── environment-variables-configmap.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ └── setenv-cmp-plugin-configmap.yaml │ │ └── gitops-subscription │ │ │ └── base │ │ │ ├── cluster-rolebinding.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── namespace.yaml │ │ │ └── subscription.yaml │ ├── placement.yaml │ └── policy-generator-config.yaml ├── image-registry-config │ ├── config.yaml │ ├── externalsecret.yaml │ └── kustomization.yaml ├── keycloak-config │ ├── db.yaml │ ├── devhub-realm.yaml │ ├── externalsecret.yaml │ ├── keycloak-tls-cert.yaml │ ├── keycloak.yaml │ └── kustomization.yaml ├── keycloak-operator │ ├── kustomization.yaml │ ├── namespace.yaml │ ├── operator.yaml │ └── subscription.yaml ├── kubechecks-chart │ ├── externalsecret.yaml │ ├── kustomization.yaml │ ├── namespace.yaml │ ├── rolebinding.yaml │ └── values.yaml ├── kubernetes-imagepuller-config │ ├── image-puller.yaml │ └── kustomization.yaml ├── kubernetes-imagepuller-operator │ └── kustomization.yaml ├── kyverno-chart │ ├── kustomization.yaml │ ├── namespace.yaml │ └── rbac.yaml ├── kyverno-policy-config │ ├── namespace-config-vault-access │ │ ├── 01_secret-engine-mount.yaml │ │ ├── 02_kube-auth-engine-mount.yaml │ │ ├── 03_kube-auth-engine-config.yaml │ │ ├── 04_policy-secret-reader.yaml │ │ ├── 05_auth-engine-role.yaml │ │ ├── 06_external-secret-store.yaml │ │ └── kustomization.yaml │ └── namespace.yaml ├── ldap-sync-config │ ├── cluster-role-binding.yaml │ ├── cluster-role.yaml │ ├── cron-job.yaml │ ├── externalsecret.yaml │ ├── kustomization.yaml │ ├── ldap-sync.yaml │ ├── namespace.yaml │ └── service-account.yaml ├── log-forwarder-config │ ├── cluster-log-forwarder.yaml │ ├── crb.yaml │ ├── kustomization.yaml │ └── service-account.yaml ├── lvm-operator │ ├── kustomization.yaml │ ├── namespace.yaml │ ├── operator-group.yaml │ └── subscription.yaml ├── lvm-storage │ ├── kustomization.yaml │ └── lvm-cluster.yaml ├── metallb-config │ ├── kustomization.yaml │ └── metallb.yaml ├── metallb-hcp-config │ ├── ipaddress-pool.yaml │ ├── kustomization.yaml │ ├── l2advertisement.yaml │ └── service.yaml ├── metallb-l2-config │ ├── ipaddress-pool.yaml │ ├── kustomization.yaml │ └── l2advertisement.yaml ├── metallb-operator │ ├── kustomization.yaml │ └── namespace.yaml ├── oauth-config │ ├── externalsecret.yaml │ ├── kustomization.yaml │ └── oauth.yaml ├── onepassword-connect-chart │ ├── deployment.yaml │ ├── kustomization.yaml │ ├── rb.yaml │ ├── secret-generator.yaml │ ├── secret.sops.yaml │ └── service.yaml ├── opendora-chart │ ├── deployment.yaml │ ├── ingress.yaml │ ├── kustomization.yaml │ ├── service-account.yaml │ └── service.yaml ├── openshift-gitops-config │ ├── argocd.yaml │ ├── cluster-rolebinding.yaml │ ├── kustomization.yaml │ ├── plugin-configmap.yaml │ └── setenv-cmp-plugin.yaml ├── openshift-gitops-operator │ ├── kustomization.yaml │ ├── namespace.yaml │ ├── operator-group.yaml │ └── subscription.yaml ├── openshift-logging-operator │ └── kustomization.yaml ├── openshift-nmstate-config │ ├── kustomization.yaml │ └── nmstate.yaml ├── openshift-nmstate │ ├── kustomization.yaml │ └── namespace.yaml ├── openshift-pipeline-as-code-repo-config │ ├── Chart.yaml │ └── values.yaml ├── openshift-pipelines-application │ ├── external-secret.yaml │ ├── kustomization.yaml │ └── pipeline.yaml ├── openshift-pipelines-config │ ├── kustomization.yaml │ ├── pac-externalsecret.yaml │ ├── task-cosign.yaml │ ├── task-git-cli-custom.yaml │ ├── task-helm-uninstall.yaml │ ├── task-helm-upgrade-from-source.yaml │ ├── task-kube-tools.yaml │ ├── task-open-pr.yaml │ ├── task-replace-string.yaml │ ├── task-rhacs-image-scan.yaml │ ├── task-s2i.yaml │ └── tekton-config.yaml ├── openshift-pipelines-operator │ ├── kustomization.yaml │ └── subscription.yaml ├── patch-operator │ ├── kustomization.yaml │ ├── namespace.yaml │ ├── operator.yaml │ ├── rbac.yaml │ └── subscription.yaml ├── reflector │ ├── kustomization.yaml │ ├── namespace.yaml │ └── rbac.yaml ├── reloader-chart │ ├── kustomization.yaml │ └── namespace.yaml ├── rhdh-operator │ ├── kustomization.yaml │ ├── namespace.yaml │ ├── operator.yaml │ └── subscription.yaml ├── root-application │ ├── kustomization.yaml │ └── root-application.yaml ├── sonarqube │ ├── deployment.yaml │ ├── ingress.yaml │ ├── kustomization.yaml │ ├── namespace.yaml │ ├── pgsql-cluster.yaml │ ├── pvc.yaml │ └── service.yaml ├── synology-csi-chart │ ├── externalsecret.yaml │ ├── kustomization.yaml │ ├── namespace.yaml │ ├── storage-class.yaml │ ├── synology-csi-scc.yaml │ └── volume-snapshot-class.yaml ├── tekton-dashboard │ ├── crb.yaml │ ├── ingress.yaml │ └── kustomization.yaml ├── vault-chart │ ├── kustomization.yaml │ ├── namespace.yaml │ └── rolebinding.yaml ├── vault-config-operator │ ├── kustomization.yaml │ ├── namespace.yaml │ ├── operator-group.yaml │ └── subscription.yaml ├── vault-config │ ├── admin-policy.yaml │ ├── external-secret-store.yaml │ ├── external-secret.yaml │ ├── kustomization.yaml │ ├── namespace.yaml │ └── secret-engine-mount.yaml ├── virtualization-config │ ├── hyper-converged.yaml │ └── kustomization.yaml ├── virtualization-operator │ ├── kustomization.yaml │ ├── namespace.yaml │ ├── operator-group.yaml │ └── subscription.yaml ├── virtualization-storageprofile-config │ ├── kustomization.yaml │ └── storage-profile.yaml ├── volsync-operator │ └── kustomization.yaml ├── web-terminal-config │ ├── dev-workspace-template.yaml │ └── kustomization.yaml └── web-terminal-operator │ └── kustomization.yaml ├── devfile.yaml ├── groups ├── all │ ├── kustomization.yaml │ └── values.yaml └── dev │ ├── kustomization.yaml │ └── values.yaml ├── helm └── charts │ ├── argocd-app-of-app │ ├── Chart.yaml │ ├── README.md │ ├── cluster-config-example.yaml │ ├── templates │ │ ├── applications.yaml │ │ └── projects.yaml │ └── values.yaml │ ├── cluster-deployment │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── agent-cluster-install.yaml │ │ ├── cluster-deployment.yaml │ │ ├── externalsecret.yaml │ │ ├── namespace.yaml │ │ ├── patches-rbac.yaml │ │ └── patches.yaml │ └── values.yaml │ ├── cluster-registration │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── gitops-boostrap-manifest-work.yaml │ │ ├── gitops-instance-manifest-work.yaml │ │ ├── gitops-operator-manifest-work.yaml │ │ ├── klusterlet-config.yaml │ │ └── managed-cluster.yaml │ └── values.yaml │ ├── create-cluster │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── cluster-deployment.yaml │ │ ├── external-secret-install-config.yaml │ │ ├── external-secret-vsphere-certs.yaml │ │ ├── external-secret-vsphere-creds.yaml │ │ ├── external-secret-vsphere-sshkey.yaml │ │ ├── externalsecret-pullsecret.yaml │ │ ├── klusterlet-addon.yaml │ │ ├── machine-pool.yaml │ │ ├── managed-cluster.yaml │ │ └── namespace.yaml │ └── values.yaml │ ├── hcp-cluster-deployment │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── certificate.yaml │ │ ├── externalsecret.yaml │ │ ├── hosted-cluster.yaml │ │ ├── klusterlet-addon-config.yaml │ │ ├── managed-cluster.yaml │ │ ├── namespace.yaml │ │ ├── node-pool.yaml │ │ └── secret-sshkey.yaml │ └── values.yaml │ ├── infra-env │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── baremetal-host.yaml │ │ ├── externalsecret.yaml │ │ ├── infraenv.yaml │ │ ├── namespace.yaml │ │ └── role.yaml │ └── values.yaml │ ├── pac-repository │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── namespace.yaml │ │ ├── repository.yaml │ │ └── role-binding.yaml │ └── values.yaml │ └── tenants-iac-gitops │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ ├── _helpers.tpl │ └── applicationset.yaml │ └── values.yaml ├── installer ├── proxmox │ ├── agent-config.yaml │ └── install-config.yaml └── vsphere │ └── install-config.yaml └── scripts └── kubeconform.sh /.bootstrap/openshift/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/.bootstrap/openshift/kustomization.yaml -------------------------------------------------------------------------------- /.bootstrap/openshift/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/.bootstrap/openshift/setup.sh -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/linters/.markdownlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/.github/linters/.markdownlint.yaml -------------------------------------------------------------------------------- /.github/linters/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/.github/linters/.prettierignore -------------------------------------------------------------------------------- /.github/linters/.prettierrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/.github/linters/.prettierrc.yaml -------------------------------------------------------------------------------- /.github/linters/.yamllint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/.github/linters/.yamllint.yaml -------------------------------------------------------------------------------- /.github/renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/.github/renovate.json5 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.sops.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/.sops.yaml -------------------------------------------------------------------------------- /.taskfiles/volsync/Taskfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/.taskfiles/volsync/Taskfile.yaml -------------------------------------------------------------------------------- /.taskfiles/volsync/resources/scripts/wait-for-job.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/.taskfiles/volsync/resources/scripts/wait-for-job.sh -------------------------------------------------------------------------------- /.taskfiles/volsync/resources/scripts/which-controller.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/.taskfiles/volsync/resources/scripts/which-controller.sh -------------------------------------------------------------------------------- /.taskfiles/volsync/resources/templates/list.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/.taskfiles/volsync/resources/templates/list.yaml.j2 -------------------------------------------------------------------------------- /.taskfiles/volsync/resources/templates/replicationdestination.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/.taskfiles/volsync/resources/templates/replicationdestination.yaml.j2 -------------------------------------------------------------------------------- /.taskfiles/volsync/resources/templates/unlock.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/.taskfiles/volsync/resources/templates/unlock.yaml.j2 -------------------------------------------------------------------------------- /.taskfiles/volsync/resources/templates/wipe.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/.taskfiles/volsync/resources/templates/wipe.yaml.j2 -------------------------------------------------------------------------------- /.tekton/pull-request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/.tekton/pull-request.yaml -------------------------------------------------------------------------------- /.yamllint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/.yamllint.yaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/README.md -------------------------------------------------------------------------------- /Taskfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/Taskfile.yml -------------------------------------------------------------------------------- /apps/virt-vm/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/apps/virt-vm/kustomization.yaml -------------------------------------------------------------------------------- /apps/virt-vm/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/apps/virt-vm/namespace.yaml -------------------------------------------------------------------------------- /apps/virt-vm/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/apps/virt-vm/secret.yaml -------------------------------------------------------------------------------- /apps/virt-vm/svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/apps/virt-vm/svc.yaml -------------------------------------------------------------------------------- /apps/virt-vm/vm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/apps/virt-vm/vm.yaml -------------------------------------------------------------------------------- /clusters/proxmox/acm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/clusters/proxmox/acm.yaml -------------------------------------------------------------------------------- /clusters/proxmox/acs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/clusters/proxmox/acs.yaml -------------------------------------------------------------------------------- /clusters/proxmox/alertmanager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/clusters/proxmox/alertmanager.yaml -------------------------------------------------------------------------------- /clusters/proxmox/cert-manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/clusters/proxmox/cert-manager.yaml -------------------------------------------------------------------------------- /clusters/proxmox/cloudflared.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/clusters/proxmox/cloudflared.yaml -------------------------------------------------------------------------------- /clusters/proxmox/cloudnative-pg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/clusters/proxmox/cloudnative-pg.yaml -------------------------------------------------------------------------------- /clusters/proxmox/developer-hub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/clusters/proxmox/developer-hub.yaml -------------------------------------------------------------------------------- /clusters/proxmox/devspaces.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/clusters/proxmox/devspaces.yaml -------------------------------------------------------------------------------- /clusters/proxmox/external-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/clusters/proxmox/external-secrets.yaml -------------------------------------------------------------------------------- /clusters/proxmox/image-registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/clusters/proxmox/image-registry.yaml -------------------------------------------------------------------------------- /clusters/proxmox/kubernetes-imagepuller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/clusters/proxmox/kubernetes-imagepuller.yaml -------------------------------------------------------------------------------- /clusters/proxmox/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/clusters/proxmox/kustomization.yaml -------------------------------------------------------------------------------- /clusters/proxmox/logging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/clusters/proxmox/logging.yaml -------------------------------------------------------------------------------- /clusters/proxmox/lvm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/clusters/proxmox/lvm.yaml -------------------------------------------------------------------------------- /clusters/proxmox/metallb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/clusters/proxmox/metallb.yaml -------------------------------------------------------------------------------- /clusters/proxmox/nmstate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/clusters/proxmox/nmstate.yaml -------------------------------------------------------------------------------- /clusters/proxmox/oauth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/clusters/proxmox/oauth.yaml -------------------------------------------------------------------------------- /clusters/proxmox/onepassword-connect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/clusters/proxmox/onepassword-connect.yaml -------------------------------------------------------------------------------- /clusters/proxmox/openshift-gitops.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/clusters/proxmox/openshift-gitops.yaml -------------------------------------------------------------------------------- /clusters/proxmox/openshift-pipelines.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/clusters/proxmox/openshift-pipelines.yaml -------------------------------------------------------------------------------- /clusters/proxmox/reflector.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/clusters/proxmox/reflector.yaml -------------------------------------------------------------------------------- /clusters/proxmox/reloader.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/clusters/proxmox/reloader.yaml -------------------------------------------------------------------------------- /clusters/proxmox/synology-csi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/clusters/proxmox/synology-csi.yaml -------------------------------------------------------------------------------- /clusters/proxmox/virtualization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/clusters/proxmox/virtualization.yaml -------------------------------------------------------------------------------- /clusters/proxmox/volsync.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/clusters/proxmox/volsync.yaml -------------------------------------------------------------------------------- /clusters/proxmox/web-terminal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/clusters/proxmox/web-terminal.yaml -------------------------------------------------------------------------------- /clusters/vsphere/acm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/clusters/vsphere/acm.yaml -------------------------------------------------------------------------------- /clusters/vsphere/alertmanager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/clusters/vsphere/alertmanager.yaml -------------------------------------------------------------------------------- /clusters/vsphere/cert-manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/clusters/vsphere/cert-manager.yaml -------------------------------------------------------------------------------- /clusters/vsphere/cloudflared.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/clusters/vsphere/cloudflared.yaml -------------------------------------------------------------------------------- /clusters/vsphere/external-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/clusters/vsphere/external-secrets.yaml -------------------------------------------------------------------------------- /clusters/vsphere/keycloak.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/clusters/vsphere/keycloak.yaml -------------------------------------------------------------------------------- /clusters/vsphere/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/clusters/vsphere/kustomization.yaml -------------------------------------------------------------------------------- /clusters/vsphere/oauth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/clusters/vsphere/oauth.yaml -------------------------------------------------------------------------------- /clusters/vsphere/onepassword-connect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/clusters/vsphere/onepassword-connect.yaml -------------------------------------------------------------------------------- /clusters/vsphere/openshift-gitops.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/clusters/vsphere/openshift-gitops.yaml -------------------------------------------------------------------------------- /clusters/vsphere/openshift-pipelines.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/clusters/vsphere/openshift-pipelines.yaml -------------------------------------------------------------------------------- /clusters/vsphere/overlays/vsphere1-cluster-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/clusters/vsphere/overlays/vsphere1-cluster-config/kustomization.yaml -------------------------------------------------------------------------------- /clusters/vsphere/reflector.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/clusters/vsphere/reflector.yaml -------------------------------------------------------------------------------- /clusters/vsphere/reloader.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/clusters/vsphere/reloader.yaml -------------------------------------------------------------------------------- /clusters/vsphere/rhdh.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/clusters/vsphere/rhdh.yaml -------------------------------------------------------------------------------- /clusters/vsphere/web-terminal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/clusters/vsphere/web-terminal.yaml -------------------------------------------------------------------------------- /code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/code-workspace -------------------------------------------------------------------------------- /components/aap-config/externalsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/aap-config/externalsecret.yaml -------------------------------------------------------------------------------- /components/aap-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/aap-config/kustomization.yaml -------------------------------------------------------------------------------- /components/aap-operator/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/aap-operator/kustomization.yaml -------------------------------------------------------------------------------- /components/aap-operator/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/aap-operator/namespace.yaml -------------------------------------------------------------------------------- /components/aap-operator/operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/aap-operator/operator.yaml -------------------------------------------------------------------------------- /components/aap-operator/subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/aap-operator/subscription.yaml -------------------------------------------------------------------------------- /components/acm-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/acm-config/kustomization.yaml -------------------------------------------------------------------------------- /components/acm-config/multi-cluster-hub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/acm-config/multi-cluster-hub.yaml -------------------------------------------------------------------------------- /components/acm-operator/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/acm-operator/kustomization.yaml -------------------------------------------------------------------------------- /components/acm-operator/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/acm-operator/namespace.yaml -------------------------------------------------------------------------------- /components/acm-operator/operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/acm-operator/operator.yaml -------------------------------------------------------------------------------- /components/acm-operator/subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/acm-operator/subscription.yaml -------------------------------------------------------------------------------- /components/acm-placement/clustersetbinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/acm-placement/clustersetbinding.yaml -------------------------------------------------------------------------------- /components/acm-placement/gitops-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/acm-placement/gitops-cluster.yaml -------------------------------------------------------------------------------- /components/acm-placement/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/acm-placement/kustomization.yaml -------------------------------------------------------------------------------- /components/acm-placement/placement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/acm-placement/placement.yaml -------------------------------------------------------------------------------- /components/acm-policies-config/argocd-notification-annotation-policy/configuration-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/acm-policies-config/argocd-notification-annotation-policy/configuration-policy.yaml -------------------------------------------------------------------------------- /components/acm-policies-config/argocd-notification-annotation-policy/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/acm-policies-config/argocd-notification-annotation-policy/kustomization.yaml -------------------------------------------------------------------------------- /components/acm-policies-config/argocd-notification-annotation-policy/policy-generator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/acm-policies-config/argocd-notification-annotation-policy/policy-generator.yaml -------------------------------------------------------------------------------- /components/acm-policies-config/configmap-copy-policy/config-map.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/acm-policies-config/configmap-copy-policy/config-map.yaml -------------------------------------------------------------------------------- /components/acm-policies-config/configmap-copy-policy/configuration-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/acm-policies-config/configmap-copy-policy/configuration-policy.yaml -------------------------------------------------------------------------------- /components/acm-policies-config/configmap-copy-policy/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/acm-policies-config/configmap-copy-policy/kustomization.yaml -------------------------------------------------------------------------------- /components/acm-policies-config/configmap-copy-policy/policy-generator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/acm-policies-config/configmap-copy-policy/policy-generator.yaml -------------------------------------------------------------------------------- /components/acm-policies-config/governance-standalone-hub-templating-addon/managed-cluster-addon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/acm-policies-config/governance-standalone-hub-templating-addon/managed-cluster-addon.yaml -------------------------------------------------------------------------------- /components/acm-policies-config/nodeport-policies/configuration-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/acm-policies-config/nodeport-policies/configuration-policy.yaml -------------------------------------------------------------------------------- /components/acm-policies-config/nodeport-policies/disallow-nodeport.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/acm-policies-config/nodeport-policies/disallow-nodeport.yaml -------------------------------------------------------------------------------- /components/acm-policies-config/nodeport-policies/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/acm-policies-config/nodeport-policies/kustomization.yaml -------------------------------------------------------------------------------- /components/acm-policies-config/nodeport-policies/policy-generator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/acm-policies-config/nodeport-policies/policy-generator.yaml -------------------------------------------------------------------------------- /components/acm-policies-config/secured-cluster-policy/configuration-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/acm-policies-config/secured-cluster-policy/configuration-policy.yaml -------------------------------------------------------------------------------- /components/acm-policies-config/secured-cluster-policy/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/acm-policies-config/secured-cluster-policy/kustomization.yaml -------------------------------------------------------------------------------- /components/acm-policies-config/secured-cluster-policy/placement-rule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/acm-policies-config/secured-cluster-policy/placement-rule.yaml -------------------------------------------------------------------------------- /components/acm-policies-config/secured-cluster-policy/policy-generator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/acm-policies-config/secured-cluster-policy/policy-generator.yaml -------------------------------------------------------------------------------- /components/acm-policies-config/sops-auth-policy/configuration-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/acm-policies-config/sops-auth-policy/configuration-policy.yaml -------------------------------------------------------------------------------- /components/acm-policies-config/sops-auth-policy/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/acm-policies-config/sops-auth-policy/kustomization.yaml -------------------------------------------------------------------------------- /components/acm-policies-config/sops-auth-policy/policy-generator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/acm-policies-config/sops-auth-policy/policy-generator.yaml -------------------------------------------------------------------------------- /components/acm-policies/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/acm-policies/kustomization.yaml -------------------------------------------------------------------------------- /components/acm-policies/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/acm-policies/namespace.yaml -------------------------------------------------------------------------------- /components/acm-policies/service-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/acm-policies/service-account.yaml -------------------------------------------------------------------------------- /components/acs-central-configuration/central-default-tls-cert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/acs-central-configuration/central-default-tls-cert.yaml -------------------------------------------------------------------------------- /components/acs-central-configuration/central.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/acs-central-configuration/central.yaml -------------------------------------------------------------------------------- /components/acs-central-configuration/console-link.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/acs-central-configuration/console-link.yaml -------------------------------------------------------------------------------- /components/acs-central-configuration/create-cluster-init-bundle-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/acs-central-configuration/create-cluster-init-bundle-job.yaml -------------------------------------------------------------------------------- /components/acs-central-configuration/create-cluster-init-bundle-sa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/acs-central-configuration/create-cluster-init-bundle-sa.yaml -------------------------------------------------------------------------------- /components/acs-central-configuration/job-create-auth-provider.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/acs-central-configuration/job-create-auth-provider.yaml -------------------------------------------------------------------------------- /components/acs-central-configuration/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/acs-central-configuration/kustomization.yaml -------------------------------------------------------------------------------- /components/acs-central-configuration/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/acs-central-configuration/namespace.yaml -------------------------------------------------------------------------------- /components/acs-central-configuration/secured-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/acs-central-configuration/secured-cluster.yaml -------------------------------------------------------------------------------- /components/acs-operator/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/acs-operator/kustomization.yaml -------------------------------------------------------------------------------- /components/acs-operator/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/acs-operator/namespace.yaml -------------------------------------------------------------------------------- /components/acs-secured-configuration/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/acs-secured-configuration/kustomization.yaml -------------------------------------------------------------------------------- /components/acs-secured-configuration/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/acs-secured-configuration/namespace.yaml -------------------------------------------------------------------------------- /components/acs-secured-configuration/secured-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/acs-secured-configuration/secured-cluster.yaml -------------------------------------------------------------------------------- /components/agent-service-config/agent-service-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/agent-service-config/agent-service-config.yaml -------------------------------------------------------------------------------- /components/agent-service-config/config-map.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/agent-service-config/config-map.yaml -------------------------------------------------------------------------------- /components/agent-service-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/agent-service-config/kustomization.yaml -------------------------------------------------------------------------------- /components/agent-service-config/provisioning.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/agent-service-config/provisioning.yaml -------------------------------------------------------------------------------- /components/alertmanager-config/externalsecret-alertmanager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/alertmanager-config/externalsecret-alertmanager.yaml -------------------------------------------------------------------------------- /components/alertmanager-config/externalsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/alertmanager-config/externalsecret.yaml -------------------------------------------------------------------------------- /components/alertmanager-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/alertmanager-config/kustomization.yaml -------------------------------------------------------------------------------- /components/alertmanager-config/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/alertmanager-config/values.yaml -------------------------------------------------------------------------------- /components/apache-devlake-chart/external-secret-regred.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/apache-devlake-chart/external-secret-regred.yaml -------------------------------------------------------------------------------- /components/apache-devlake-chart/external-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/apache-devlake-chart/external-secret.yaml -------------------------------------------------------------------------------- /components/apache-devlake-chart/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/apache-devlake-chart/ingress.yaml -------------------------------------------------------------------------------- /components/apache-devlake-chart/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/apache-devlake-chart/kustomization.yaml -------------------------------------------------------------------------------- /components/apache-devlake-chart/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/apache-devlake-chart/namespace.yaml -------------------------------------------------------------------------------- /components/argocd-chart/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/argocd-chart/kustomization.yaml -------------------------------------------------------------------------------- /components/argocd-events-config/event-bus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/argocd-events-config/event-bus.yaml -------------------------------------------------------------------------------- /components/argocd-events-config/event-source.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/argocd-events-config/event-source.yaml -------------------------------------------------------------------------------- /components/argocd-events-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/argocd-events-config/kustomization.yaml -------------------------------------------------------------------------------- /components/argocd-events-config/sensor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/argocd-events-config/sensor.yaml -------------------------------------------------------------------------------- /components/argocd-events/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/argocd-events/kustomization.yaml -------------------------------------------------------------------------------- /components/argocd-image-updater/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/argocd-image-updater/kustomization.yaml -------------------------------------------------------------------------------- /components/argocd-notifications/externalsecrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/argocd-notifications/externalsecrets.yaml -------------------------------------------------------------------------------- /components/argocd-notifications/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/argocd-notifications/kustomization.yaml -------------------------------------------------------------------------------- /components/argocd-notifications/notification-configuration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/argocd-notifications/notification-configuration.yaml -------------------------------------------------------------------------------- /components/argocd-rollout/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/argocd-rollout/kustomization.yaml -------------------------------------------------------------------------------- /components/argocd-rollout/rollout-manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/argocd-rollout/rollout-manager.yaml -------------------------------------------------------------------------------- /components/argocd-webhook/externalsecrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/argocd-webhook/externalsecrets.yaml -------------------------------------------------------------------------------- /components/argocd-webhook/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/argocd-webhook/kustomization.yaml -------------------------------------------------------------------------------- /components/argocd-workflows/cluster-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/argocd-workflows/cluster-rolebinding.yaml -------------------------------------------------------------------------------- /components/argocd-workflows/externalsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/argocd-workflows/externalsecret.yaml -------------------------------------------------------------------------------- /components/argocd-workflows/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/argocd-workflows/kustomization.yaml -------------------------------------------------------------------------------- /components/argocd-workflows/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/argocd-workflows/route.yaml -------------------------------------------------------------------------------- /components/argocd-workflows/service-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/argocd-workflows/service-account.yaml -------------------------------------------------------------------------------- /components/cert-manager-application/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/cert-manager-application/kustomization.yaml -------------------------------------------------------------------------------- /components/cert-manager-application/openshift-api/api-server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/cert-manager-application/openshift-api/api-server.yaml -------------------------------------------------------------------------------- /components/cert-manager-application/openshift-api/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/cert-manager-application/openshift-api/kustomization.yaml -------------------------------------------------------------------------------- /components/cert-manager-application/openshift-api/openshift-api-certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/cert-manager-application/openshift-api/openshift-api-certificate.yaml -------------------------------------------------------------------------------- /components/cert-manager-application/openshift-wildcard/ingress-controller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/cert-manager-application/openshift-wildcard/ingress-controller.yaml -------------------------------------------------------------------------------- /components/cert-manager-application/openshift-wildcard/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/cert-manager-application/openshift-wildcard/kustomization.yaml -------------------------------------------------------------------------------- /components/cert-manager-application/openshift-wildcard/openshift-wildcard-certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/cert-manager-application/openshift-wildcard/openshift-wildcard-certificate.yaml -------------------------------------------------------------------------------- /components/cert-manager-config/certmanager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/cert-manager-config/certmanager.yaml -------------------------------------------------------------------------------- /components/cert-manager-config/externalsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/cert-manager-config/externalsecret.yaml -------------------------------------------------------------------------------- /components/cert-manager-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/cert-manager-config/kustomization.yaml -------------------------------------------------------------------------------- /components/cert-manager-config/prod-cluster-issuer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/cert-manager-config/prod-cluster-issuer.yaml -------------------------------------------------------------------------------- /components/cert-manager-config/staging-cluster-issuer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/cert-manager-config/staging-cluster-issuer.yaml -------------------------------------------------------------------------------- /components/cert-manager-operator/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/cert-manager-operator/kustomization.yaml -------------------------------------------------------------------------------- /components/cert-manager-operator/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/cert-manager-operator/namespace.yaml -------------------------------------------------------------------------------- /components/cloudflared/external-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/cloudflared/external-secret.yaml -------------------------------------------------------------------------------- /components/cloudflared/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/cloudflared/kustomization.yaml -------------------------------------------------------------------------------- /components/cloudflared/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/cloudflared/namespace.yaml -------------------------------------------------------------------------------- /components/cloudflared/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/cloudflared/values.yaml -------------------------------------------------------------------------------- /components/cloudnative-pg-operator/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/cloudnative-pg-operator/kustomization.yaml -------------------------------------------------------------------------------- /components/cloudnative-pg-operator/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/cloudnative-pg-operator/namespace.yaml -------------------------------------------------------------------------------- /components/cluster-rbac-config/crb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/cluster-rbac-config/crb.yaml -------------------------------------------------------------------------------- /components/cluster-rbac-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/cluster-rbac-config/kustomization.yaml -------------------------------------------------------------------------------- /components/crossplane-chart/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/crossplane-chart/kustomization.yaml -------------------------------------------------------------------------------- /components/crossplane-chart/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/crossplane-chart/namespace.yaml -------------------------------------------------------------------------------- /components/crossplane-compositions/azure/storage/composite-resource-definition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/crossplane-compositions/azure/storage/composite-resource-definition.yaml -------------------------------------------------------------------------------- /components/crossplane-compositions/azure/storage/composition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/crossplane-compositions/azure/storage/composition.yaml -------------------------------------------------------------------------------- /components/crossplane-compositions/azure/storage/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/crossplane-compositions/azure/storage/kustomization.yaml -------------------------------------------------------------------------------- /components/csvwatchdog-operator/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/csvwatchdog-operator/kustomization.yaml -------------------------------------------------------------------------------- /components/developer-hub-config/aap-tools-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/developer-hub-config/aap-tools-deployment.yaml -------------------------------------------------------------------------------- /components/developer-hub-config/app-config-rhdh.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/developer-hub-config/app-config-rhdh.yaml -------------------------------------------------------------------------------- /components/developer-hub-config/backstage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/developer-hub-config/backstage.yaml -------------------------------------------------------------------------------- /components/developer-hub-config/config/home-page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/developer-hub-config/config/home-page.json -------------------------------------------------------------------------------- /components/developer-hub-config/config/learning-paths.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/developer-hub-config/config/learning-paths.json -------------------------------------------------------------------------------- /components/developer-hub-config/config/tech-radar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/developer-hub-config/config/tech-radar.json -------------------------------------------------------------------------------- /components/developer-hub-config/console-link.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/developer-hub-config/console-link.yaml -------------------------------------------------------------------------------- /components/developer-hub-config/dynamic-plugin-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/developer-hub-config/dynamic-plugin-pvc.yaml -------------------------------------------------------------------------------- /components/developer-hub-config/dynamic-plugins-rhdh.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/developer-hub-config/dynamic-plugins-rhdh.yaml -------------------------------------------------------------------------------- /components/developer-hub-config/externalsecret-devhub-read.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/developer-hub-config/externalsecret-devhub-read.yaml -------------------------------------------------------------------------------- /components/developer-hub-config/externalsecret-pipeline-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/developer-hub-config/externalsecret-pipeline-build.yaml -------------------------------------------------------------------------------- /components/developer-hub-config/externalsecret-pullsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/developer-hub-config/externalsecret-pullsecret.yaml -------------------------------------------------------------------------------- /components/developer-hub-config/externalsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/developer-hub-config/externalsecret.yaml -------------------------------------------------------------------------------- /components/developer-hub-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/developer-hub-config/kustomization.yaml -------------------------------------------------------------------------------- /components/developer-hub-config/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/developer-hub-config/namespace.yaml -------------------------------------------------------------------------------- /components/developer-hub-config/ocm-rolebindings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/developer-hub-config/ocm-rolebindings.yaml -------------------------------------------------------------------------------- /components/developer-hub-config/rbac-conditional-policies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/developer-hub-config/rbac-conditional-policies.yaml -------------------------------------------------------------------------------- /components/developer-hub-config/rbac-policies.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/developer-hub-config/rbac-policies.csv -------------------------------------------------------------------------------- /components/developer-hub-config/rolebindings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/developer-hub-config/rolebindings.yaml -------------------------------------------------------------------------------- /components/devspaces-config/checluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/devspaces-config/checluster.yaml -------------------------------------------------------------------------------- /components/devspaces-config/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/devspaces-config/configmap.yaml -------------------------------------------------------------------------------- /components/devspaces-config/external-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/devspaces-config/external-secret.yaml -------------------------------------------------------------------------------- /components/devspaces-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/devspaces-config/kustomization.yaml -------------------------------------------------------------------------------- /components/devspaces-config/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/devspaces-config/namespace.yaml -------------------------------------------------------------------------------- /components/devspaces-operator/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/devspaces-operator/kustomization.yaml -------------------------------------------------------------------------------- /components/devspaces-operator/subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/devspaces-operator/subscription.yaml -------------------------------------------------------------------------------- /components/external-secrets-chart/cluster-secret-store.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/external-secrets-chart/cluster-secret-store.yaml -------------------------------------------------------------------------------- /components/external-secrets-chart/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/external-secrets-chart/kustomization.yaml -------------------------------------------------------------------------------- /components/external-secrets-chart/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/external-secrets-chart/namespace.yaml -------------------------------------------------------------------------------- /components/external-secrets-config/default-operatorconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/external-secrets-config/default-operatorconfig.yaml -------------------------------------------------------------------------------- /components/external-secrets-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/external-secrets-config/kustomization.yaml -------------------------------------------------------------------------------- /components/external-secrets-config/vault-cluster-secret-store.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/external-secrets-config/vault-cluster-secret-store.yaml -------------------------------------------------------------------------------- /components/external-secrets-operator/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/external-secrets-operator/kustomization.yaml -------------------------------------------------------------------------------- /components/external-secrets-operator/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/external-secrets-operator/namespace.yaml -------------------------------------------------------------------------------- /components/external-secrets-operator/operator-group.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/external-secrets-operator/operator-group.yaml -------------------------------------------------------------------------------- /components/external-secrets-operator/subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/external-secrets-operator/subscription.yaml -------------------------------------------------------------------------------- /components/gitops-bootstrap-policy/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/gitops-bootstrap-policy/kustomization.yaml -------------------------------------------------------------------------------- /components/gitops-bootstrap-policy/managedclustersetbinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/gitops-bootstrap-policy/managedclustersetbinding.yaml -------------------------------------------------------------------------------- /components/gitops-bootstrap-policy/manifests/gitops-bootstrap/base/bootstrap-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/gitops-bootstrap-policy/manifests/gitops-bootstrap/base/bootstrap-app.yaml -------------------------------------------------------------------------------- /components/gitops-bootstrap-policy/manifests/gitops-bootstrap/base/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - bootstrap-app.yaml 3 | -------------------------------------------------------------------------------- /components/gitops-bootstrap-policy/manifests/gitops-instance/base/argocd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/gitops-bootstrap-policy/manifests/gitops-instance/base/argocd.yaml -------------------------------------------------------------------------------- /components/gitops-bootstrap-policy/manifests/gitops-instance/base/environment-variables-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/gitops-bootstrap-policy/manifests/gitops-instance/base/environment-variables-configmap.yaml -------------------------------------------------------------------------------- /components/gitops-bootstrap-policy/manifests/gitops-instance/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/gitops-bootstrap-policy/manifests/gitops-instance/base/kustomization.yaml -------------------------------------------------------------------------------- /components/gitops-bootstrap-policy/manifests/gitops-instance/base/setenv-cmp-plugin-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/gitops-bootstrap-policy/manifests/gitops-instance/base/setenv-cmp-plugin-configmap.yaml -------------------------------------------------------------------------------- /components/gitops-bootstrap-policy/manifests/gitops-subscription/base/cluster-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/gitops-bootstrap-policy/manifests/gitops-subscription/base/cluster-rolebinding.yaml -------------------------------------------------------------------------------- /components/gitops-bootstrap-policy/manifests/gitops-subscription/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/gitops-bootstrap-policy/manifests/gitops-subscription/base/kustomization.yaml -------------------------------------------------------------------------------- /components/gitops-bootstrap-policy/manifests/gitops-subscription/base/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/gitops-bootstrap-policy/manifests/gitops-subscription/base/namespace.yaml -------------------------------------------------------------------------------- /components/gitops-bootstrap-policy/manifests/gitops-subscription/base/subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/gitops-bootstrap-policy/manifests/gitops-subscription/base/subscription.yaml -------------------------------------------------------------------------------- /components/gitops-bootstrap-policy/placement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/gitops-bootstrap-policy/placement.yaml -------------------------------------------------------------------------------- /components/gitops-bootstrap-policy/policy-generator-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/gitops-bootstrap-policy/policy-generator-config.yaml -------------------------------------------------------------------------------- /components/image-registry-config/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/image-registry-config/config.yaml -------------------------------------------------------------------------------- /components/image-registry-config/externalsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/image-registry-config/externalsecret.yaml -------------------------------------------------------------------------------- /components/image-registry-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/image-registry-config/kustomization.yaml -------------------------------------------------------------------------------- /components/keycloak-config/db.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/keycloak-config/db.yaml -------------------------------------------------------------------------------- /components/keycloak-config/devhub-realm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/keycloak-config/devhub-realm.yaml -------------------------------------------------------------------------------- /components/keycloak-config/externalsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/keycloak-config/externalsecret.yaml -------------------------------------------------------------------------------- /components/keycloak-config/keycloak-tls-cert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/keycloak-config/keycloak-tls-cert.yaml -------------------------------------------------------------------------------- /components/keycloak-config/keycloak.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/keycloak-config/keycloak.yaml -------------------------------------------------------------------------------- /components/keycloak-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/keycloak-config/kustomization.yaml -------------------------------------------------------------------------------- /components/keycloak-operator/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/keycloak-operator/kustomization.yaml -------------------------------------------------------------------------------- /components/keycloak-operator/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/keycloak-operator/namespace.yaml -------------------------------------------------------------------------------- /components/keycloak-operator/operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/keycloak-operator/operator.yaml -------------------------------------------------------------------------------- /components/keycloak-operator/subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/keycloak-operator/subscription.yaml -------------------------------------------------------------------------------- /components/kubechecks-chart/externalsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/kubechecks-chart/externalsecret.yaml -------------------------------------------------------------------------------- /components/kubechecks-chart/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/kubechecks-chart/kustomization.yaml -------------------------------------------------------------------------------- /components/kubechecks-chart/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/kubechecks-chart/namespace.yaml -------------------------------------------------------------------------------- /components/kubechecks-chart/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/kubechecks-chart/rolebinding.yaml -------------------------------------------------------------------------------- /components/kubechecks-chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/kubechecks-chart/values.yaml -------------------------------------------------------------------------------- /components/kubernetes-imagepuller-config/image-puller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/kubernetes-imagepuller-config/image-puller.yaml -------------------------------------------------------------------------------- /components/kubernetes-imagepuller-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/kubernetes-imagepuller-config/kustomization.yaml -------------------------------------------------------------------------------- /components/kubernetes-imagepuller-operator/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/kubernetes-imagepuller-operator/kustomization.yaml -------------------------------------------------------------------------------- /components/kyverno-chart/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/kyverno-chart/kustomization.yaml -------------------------------------------------------------------------------- /components/kyverno-chart/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/kyverno-chart/namespace.yaml -------------------------------------------------------------------------------- /components/kyverno-chart/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/kyverno-chart/rbac.yaml -------------------------------------------------------------------------------- /components/kyverno-policy-config/namespace-config-vault-access/01_secret-engine-mount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/kyverno-policy-config/namespace-config-vault-access/01_secret-engine-mount.yaml -------------------------------------------------------------------------------- /components/kyverno-policy-config/namespace-config-vault-access/02_kube-auth-engine-mount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/kyverno-policy-config/namespace-config-vault-access/02_kube-auth-engine-mount.yaml -------------------------------------------------------------------------------- /components/kyverno-policy-config/namespace-config-vault-access/03_kube-auth-engine-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/kyverno-policy-config/namespace-config-vault-access/03_kube-auth-engine-config.yaml -------------------------------------------------------------------------------- /components/kyverno-policy-config/namespace-config-vault-access/04_policy-secret-reader.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/kyverno-policy-config/namespace-config-vault-access/04_policy-secret-reader.yaml -------------------------------------------------------------------------------- /components/kyverno-policy-config/namespace-config-vault-access/05_auth-engine-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/kyverno-policy-config/namespace-config-vault-access/05_auth-engine-role.yaml -------------------------------------------------------------------------------- /components/kyverno-policy-config/namespace-config-vault-access/06_external-secret-store.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/kyverno-policy-config/namespace-config-vault-access/06_external-secret-store.yaml -------------------------------------------------------------------------------- /components/kyverno-policy-config/namespace-config-vault-access/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/kyverno-policy-config/namespace-config-vault-access/kustomization.yaml -------------------------------------------------------------------------------- /components/kyverno-policy-config/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/kyverno-policy-config/namespace.yaml -------------------------------------------------------------------------------- /components/ldap-sync-config/cluster-role-binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/ldap-sync-config/cluster-role-binding.yaml -------------------------------------------------------------------------------- /components/ldap-sync-config/cluster-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/ldap-sync-config/cluster-role.yaml -------------------------------------------------------------------------------- /components/ldap-sync-config/cron-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/ldap-sync-config/cron-job.yaml -------------------------------------------------------------------------------- /components/ldap-sync-config/externalsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/ldap-sync-config/externalsecret.yaml -------------------------------------------------------------------------------- /components/ldap-sync-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/ldap-sync-config/kustomization.yaml -------------------------------------------------------------------------------- /components/ldap-sync-config/ldap-sync.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/ldap-sync-config/ldap-sync.yaml -------------------------------------------------------------------------------- /components/ldap-sync-config/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/ldap-sync-config/namespace.yaml -------------------------------------------------------------------------------- /components/ldap-sync-config/service-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/ldap-sync-config/service-account.yaml -------------------------------------------------------------------------------- /components/log-forwarder-config/cluster-log-forwarder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/log-forwarder-config/cluster-log-forwarder.yaml -------------------------------------------------------------------------------- /components/log-forwarder-config/crb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/log-forwarder-config/crb.yaml -------------------------------------------------------------------------------- /components/log-forwarder-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/log-forwarder-config/kustomization.yaml -------------------------------------------------------------------------------- /components/log-forwarder-config/service-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/log-forwarder-config/service-account.yaml -------------------------------------------------------------------------------- /components/lvm-operator/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/lvm-operator/kustomization.yaml -------------------------------------------------------------------------------- /components/lvm-operator/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/lvm-operator/namespace.yaml -------------------------------------------------------------------------------- /components/lvm-operator/operator-group.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/lvm-operator/operator-group.yaml -------------------------------------------------------------------------------- /components/lvm-operator/subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/lvm-operator/subscription.yaml -------------------------------------------------------------------------------- /components/lvm-storage/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/lvm-storage/kustomization.yaml -------------------------------------------------------------------------------- /components/lvm-storage/lvm-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/lvm-storage/lvm-cluster.yaml -------------------------------------------------------------------------------- /components/metallb-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/metallb-config/kustomization.yaml -------------------------------------------------------------------------------- /components/metallb-config/metallb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/metallb-config/metallb.yaml -------------------------------------------------------------------------------- /components/metallb-hcp-config/ipaddress-pool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/metallb-hcp-config/ipaddress-pool.yaml -------------------------------------------------------------------------------- /components/metallb-hcp-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/metallb-hcp-config/kustomization.yaml -------------------------------------------------------------------------------- /components/metallb-hcp-config/l2advertisement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/metallb-hcp-config/l2advertisement.yaml -------------------------------------------------------------------------------- /components/metallb-hcp-config/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/metallb-hcp-config/service.yaml -------------------------------------------------------------------------------- /components/metallb-l2-config/ipaddress-pool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/metallb-l2-config/ipaddress-pool.yaml -------------------------------------------------------------------------------- /components/metallb-l2-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/metallb-l2-config/kustomization.yaml -------------------------------------------------------------------------------- /components/metallb-l2-config/l2advertisement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/metallb-l2-config/l2advertisement.yaml -------------------------------------------------------------------------------- /components/metallb-operator/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/metallb-operator/kustomization.yaml -------------------------------------------------------------------------------- /components/metallb-operator/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/metallb-operator/namespace.yaml -------------------------------------------------------------------------------- /components/oauth-config/externalsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/oauth-config/externalsecret.yaml -------------------------------------------------------------------------------- /components/oauth-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/oauth-config/kustomization.yaml -------------------------------------------------------------------------------- /components/oauth-config/oauth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/oauth-config/oauth.yaml -------------------------------------------------------------------------------- /components/onepassword-connect-chart/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/onepassword-connect-chart/deployment.yaml -------------------------------------------------------------------------------- /components/onepassword-connect-chart/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/onepassword-connect-chart/kustomization.yaml -------------------------------------------------------------------------------- /components/onepassword-connect-chart/rb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/onepassword-connect-chart/rb.yaml -------------------------------------------------------------------------------- /components/onepassword-connect-chart/secret-generator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/onepassword-connect-chart/secret-generator.yaml -------------------------------------------------------------------------------- /components/onepassword-connect-chart/secret.sops.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/onepassword-connect-chart/secret.sops.yaml -------------------------------------------------------------------------------- /components/onepassword-connect-chart/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/onepassword-connect-chart/service.yaml -------------------------------------------------------------------------------- /components/opendora-chart/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/opendora-chart/deployment.yaml -------------------------------------------------------------------------------- /components/opendora-chart/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/opendora-chart/ingress.yaml -------------------------------------------------------------------------------- /components/opendora-chart/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/opendora-chart/kustomization.yaml -------------------------------------------------------------------------------- /components/opendora-chart/service-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/opendora-chart/service-account.yaml -------------------------------------------------------------------------------- /components/opendora-chart/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/opendora-chart/service.yaml -------------------------------------------------------------------------------- /components/openshift-gitops-config/argocd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/openshift-gitops-config/argocd.yaml -------------------------------------------------------------------------------- /components/openshift-gitops-config/cluster-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/openshift-gitops-config/cluster-rolebinding.yaml -------------------------------------------------------------------------------- /components/openshift-gitops-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/openshift-gitops-config/kustomization.yaml -------------------------------------------------------------------------------- /components/openshift-gitops-config/plugin-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/openshift-gitops-config/plugin-configmap.yaml -------------------------------------------------------------------------------- /components/openshift-gitops-config/setenv-cmp-plugin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/openshift-gitops-config/setenv-cmp-plugin.yaml -------------------------------------------------------------------------------- /components/openshift-gitops-operator/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/openshift-gitops-operator/kustomization.yaml -------------------------------------------------------------------------------- /components/openshift-gitops-operator/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/openshift-gitops-operator/namespace.yaml -------------------------------------------------------------------------------- /components/openshift-gitops-operator/operator-group.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/openshift-gitops-operator/operator-group.yaml -------------------------------------------------------------------------------- /components/openshift-gitops-operator/subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/openshift-gitops-operator/subscription.yaml -------------------------------------------------------------------------------- /components/openshift-logging-operator/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/openshift-logging-operator/kustomization.yaml -------------------------------------------------------------------------------- /components/openshift-nmstate-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/openshift-nmstate-config/kustomization.yaml -------------------------------------------------------------------------------- /components/openshift-nmstate-config/nmstate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/openshift-nmstate-config/nmstate.yaml -------------------------------------------------------------------------------- /components/openshift-nmstate/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/openshift-nmstate/kustomization.yaml -------------------------------------------------------------------------------- /components/openshift-nmstate/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/openshift-nmstate/namespace.yaml -------------------------------------------------------------------------------- /components/openshift-pipeline-as-code-repo-config/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/openshift-pipeline-as-code-repo-config/Chart.yaml -------------------------------------------------------------------------------- /components/openshift-pipeline-as-code-repo-config/values.yaml: -------------------------------------------------------------------------------- 1 | repositories: [] 2 | -------------------------------------------------------------------------------- /components/openshift-pipelines-application/external-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/openshift-pipelines-application/external-secret.yaml -------------------------------------------------------------------------------- /components/openshift-pipelines-application/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/openshift-pipelines-application/kustomization.yaml -------------------------------------------------------------------------------- /components/openshift-pipelines-application/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/openshift-pipelines-application/pipeline.yaml -------------------------------------------------------------------------------- /components/openshift-pipelines-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/openshift-pipelines-config/kustomization.yaml -------------------------------------------------------------------------------- /components/openshift-pipelines-config/pac-externalsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/openshift-pipelines-config/pac-externalsecret.yaml -------------------------------------------------------------------------------- /components/openshift-pipelines-config/task-cosign.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/openshift-pipelines-config/task-cosign.yaml -------------------------------------------------------------------------------- /components/openshift-pipelines-config/task-git-cli-custom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/openshift-pipelines-config/task-git-cli-custom.yaml -------------------------------------------------------------------------------- /components/openshift-pipelines-config/task-helm-uninstall.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/openshift-pipelines-config/task-helm-uninstall.yaml -------------------------------------------------------------------------------- /components/openshift-pipelines-config/task-helm-upgrade-from-source.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/openshift-pipelines-config/task-helm-upgrade-from-source.yaml -------------------------------------------------------------------------------- /components/openshift-pipelines-config/task-kube-tools.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/openshift-pipelines-config/task-kube-tools.yaml -------------------------------------------------------------------------------- /components/openshift-pipelines-config/task-open-pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/openshift-pipelines-config/task-open-pr.yaml -------------------------------------------------------------------------------- /components/openshift-pipelines-config/task-replace-string.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/openshift-pipelines-config/task-replace-string.yaml -------------------------------------------------------------------------------- /components/openshift-pipelines-config/task-rhacs-image-scan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/openshift-pipelines-config/task-rhacs-image-scan.yaml -------------------------------------------------------------------------------- /components/openshift-pipelines-config/task-s2i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/openshift-pipelines-config/task-s2i.yaml -------------------------------------------------------------------------------- /components/openshift-pipelines-config/tekton-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/openshift-pipelines-config/tekton-config.yaml -------------------------------------------------------------------------------- /components/openshift-pipelines-operator/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/openshift-pipelines-operator/kustomization.yaml -------------------------------------------------------------------------------- /components/openshift-pipelines-operator/subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/openshift-pipelines-operator/subscription.yaml -------------------------------------------------------------------------------- /components/patch-operator/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/patch-operator/kustomization.yaml -------------------------------------------------------------------------------- /components/patch-operator/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/patch-operator/namespace.yaml -------------------------------------------------------------------------------- /components/patch-operator/operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/patch-operator/operator.yaml -------------------------------------------------------------------------------- /components/patch-operator/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/patch-operator/rbac.yaml -------------------------------------------------------------------------------- /components/patch-operator/subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/patch-operator/subscription.yaml -------------------------------------------------------------------------------- /components/reflector/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/reflector/kustomization.yaml -------------------------------------------------------------------------------- /components/reflector/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/reflector/namespace.yaml -------------------------------------------------------------------------------- /components/reflector/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/reflector/rbac.yaml -------------------------------------------------------------------------------- /components/reloader-chart/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/reloader-chart/kustomization.yaml -------------------------------------------------------------------------------- /components/reloader-chart/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/reloader-chart/namespace.yaml -------------------------------------------------------------------------------- /components/rhdh-operator/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/rhdh-operator/kustomization.yaml -------------------------------------------------------------------------------- /components/rhdh-operator/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/rhdh-operator/namespace.yaml -------------------------------------------------------------------------------- /components/rhdh-operator/operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/rhdh-operator/operator.yaml -------------------------------------------------------------------------------- /components/rhdh-operator/subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/rhdh-operator/subscription.yaml -------------------------------------------------------------------------------- /components/root-application/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/root-application/kustomization.yaml -------------------------------------------------------------------------------- /components/root-application/root-application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/root-application/root-application.yaml -------------------------------------------------------------------------------- /components/sonarqube/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/sonarqube/deployment.yaml -------------------------------------------------------------------------------- /components/sonarqube/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/sonarqube/ingress.yaml -------------------------------------------------------------------------------- /components/sonarqube/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/sonarqube/kustomization.yaml -------------------------------------------------------------------------------- /components/sonarqube/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/sonarqube/namespace.yaml -------------------------------------------------------------------------------- /components/sonarqube/pgsql-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/sonarqube/pgsql-cluster.yaml -------------------------------------------------------------------------------- /components/sonarqube/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/sonarqube/pvc.yaml -------------------------------------------------------------------------------- /components/sonarqube/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/sonarqube/service.yaml -------------------------------------------------------------------------------- /components/synology-csi-chart/externalsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/synology-csi-chart/externalsecret.yaml -------------------------------------------------------------------------------- /components/synology-csi-chart/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/synology-csi-chart/kustomization.yaml -------------------------------------------------------------------------------- /components/synology-csi-chart/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/synology-csi-chart/namespace.yaml -------------------------------------------------------------------------------- /components/synology-csi-chart/storage-class.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/synology-csi-chart/storage-class.yaml -------------------------------------------------------------------------------- /components/synology-csi-chart/synology-csi-scc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/synology-csi-chart/synology-csi-scc.yaml -------------------------------------------------------------------------------- /components/synology-csi-chart/volume-snapshot-class.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/synology-csi-chart/volume-snapshot-class.yaml -------------------------------------------------------------------------------- /components/tekton-dashboard/crb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/tekton-dashboard/crb.yaml -------------------------------------------------------------------------------- /components/tekton-dashboard/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/tekton-dashboard/ingress.yaml -------------------------------------------------------------------------------- /components/tekton-dashboard/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/tekton-dashboard/kustomization.yaml -------------------------------------------------------------------------------- /components/vault-chart/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/vault-chart/kustomization.yaml -------------------------------------------------------------------------------- /components/vault-chart/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/vault-chart/namespace.yaml -------------------------------------------------------------------------------- /components/vault-chart/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/vault-chart/rolebinding.yaml -------------------------------------------------------------------------------- /components/vault-config-operator/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/vault-config-operator/kustomization.yaml -------------------------------------------------------------------------------- /components/vault-config-operator/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/vault-config-operator/namespace.yaml -------------------------------------------------------------------------------- /components/vault-config-operator/operator-group.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/vault-config-operator/operator-group.yaml -------------------------------------------------------------------------------- /components/vault-config-operator/subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/vault-config-operator/subscription.yaml -------------------------------------------------------------------------------- /components/vault-config/admin-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/vault-config/admin-policy.yaml -------------------------------------------------------------------------------- /components/vault-config/external-secret-store.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/vault-config/external-secret-store.yaml -------------------------------------------------------------------------------- /components/vault-config/external-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/vault-config/external-secret.yaml -------------------------------------------------------------------------------- /components/vault-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/vault-config/kustomization.yaml -------------------------------------------------------------------------------- /components/vault-config/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/vault-config/namespace.yaml -------------------------------------------------------------------------------- /components/vault-config/secret-engine-mount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/vault-config/secret-engine-mount.yaml -------------------------------------------------------------------------------- /components/virtualization-config/hyper-converged.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/virtualization-config/hyper-converged.yaml -------------------------------------------------------------------------------- /components/virtualization-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/virtualization-config/kustomization.yaml -------------------------------------------------------------------------------- /components/virtualization-operator/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/virtualization-operator/kustomization.yaml -------------------------------------------------------------------------------- /components/virtualization-operator/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/virtualization-operator/namespace.yaml -------------------------------------------------------------------------------- /components/virtualization-operator/operator-group.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/virtualization-operator/operator-group.yaml -------------------------------------------------------------------------------- /components/virtualization-operator/subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/virtualization-operator/subscription.yaml -------------------------------------------------------------------------------- /components/virtualization-storageprofile-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/virtualization-storageprofile-config/kustomization.yaml -------------------------------------------------------------------------------- /components/virtualization-storageprofile-config/storage-profile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/virtualization-storageprofile-config/storage-profile.yaml -------------------------------------------------------------------------------- /components/volsync-operator/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/volsync-operator/kustomization.yaml -------------------------------------------------------------------------------- /components/web-terminal-config/dev-workspace-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/web-terminal-config/dev-workspace-template.yaml -------------------------------------------------------------------------------- /components/web-terminal-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/web-terminal-config/kustomization.yaml -------------------------------------------------------------------------------- /components/web-terminal-operator/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/components/web-terminal-operator/kustomization.yaml -------------------------------------------------------------------------------- /devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/devfile.yaml -------------------------------------------------------------------------------- /groups/all/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/groups/all/kustomization.yaml -------------------------------------------------------------------------------- /groups/all/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/groups/all/values.yaml -------------------------------------------------------------------------------- /groups/dev/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/groups/dev/kustomization.yaml -------------------------------------------------------------------------------- /groups/dev/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/groups/dev/values.yaml -------------------------------------------------------------------------------- /helm/charts/argocd-app-of-app/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/argocd-app-of-app/Chart.yaml -------------------------------------------------------------------------------- /helm/charts/argocd-app-of-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/argocd-app-of-app/README.md -------------------------------------------------------------------------------- /helm/charts/argocd-app-of-app/cluster-config-example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/argocd-app-of-app/cluster-config-example.yaml -------------------------------------------------------------------------------- /helm/charts/argocd-app-of-app/templates/applications.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/argocd-app-of-app/templates/applications.yaml -------------------------------------------------------------------------------- /helm/charts/argocd-app-of-app/templates/projects.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/argocd-app-of-app/templates/projects.yaml -------------------------------------------------------------------------------- /helm/charts/argocd-app-of-app/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/argocd-app-of-app/values.yaml -------------------------------------------------------------------------------- /helm/charts/cluster-deployment/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/cluster-deployment/.helmignore -------------------------------------------------------------------------------- /helm/charts/cluster-deployment/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/cluster-deployment/Chart.yaml -------------------------------------------------------------------------------- /helm/charts/cluster-deployment/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/cluster-deployment/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/charts/cluster-deployment/templates/agent-cluster-install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/cluster-deployment/templates/agent-cluster-install.yaml -------------------------------------------------------------------------------- /helm/charts/cluster-deployment/templates/cluster-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/cluster-deployment/templates/cluster-deployment.yaml -------------------------------------------------------------------------------- /helm/charts/cluster-deployment/templates/externalsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/cluster-deployment/templates/externalsecret.yaml -------------------------------------------------------------------------------- /helm/charts/cluster-deployment/templates/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/cluster-deployment/templates/namespace.yaml -------------------------------------------------------------------------------- /helm/charts/cluster-deployment/templates/patches-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/cluster-deployment/templates/patches-rbac.yaml -------------------------------------------------------------------------------- /helm/charts/cluster-deployment/templates/patches.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/cluster-deployment/templates/patches.yaml -------------------------------------------------------------------------------- /helm/charts/cluster-deployment/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/cluster-deployment/values.yaml -------------------------------------------------------------------------------- /helm/charts/cluster-registration/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/cluster-registration/.helmignore -------------------------------------------------------------------------------- /helm/charts/cluster-registration/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/cluster-registration/Chart.yaml -------------------------------------------------------------------------------- /helm/charts/cluster-registration/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/cluster-registration/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/charts/cluster-registration/templates/gitops-boostrap-manifest-work.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/cluster-registration/templates/gitops-boostrap-manifest-work.yaml -------------------------------------------------------------------------------- /helm/charts/cluster-registration/templates/gitops-instance-manifest-work.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/cluster-registration/templates/gitops-instance-manifest-work.yaml -------------------------------------------------------------------------------- /helm/charts/cluster-registration/templates/gitops-operator-manifest-work.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/cluster-registration/templates/gitops-operator-manifest-work.yaml -------------------------------------------------------------------------------- /helm/charts/cluster-registration/templates/klusterlet-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/cluster-registration/templates/klusterlet-config.yaml -------------------------------------------------------------------------------- /helm/charts/cluster-registration/templates/managed-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/cluster-registration/templates/managed-cluster.yaml -------------------------------------------------------------------------------- /helm/charts/cluster-registration/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/cluster-registration/values.yaml -------------------------------------------------------------------------------- /helm/charts/create-cluster/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/create-cluster/.helmignore -------------------------------------------------------------------------------- /helm/charts/create-cluster/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/create-cluster/Chart.yaml -------------------------------------------------------------------------------- /helm/charts/create-cluster/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/create-cluster/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/charts/create-cluster/templates/cluster-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/create-cluster/templates/cluster-deployment.yaml -------------------------------------------------------------------------------- /helm/charts/create-cluster/templates/external-secret-install-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/create-cluster/templates/external-secret-install-config.yaml -------------------------------------------------------------------------------- /helm/charts/create-cluster/templates/external-secret-vsphere-certs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/create-cluster/templates/external-secret-vsphere-certs.yaml -------------------------------------------------------------------------------- /helm/charts/create-cluster/templates/external-secret-vsphere-creds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/create-cluster/templates/external-secret-vsphere-creds.yaml -------------------------------------------------------------------------------- /helm/charts/create-cluster/templates/external-secret-vsphere-sshkey.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/create-cluster/templates/external-secret-vsphere-sshkey.yaml -------------------------------------------------------------------------------- /helm/charts/create-cluster/templates/externalsecret-pullsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/create-cluster/templates/externalsecret-pullsecret.yaml -------------------------------------------------------------------------------- /helm/charts/create-cluster/templates/klusterlet-addon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/create-cluster/templates/klusterlet-addon.yaml -------------------------------------------------------------------------------- /helm/charts/create-cluster/templates/machine-pool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/create-cluster/templates/machine-pool.yaml -------------------------------------------------------------------------------- /helm/charts/create-cluster/templates/managed-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/create-cluster/templates/managed-cluster.yaml -------------------------------------------------------------------------------- /helm/charts/create-cluster/templates/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/create-cluster/templates/namespace.yaml -------------------------------------------------------------------------------- /helm/charts/create-cluster/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/create-cluster/values.yaml -------------------------------------------------------------------------------- /helm/charts/hcp-cluster-deployment/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/hcp-cluster-deployment/.helmignore -------------------------------------------------------------------------------- /helm/charts/hcp-cluster-deployment/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/hcp-cluster-deployment/Chart.yaml -------------------------------------------------------------------------------- /helm/charts/hcp-cluster-deployment/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/hcp-cluster-deployment/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/charts/hcp-cluster-deployment/templates/certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/hcp-cluster-deployment/templates/certificate.yaml -------------------------------------------------------------------------------- /helm/charts/hcp-cluster-deployment/templates/externalsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/hcp-cluster-deployment/templates/externalsecret.yaml -------------------------------------------------------------------------------- /helm/charts/hcp-cluster-deployment/templates/hosted-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/hcp-cluster-deployment/templates/hosted-cluster.yaml -------------------------------------------------------------------------------- /helm/charts/hcp-cluster-deployment/templates/klusterlet-addon-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/hcp-cluster-deployment/templates/klusterlet-addon-config.yaml -------------------------------------------------------------------------------- /helm/charts/hcp-cluster-deployment/templates/managed-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/hcp-cluster-deployment/templates/managed-cluster.yaml -------------------------------------------------------------------------------- /helm/charts/hcp-cluster-deployment/templates/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/hcp-cluster-deployment/templates/namespace.yaml -------------------------------------------------------------------------------- /helm/charts/hcp-cluster-deployment/templates/node-pool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/hcp-cluster-deployment/templates/node-pool.yaml -------------------------------------------------------------------------------- /helm/charts/hcp-cluster-deployment/templates/secret-sshkey.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/hcp-cluster-deployment/templates/secret-sshkey.yaml -------------------------------------------------------------------------------- /helm/charts/hcp-cluster-deployment/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/hcp-cluster-deployment/values.yaml -------------------------------------------------------------------------------- /helm/charts/infra-env/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/infra-env/.helmignore -------------------------------------------------------------------------------- /helm/charts/infra-env/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/infra-env/Chart.yaml -------------------------------------------------------------------------------- /helm/charts/infra-env/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/infra-env/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/charts/infra-env/templates/baremetal-host.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/infra-env/templates/baremetal-host.yaml -------------------------------------------------------------------------------- /helm/charts/infra-env/templates/externalsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/infra-env/templates/externalsecret.yaml -------------------------------------------------------------------------------- /helm/charts/infra-env/templates/infraenv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/infra-env/templates/infraenv.yaml -------------------------------------------------------------------------------- /helm/charts/infra-env/templates/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/infra-env/templates/namespace.yaml -------------------------------------------------------------------------------- /helm/charts/infra-env/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/infra-env/templates/role.yaml -------------------------------------------------------------------------------- /helm/charts/infra-env/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/infra-env/values.yaml -------------------------------------------------------------------------------- /helm/charts/pac-repository/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/pac-repository/.helmignore -------------------------------------------------------------------------------- /helm/charts/pac-repository/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/pac-repository/Chart.yaml -------------------------------------------------------------------------------- /helm/charts/pac-repository/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/pac-repository/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/charts/pac-repository/templates/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/pac-repository/templates/namespace.yaml -------------------------------------------------------------------------------- /helm/charts/pac-repository/templates/repository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/pac-repository/templates/repository.yaml -------------------------------------------------------------------------------- /helm/charts/pac-repository/templates/role-binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/pac-repository/templates/role-binding.yaml -------------------------------------------------------------------------------- /helm/charts/pac-repository/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/pac-repository/values.yaml -------------------------------------------------------------------------------- /helm/charts/tenants-iac-gitops/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/tenants-iac-gitops/.helmignore -------------------------------------------------------------------------------- /helm/charts/tenants-iac-gitops/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/tenants-iac-gitops/Chart.yaml -------------------------------------------------------------------------------- /helm/charts/tenants-iac-gitops/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/tenants-iac-gitops/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/charts/tenants-iac-gitops/templates/applicationset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/tenants-iac-gitops/templates/applicationset.yaml -------------------------------------------------------------------------------- /helm/charts/tenants-iac-gitops/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/helm/charts/tenants-iac-gitops/values.yaml -------------------------------------------------------------------------------- /installer/proxmox/agent-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/installer/proxmox/agent-config.yaml -------------------------------------------------------------------------------- /installer/proxmox/install-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/installer/proxmox/install-config.yaml -------------------------------------------------------------------------------- /installer/vsphere/install-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/installer/vsphere/install-config.yaml -------------------------------------------------------------------------------- /scripts/kubeconform.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vikaspogu/openshift-multicluster/HEAD/scripts/kubeconform.sh --------------------------------------------------------------------------------