├── .gitignore ├── LICENSE ├── README.MD ├── config ├── ci │ ├── gitea-config.yaml │ ├── gitea-init-run.yaml │ ├── gitea.yaml │ ├── kustomization.yaml │ ├── nexus.yaml │ └── ns.yaml ├── console │ ├── dev-view.yaml │ ├── kustomization.yaml │ └── links.yaml ├── kustomization.yaml ├── mesh │ ├── README.MD │ ├── control-plane.yaml │ ├── elastic.yaml │ ├── jaeger.yaml │ ├── kiali.yaml │ ├── kustomization.yaml │ ├── mesh.yaml │ ├── ns-op-dt.yaml │ ├── ns-op-rh.yaml │ └── sample │ │ ├── bookinfo-gateway.yaml │ │ ├── bookinfo-sample.yaml │ │ ├── dest-rules.yaml │ │ ├── kustomization.yaml │ │ └── sm-members.yaml ├── monitoring │ ├── README.MD │ ├── cluster-monitoring-config.yaml │ ├── kustomization.yaml │ ├── service-monitor-example.yaml │ └── user-workload-config.yaml ├── oauth │ ├── README.MD │ ├── admin-rb.yaml │ ├── example-client-secret.env │ ├── kustomization.yaml │ └── oauth.yaml ├── operators │ ├── builds.yaml │ ├── crunchy.yaml │ ├── gitops.yaml │ ├── infinispan.yaml │ ├── kustomization.yaml │ ├── pipelines.yaml │ ├── rhdh.yaml │ ├── serverless.yaml │ └── strimzi.yaml ├── registry │ ├── config.yaml │ ├── image-registry.yaml │ └── kustomization.yaml ├── rhdh │ ├── README.MD │ ├── app-config-rhdh.yaml │ ├── backstage.yaml │ ├── dynamic-plugins.yaml │ ├── example-backend-secret.env │ ├── example-github-secret.env │ ├── kustomization.yaml │ ├── ns.yaml │ └── rbac-policy.csv ├── storage │ ├── csi-driver-hostpath-provisioner.yaml │ ├── csi-driver │ │ └── csi-kubevirt-hostpath-provisioner.yaml │ ├── csi-sc.yaml │ ├── external-provisioner-rbac.yaml │ ├── kubevirt-hostpath-security-constraints-csi.yaml │ ├── kustomization.yaml │ └── namespace.yaml └── users │ ├── admin-rb.yaml │ ├── htpasswd │ ├── htpasswd-cr.yaml │ └── kustomization.yaml └── setup.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/LICENSE -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/README.MD -------------------------------------------------------------------------------- /config/ci/gitea-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/ci/gitea-config.yaml -------------------------------------------------------------------------------- /config/ci/gitea-init-run.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/ci/gitea-init-run.yaml -------------------------------------------------------------------------------- /config/ci/gitea.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/ci/gitea.yaml -------------------------------------------------------------------------------- /config/ci/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/ci/kustomization.yaml -------------------------------------------------------------------------------- /config/ci/nexus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/ci/nexus.yaml -------------------------------------------------------------------------------- /config/ci/ns.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: ci 5 | -------------------------------------------------------------------------------- /config/console/dev-view.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/console/dev-view.yaml -------------------------------------------------------------------------------- /config/console/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/console/kustomization.yaml -------------------------------------------------------------------------------- /config/console/links.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/console/links.yaml -------------------------------------------------------------------------------- /config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/kustomization.yaml -------------------------------------------------------------------------------- /config/mesh/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/mesh/README.MD -------------------------------------------------------------------------------- /config/mesh/control-plane.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/mesh/control-plane.yaml -------------------------------------------------------------------------------- /config/mesh/elastic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/mesh/elastic.yaml -------------------------------------------------------------------------------- /config/mesh/jaeger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/mesh/jaeger.yaml -------------------------------------------------------------------------------- /config/mesh/kiali.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/mesh/kiali.yaml -------------------------------------------------------------------------------- /config/mesh/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/mesh/kustomization.yaml -------------------------------------------------------------------------------- /config/mesh/mesh.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/mesh/mesh.yaml -------------------------------------------------------------------------------- /config/mesh/ns-op-dt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/mesh/ns-op-dt.yaml -------------------------------------------------------------------------------- /config/mesh/ns-op-rh.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/mesh/ns-op-rh.yaml -------------------------------------------------------------------------------- /config/mesh/sample/bookinfo-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/mesh/sample/bookinfo-gateway.yaml -------------------------------------------------------------------------------- /config/mesh/sample/bookinfo-sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/mesh/sample/bookinfo-sample.yaml -------------------------------------------------------------------------------- /config/mesh/sample/dest-rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/mesh/sample/dest-rules.yaml -------------------------------------------------------------------------------- /config/mesh/sample/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/mesh/sample/kustomization.yaml -------------------------------------------------------------------------------- /config/mesh/sample/sm-members.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/mesh/sample/sm-members.yaml -------------------------------------------------------------------------------- /config/monitoring/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/monitoring/README.MD -------------------------------------------------------------------------------- /config/monitoring/cluster-monitoring-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/monitoring/cluster-monitoring-config.yaml -------------------------------------------------------------------------------- /config/monitoring/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/monitoring/kustomization.yaml -------------------------------------------------------------------------------- /config/monitoring/service-monitor-example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/monitoring/service-monitor-example.yaml -------------------------------------------------------------------------------- /config/monitoring/user-workload-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/monitoring/user-workload-config.yaml -------------------------------------------------------------------------------- /config/oauth/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/oauth/README.MD -------------------------------------------------------------------------------- /config/oauth/admin-rb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/oauth/admin-rb.yaml -------------------------------------------------------------------------------- /config/oauth/example-client-secret.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/oauth/example-client-secret.env -------------------------------------------------------------------------------- /config/oauth/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/oauth/kustomization.yaml -------------------------------------------------------------------------------- /config/oauth/oauth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/oauth/oauth.yaml -------------------------------------------------------------------------------- /config/operators/builds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/operators/builds.yaml -------------------------------------------------------------------------------- /config/operators/crunchy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/operators/crunchy.yaml -------------------------------------------------------------------------------- /config/operators/gitops.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/operators/gitops.yaml -------------------------------------------------------------------------------- /config/operators/infinispan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/operators/infinispan.yaml -------------------------------------------------------------------------------- /config/operators/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/operators/kustomization.yaml -------------------------------------------------------------------------------- /config/operators/pipelines.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/operators/pipelines.yaml -------------------------------------------------------------------------------- /config/operators/rhdh.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/operators/rhdh.yaml -------------------------------------------------------------------------------- /config/operators/serverless.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/operators/serverless.yaml -------------------------------------------------------------------------------- /config/operators/strimzi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/operators/strimzi.yaml -------------------------------------------------------------------------------- /config/registry/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/registry/config.yaml -------------------------------------------------------------------------------- /config/registry/image-registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/registry/image-registry.yaml -------------------------------------------------------------------------------- /config/registry/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/registry/kustomization.yaml -------------------------------------------------------------------------------- /config/rhdh/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/rhdh/README.MD -------------------------------------------------------------------------------- /config/rhdh/app-config-rhdh.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/rhdh/app-config-rhdh.yaml -------------------------------------------------------------------------------- /config/rhdh/backstage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/rhdh/backstage.yaml -------------------------------------------------------------------------------- /config/rhdh/dynamic-plugins.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/rhdh/dynamic-plugins.yaml -------------------------------------------------------------------------------- /config/rhdh/example-backend-secret.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/rhdh/example-backend-secret.env -------------------------------------------------------------------------------- /config/rhdh/example-github-secret.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/rhdh/example-github-secret.env -------------------------------------------------------------------------------- /config/rhdh/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/rhdh/kustomization.yaml -------------------------------------------------------------------------------- /config/rhdh/ns.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: rhdh 5 | 6 | -------------------------------------------------------------------------------- /config/rhdh/rbac-policy.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/rhdh/rbac-policy.csv -------------------------------------------------------------------------------- /config/storage/csi-driver-hostpath-provisioner.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/storage/csi-driver-hostpath-provisioner.yaml -------------------------------------------------------------------------------- /config/storage/csi-driver/csi-kubevirt-hostpath-provisioner.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/storage/csi-driver/csi-kubevirt-hostpath-provisioner.yaml -------------------------------------------------------------------------------- /config/storage/csi-sc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/storage/csi-sc.yaml -------------------------------------------------------------------------------- /config/storage/external-provisioner-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/storage/external-provisioner-rbac.yaml -------------------------------------------------------------------------------- /config/storage/kubevirt-hostpath-security-constraints-csi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/storage/kubevirt-hostpath-security-constraints-csi.yaml -------------------------------------------------------------------------------- /config/storage/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/storage/kustomization.yaml -------------------------------------------------------------------------------- /config/storage/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/storage/namespace.yaml -------------------------------------------------------------------------------- /config/users/admin-rb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/users/admin-rb.yaml -------------------------------------------------------------------------------- /config/users/htpasswd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/users/htpasswd -------------------------------------------------------------------------------- /config/users/htpasswd-cr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/users/htpasswd-cr.yaml -------------------------------------------------------------------------------- /config/users/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/config/users/kustomization.yaml -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpernath/openshift-config/HEAD/setup.sh --------------------------------------------------------------------------------