├── .github ├── CODEOWNERS ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── auto-close.yml │ ├── auto-update.yml │ ├── post-merge-scorecard.yml │ ├── post-merge.yaml │ └── pre-merge.yml ├── .gitignore ├── .golangci.yml ├── .markdownlint.yml ├── .markdownlintignore ├── .yamllint ├── CODE_OF_CONDUCT.md ├── LICENSES └── Apache-2.0.txt ├── Makefile ├── README.md ├── REUSE.toml ├── SECURITY.md ├── VERSION ├── catalog-orchestrator-0.1.schema.yaml ├── ci_scripts ├── helm_build.sh ├── helm_push.sh ├── publish_dp.sh └── publish_manifest.sh ├── common.mk ├── deployment-package ├── cert-manager │ ├── applications.yaml │ ├── deployment-package.yaml │ └── values-cert-manager.yaml ├── common │ ├── registry-bitnami-oci.yaml │ ├── registry-fluent-bit.yaml │ ├── registry-gpu.yaml │ ├── registry-jetstack.yaml │ ├── registry-kubernetes-ingress.yaml │ ├── registry-node-exporter.yaml │ ├── registry-node-feature-discovery.yaml │ ├── registry-prometheus.yaml │ └── registry-telegraf.yaml ├── intel-gpu-debug │ ├── applications.yaml │ ├── deployment-package.yaml │ └── empty-values.yaml ├── intel-gpu │ ├── applications.yaml │ ├── deployment-package.yaml │ ├── values-device-operator.yaml │ └── values-gpu-plugin.yaml ├── kubernetes-dashboard │ ├── application.yaml │ ├── deployment-package.yaml │ ├── registry-kubernetes.yaml │ └── values-dash.yaml ├── loadbalancer │ ├── application.yaml │ ├── deployment-package.yaml │ ├── empty-values.yaml │ ├── metallb-values.yaml │ ├── registry-metallb.yaml │ ├── values-ingress-nginx-default.yaml │ └── values-metallb-config-default.yaml ├── nfd │ ├── applications.yaml │ ├── deployment-package.yaml │ └── values-nfd.yaml ├── nvidia-gpu-operator │ ├── application.yaml │ ├── deployment-package.yaml │ ├── registry-nvidia-ncg.yaml │ ├── values-with-intelproxy-settings.yaml │ └── values-without-proxy-settings.yaml ├── observability │ ├── deployment-package.yaml │ ├── fluent-bit │ │ ├── applications.yaml │ │ └── values-fluent-bit.yaml │ ├── node-exporter │ │ ├── applications.yaml │ │ └── values-node-exporter.yaml │ ├── observability-config │ │ ├── applications.yaml │ │ └── values-observability-config.yaml │ ├── prometheus │ │ ├── applications.yaml │ │ └── values-prometheus.yaml │ └── telegraf │ │ ├── applications.yaml │ │ └── values-telegraf.yaml ├── skupper-sample-app │ ├── backend │ │ ├── skupper-backend-application.yaml │ │ ├── skupper-backend-deployment-package.yaml │ │ └── values-skupper-backend-0.0.1-default.yaml │ └── frontend │ │ ├── skupper-frontend-application.yaml │ │ ├── skupper-frontend-deployment-package.yaml │ │ └── values-skupper-frontend-0.0.1-default.yaml ├── skupper │ ├── application.yaml │ ├── deployment-package.yaml │ └── empty-values.yaml ├── trusted-compute │ ├── application.yaml │ ├── deployment-package.yaml │ ├── values-attestation-manager-default.yaml │ ├── values-attestation-verifier-default.yaml │ ├── values-kubevirt-default-nosm.yaml │ ├── values-trust-agent-default.yaml │ └── values-trusted-workload-default.yaml └── virtualization │ ├── application.yaml │ ├── deployment-package.yaml │ ├── values-cdi-default.yaml │ ├── values-kubevirt-default-nosm.yaml │ ├── values-kubevirt-default.yaml │ ├── values-kubevirt-software-emulation-nosm.yaml │ ├── values-kubevirt-software-emulation.yaml │ └── values-kvhelper.yaml ├── go.mod ├── go.sum ├── helm ├── cdi │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── crds │ │ └── 01-crds.yaml │ ├── fleet.yaml │ ├── templates │ │ ├── 01-cdi-operator.yaml │ │ ├── 02-cdi-cr.yaml │ │ └── pre-deletion-hook.yaml │ ├── tests │ │ ├── cdi_cr_test.yaml │ │ ├── cdi_operator_test.yaml │ │ └── values │ │ │ ├── empty_proxy.yaml │ │ │ └── proxy.yaml │ └── values.yaml ├── intel-gpu-debug │ ├── Chart.yaml │ ├── templates │ │ └── intel-gpu-debug-pod.yaml │ └── values.yaml ├── kubevirt-helper │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── certificate.yaml │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── issuer.yaml │ │ ├── mutatingwebhookconfiguration.yaml │ │ ├── rbac.yaml │ │ ├── service.yaml │ │ └── serviceaccount.yaml │ └── values.yaml ├── kubevirt │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── crds │ │ └── 01-crds.yaml │ ├── templates │ │ ├── 01-kubevirt-operator.yaml │ │ ├── 02-kubevirt-cr.yaml │ │ ├── 03-kubevirt-sm.yaml │ │ ├── 05-macvtap-cni.yaml │ │ └── pre-deletion-hook.yaml │ ├── tests │ │ ├── kubevirt_cr_test.yaml │ │ ├── kubevirt_operator_test.yaml │ │ └── kubevirt_servicemonitor_test.yaml │ └── values.yaml ├── metallb-base │ ├── Chart.yaml │ ├── templates │ │ └── pre-deletion-hook.yaml │ └── values.yaml ├── metallb-config │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── ip-address-pool.yaml │ │ └── l2-advertisement.yaml │ ├── tests │ │ ├── ip-address-pool_test.yaml │ │ └── l2-advertisement_test.yaml │ └── values.yaml ├── observability-config │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── fluent-bit-cert.yaml │ │ ├── prometheus-certificate.yaml │ │ ├── prometheus-kube-state-metrics-clusterrole.yaml │ │ ├── rbac.yaml │ │ ├── service.yaml │ │ ├── serviceAccount.yaml │ │ ├── serviceMonitor.yaml │ │ ├── telegraf-certificate.yaml │ │ └── telegraf-configmap.yaml │ └── values.yaml ├── skupper-sample-app │ ├── skupper-hello-world-backend │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── deployment.yaml │ │ │ └── service.yaml │ │ └── values.yaml │ └── skupper-hello-world-frontend │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ └── service.yaml │ │ └── values.yaml └── skupper │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ └── skupper.yaml │ └── values.yaml ├── manifest └── manifest.yaml ├── pkg ├── artifact │ └── artifact.go ├── intel-gpu-debug │ ├── Dockerfile │ ├── Makefile │ └── VERSION ├── kubevirt-helper │ ├── .gitignore │ ├── .golangci.yml │ ├── Dockerfile │ ├── Makefile │ ├── VERSION │ ├── cmd │ │ └── kubevirt-helper │ │ │ └── main.go │ ├── go.mod │ ├── go.sum │ ├── internal │ │ ├── k8swebhook │ │ │ ├── mocks │ │ │ │ ├── k8s_manager_mock.go │ │ │ │ └── k8swebhookserver_mock.go │ │ │ ├── webhook.go │ │ │ └── webhook_test.go │ │ ├── kubevirt │ │ │ ├── fuzztests │ │ │ │ └── kubevirt_fuzz_test.go │ │ │ ├── kubevirt.go │ │ │ ├── kubevirt_test.go │ │ │ └── mocks │ │ │ │ └── kubevirt_mock.go │ │ └── manager │ │ │ ├── manager.go │ │ │ └── manager_test.go │ └── trivy.yaml ├── manifest-version-check │ ├── go.mod │ ├── go.sum │ └── manifest-version-check.go └── manifest │ └── manifest.go ├── requirements.txt ├── trivy.yaml └── version.mk /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/auto-close.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/.github/workflows/auto-close.yml -------------------------------------------------------------------------------- /.github/workflows/auto-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/.github/workflows/auto-update.yml -------------------------------------------------------------------------------- /.github/workflows/post-merge-scorecard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/.github/workflows/post-merge-scorecard.yml -------------------------------------------------------------------------------- /.github/workflows/post-merge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/.github/workflows/post-merge.yaml -------------------------------------------------------------------------------- /.github/workflows/pre-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/.github/workflows/pre-merge.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.markdownlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/.markdownlint.yml -------------------------------------------------------------------------------- /.markdownlintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/.markdownlintignore -------------------------------------------------------------------------------- /.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/.yamllint -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSES/Apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/LICENSES/Apache-2.0.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/README.md -------------------------------------------------------------------------------- /REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/REUSE.toml -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/SECURITY.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.4.12 2 | -------------------------------------------------------------------------------- /catalog-orchestrator-0.1.schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/catalog-orchestrator-0.1.schema.yaml -------------------------------------------------------------------------------- /ci_scripts/helm_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/ci_scripts/helm_build.sh -------------------------------------------------------------------------------- /ci_scripts/helm_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/ci_scripts/helm_push.sh -------------------------------------------------------------------------------- /ci_scripts/publish_dp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/ci_scripts/publish_dp.sh -------------------------------------------------------------------------------- /ci_scripts/publish_manifest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/ci_scripts/publish_manifest.sh -------------------------------------------------------------------------------- /common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/common.mk -------------------------------------------------------------------------------- /deployment-package/cert-manager/applications.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/cert-manager/applications.yaml -------------------------------------------------------------------------------- /deployment-package/cert-manager/deployment-package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/cert-manager/deployment-package.yaml -------------------------------------------------------------------------------- /deployment-package/cert-manager/values-cert-manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/cert-manager/values-cert-manager.yaml -------------------------------------------------------------------------------- /deployment-package/common/registry-bitnami-oci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/common/registry-bitnami-oci.yaml -------------------------------------------------------------------------------- /deployment-package/common/registry-fluent-bit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/common/registry-fluent-bit.yaml -------------------------------------------------------------------------------- /deployment-package/common/registry-gpu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/common/registry-gpu.yaml -------------------------------------------------------------------------------- /deployment-package/common/registry-jetstack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/common/registry-jetstack.yaml -------------------------------------------------------------------------------- /deployment-package/common/registry-kubernetes-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/common/registry-kubernetes-ingress.yaml -------------------------------------------------------------------------------- /deployment-package/common/registry-node-exporter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/common/registry-node-exporter.yaml -------------------------------------------------------------------------------- /deployment-package/common/registry-node-feature-discovery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/common/registry-node-feature-discovery.yaml -------------------------------------------------------------------------------- /deployment-package/common/registry-prometheus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/common/registry-prometheus.yaml -------------------------------------------------------------------------------- /deployment-package/common/registry-telegraf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/common/registry-telegraf.yaml -------------------------------------------------------------------------------- /deployment-package/intel-gpu-debug/applications.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/intel-gpu-debug/applications.yaml -------------------------------------------------------------------------------- /deployment-package/intel-gpu-debug/deployment-package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/intel-gpu-debug/deployment-package.yaml -------------------------------------------------------------------------------- /deployment-package/intel-gpu-debug/empty-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/intel-gpu-debug/empty-values.yaml -------------------------------------------------------------------------------- /deployment-package/intel-gpu/applications.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/intel-gpu/applications.yaml -------------------------------------------------------------------------------- /deployment-package/intel-gpu/deployment-package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/intel-gpu/deployment-package.yaml -------------------------------------------------------------------------------- /deployment-package/intel-gpu/values-device-operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/intel-gpu/values-device-operator.yaml -------------------------------------------------------------------------------- /deployment-package/intel-gpu/values-gpu-plugin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/intel-gpu/values-gpu-plugin.yaml -------------------------------------------------------------------------------- /deployment-package/kubernetes-dashboard/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/kubernetes-dashboard/application.yaml -------------------------------------------------------------------------------- /deployment-package/kubernetes-dashboard/deployment-package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/kubernetes-dashboard/deployment-package.yaml -------------------------------------------------------------------------------- /deployment-package/kubernetes-dashboard/registry-kubernetes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/kubernetes-dashboard/registry-kubernetes.yaml -------------------------------------------------------------------------------- /deployment-package/kubernetes-dashboard/values-dash.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/kubernetes-dashboard/values-dash.yaml -------------------------------------------------------------------------------- /deployment-package/loadbalancer/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/loadbalancer/application.yaml -------------------------------------------------------------------------------- /deployment-package/loadbalancer/deployment-package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/loadbalancer/deployment-package.yaml -------------------------------------------------------------------------------- /deployment-package/loadbalancer/empty-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/loadbalancer/empty-values.yaml -------------------------------------------------------------------------------- /deployment-package/loadbalancer/metallb-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/loadbalancer/metallb-values.yaml -------------------------------------------------------------------------------- /deployment-package/loadbalancer/registry-metallb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/loadbalancer/registry-metallb.yaml -------------------------------------------------------------------------------- /deployment-package/loadbalancer/values-ingress-nginx-default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/loadbalancer/values-ingress-nginx-default.yaml -------------------------------------------------------------------------------- /deployment-package/loadbalancer/values-metallb-config-default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/loadbalancer/values-metallb-config-default.yaml -------------------------------------------------------------------------------- /deployment-package/nfd/applications.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/nfd/applications.yaml -------------------------------------------------------------------------------- /deployment-package/nfd/deployment-package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/nfd/deployment-package.yaml -------------------------------------------------------------------------------- /deployment-package/nfd/values-nfd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/nfd/values-nfd.yaml -------------------------------------------------------------------------------- /deployment-package/nvidia-gpu-operator/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/nvidia-gpu-operator/application.yaml -------------------------------------------------------------------------------- /deployment-package/nvidia-gpu-operator/deployment-package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/nvidia-gpu-operator/deployment-package.yaml -------------------------------------------------------------------------------- /deployment-package/nvidia-gpu-operator/registry-nvidia-ncg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/nvidia-gpu-operator/registry-nvidia-ncg.yaml -------------------------------------------------------------------------------- /deployment-package/nvidia-gpu-operator/values-with-intelproxy-settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/nvidia-gpu-operator/values-with-intelproxy-settings.yaml -------------------------------------------------------------------------------- /deployment-package/nvidia-gpu-operator/values-without-proxy-settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/nvidia-gpu-operator/values-without-proxy-settings.yaml -------------------------------------------------------------------------------- /deployment-package/observability/deployment-package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/observability/deployment-package.yaml -------------------------------------------------------------------------------- /deployment-package/observability/fluent-bit/applications.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/observability/fluent-bit/applications.yaml -------------------------------------------------------------------------------- /deployment-package/observability/fluent-bit/values-fluent-bit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/observability/fluent-bit/values-fluent-bit.yaml -------------------------------------------------------------------------------- /deployment-package/observability/node-exporter/applications.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/observability/node-exporter/applications.yaml -------------------------------------------------------------------------------- /deployment-package/observability/node-exporter/values-node-exporter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/observability/node-exporter/values-node-exporter.yaml -------------------------------------------------------------------------------- /deployment-package/observability/observability-config/applications.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/observability/observability-config/applications.yaml -------------------------------------------------------------------------------- /deployment-package/observability/observability-config/values-observability-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/observability/observability-config/values-observability-config.yaml -------------------------------------------------------------------------------- /deployment-package/observability/prometheus/applications.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/observability/prometheus/applications.yaml -------------------------------------------------------------------------------- /deployment-package/observability/prometheus/values-prometheus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/observability/prometheus/values-prometheus.yaml -------------------------------------------------------------------------------- /deployment-package/observability/telegraf/applications.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/observability/telegraf/applications.yaml -------------------------------------------------------------------------------- /deployment-package/observability/telegraf/values-telegraf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/observability/telegraf/values-telegraf.yaml -------------------------------------------------------------------------------- /deployment-package/skupper-sample-app/backend/skupper-backend-application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/skupper-sample-app/backend/skupper-backend-application.yaml -------------------------------------------------------------------------------- /deployment-package/skupper-sample-app/backend/skupper-backend-deployment-package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/skupper-sample-app/backend/skupper-backend-deployment-package.yaml -------------------------------------------------------------------------------- /deployment-package/skupper-sample-app/backend/values-skupper-backend-0.0.1-default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/skupper-sample-app/backend/values-skupper-backend-0.0.1-default.yaml -------------------------------------------------------------------------------- /deployment-package/skupper-sample-app/frontend/skupper-frontend-application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/skupper-sample-app/frontend/skupper-frontend-application.yaml -------------------------------------------------------------------------------- /deployment-package/skupper-sample-app/frontend/skupper-frontend-deployment-package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/skupper-sample-app/frontend/skupper-frontend-deployment-package.yaml -------------------------------------------------------------------------------- /deployment-package/skupper-sample-app/frontend/values-skupper-frontend-0.0.1-default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/skupper-sample-app/frontend/values-skupper-frontend-0.0.1-default.yaml -------------------------------------------------------------------------------- /deployment-package/skupper/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/skupper/application.yaml -------------------------------------------------------------------------------- /deployment-package/skupper/deployment-package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/skupper/deployment-package.yaml -------------------------------------------------------------------------------- /deployment-package/skupper/empty-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/skupper/empty-values.yaml -------------------------------------------------------------------------------- /deployment-package/trusted-compute/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/trusted-compute/application.yaml -------------------------------------------------------------------------------- /deployment-package/trusted-compute/deployment-package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/trusted-compute/deployment-package.yaml -------------------------------------------------------------------------------- /deployment-package/trusted-compute/values-attestation-manager-default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/trusted-compute/values-attestation-manager-default.yaml -------------------------------------------------------------------------------- /deployment-package/trusted-compute/values-attestation-verifier-default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/trusted-compute/values-attestation-verifier-default.yaml -------------------------------------------------------------------------------- /deployment-package/trusted-compute/values-kubevirt-default-nosm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/trusted-compute/values-kubevirt-default-nosm.yaml -------------------------------------------------------------------------------- /deployment-package/trusted-compute/values-trust-agent-default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/trusted-compute/values-trust-agent-default.yaml -------------------------------------------------------------------------------- /deployment-package/trusted-compute/values-trusted-workload-default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/trusted-compute/values-trusted-workload-default.yaml -------------------------------------------------------------------------------- /deployment-package/virtualization/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/virtualization/application.yaml -------------------------------------------------------------------------------- /deployment-package/virtualization/deployment-package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/virtualization/deployment-package.yaml -------------------------------------------------------------------------------- /deployment-package/virtualization/values-cdi-default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/virtualization/values-cdi-default.yaml -------------------------------------------------------------------------------- /deployment-package/virtualization/values-kubevirt-default-nosm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/virtualization/values-kubevirt-default-nosm.yaml -------------------------------------------------------------------------------- /deployment-package/virtualization/values-kubevirt-default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/virtualization/values-kubevirt-default.yaml -------------------------------------------------------------------------------- /deployment-package/virtualization/values-kubevirt-software-emulation-nosm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/virtualization/values-kubevirt-software-emulation-nosm.yaml -------------------------------------------------------------------------------- /deployment-package/virtualization/values-kubevirt-software-emulation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/virtualization/values-kubevirt-software-emulation.yaml -------------------------------------------------------------------------------- /deployment-package/virtualization/values-kvhelper.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/deployment-package/virtualization/values-kvhelper.yaml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/go.sum -------------------------------------------------------------------------------- /helm/cdi/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/cdi/.helmignore -------------------------------------------------------------------------------- /helm/cdi/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/cdi/Chart.yaml -------------------------------------------------------------------------------- /helm/cdi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/cdi/README.md -------------------------------------------------------------------------------- /helm/cdi/crds/01-crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/cdi/crds/01-crds.yaml -------------------------------------------------------------------------------- /helm/cdi/fleet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/cdi/fleet.yaml -------------------------------------------------------------------------------- /helm/cdi/templates/01-cdi-operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/cdi/templates/01-cdi-operator.yaml -------------------------------------------------------------------------------- /helm/cdi/templates/02-cdi-cr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/cdi/templates/02-cdi-cr.yaml -------------------------------------------------------------------------------- /helm/cdi/templates/pre-deletion-hook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/cdi/templates/pre-deletion-hook.yaml -------------------------------------------------------------------------------- /helm/cdi/tests/cdi_cr_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/cdi/tests/cdi_cr_test.yaml -------------------------------------------------------------------------------- /helm/cdi/tests/cdi_operator_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/cdi/tests/cdi_operator_test.yaml -------------------------------------------------------------------------------- /helm/cdi/tests/values/empty_proxy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/cdi/tests/values/empty_proxy.yaml -------------------------------------------------------------------------------- /helm/cdi/tests/values/proxy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/cdi/tests/values/proxy.yaml -------------------------------------------------------------------------------- /helm/cdi/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/cdi/values.yaml -------------------------------------------------------------------------------- /helm/intel-gpu-debug/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/intel-gpu-debug/Chart.yaml -------------------------------------------------------------------------------- /helm/intel-gpu-debug/templates/intel-gpu-debug-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/intel-gpu-debug/templates/intel-gpu-debug-pod.yaml -------------------------------------------------------------------------------- /helm/intel-gpu-debug/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/intel-gpu-debug/values.yaml -------------------------------------------------------------------------------- /helm/kubevirt-helper/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/kubevirt-helper/Chart.yaml -------------------------------------------------------------------------------- /helm/kubevirt-helper/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/kubevirt-helper/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/kubevirt-helper/templates/certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/kubevirt-helper/templates/certificate.yaml -------------------------------------------------------------------------------- /helm/kubevirt-helper/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/kubevirt-helper/templates/configmap.yaml -------------------------------------------------------------------------------- /helm/kubevirt-helper/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/kubevirt-helper/templates/deployment.yaml -------------------------------------------------------------------------------- /helm/kubevirt-helper/templates/issuer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/kubevirt-helper/templates/issuer.yaml -------------------------------------------------------------------------------- /helm/kubevirt-helper/templates/mutatingwebhookconfiguration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/kubevirt-helper/templates/mutatingwebhookconfiguration.yaml -------------------------------------------------------------------------------- /helm/kubevirt-helper/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/kubevirt-helper/templates/rbac.yaml -------------------------------------------------------------------------------- /helm/kubevirt-helper/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/kubevirt-helper/templates/service.yaml -------------------------------------------------------------------------------- /helm/kubevirt-helper/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/kubevirt-helper/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helm/kubevirt-helper/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/kubevirt-helper/values.yaml -------------------------------------------------------------------------------- /helm/kubevirt/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/kubevirt/.helmignore -------------------------------------------------------------------------------- /helm/kubevirt/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/kubevirt/Chart.yaml -------------------------------------------------------------------------------- /helm/kubevirt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/kubevirt/README.md -------------------------------------------------------------------------------- /helm/kubevirt/crds/01-crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/kubevirt/crds/01-crds.yaml -------------------------------------------------------------------------------- /helm/kubevirt/templates/01-kubevirt-operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/kubevirt/templates/01-kubevirt-operator.yaml -------------------------------------------------------------------------------- /helm/kubevirt/templates/02-kubevirt-cr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/kubevirt/templates/02-kubevirt-cr.yaml -------------------------------------------------------------------------------- /helm/kubevirt/templates/03-kubevirt-sm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/kubevirt/templates/03-kubevirt-sm.yaml -------------------------------------------------------------------------------- /helm/kubevirt/templates/05-macvtap-cni.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/kubevirt/templates/05-macvtap-cni.yaml -------------------------------------------------------------------------------- /helm/kubevirt/templates/pre-deletion-hook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/kubevirt/templates/pre-deletion-hook.yaml -------------------------------------------------------------------------------- /helm/kubevirt/tests/kubevirt_cr_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/kubevirt/tests/kubevirt_cr_test.yaml -------------------------------------------------------------------------------- /helm/kubevirt/tests/kubevirt_operator_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/kubevirt/tests/kubevirt_operator_test.yaml -------------------------------------------------------------------------------- /helm/kubevirt/tests/kubevirt_servicemonitor_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/kubevirt/tests/kubevirt_servicemonitor_test.yaml -------------------------------------------------------------------------------- /helm/kubevirt/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/kubevirt/values.yaml -------------------------------------------------------------------------------- /helm/metallb-base/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/metallb-base/Chart.yaml -------------------------------------------------------------------------------- /helm/metallb-base/templates/pre-deletion-hook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/metallb-base/templates/pre-deletion-hook.yaml -------------------------------------------------------------------------------- /helm/metallb-base/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/metallb-base/values.yaml -------------------------------------------------------------------------------- /helm/metallb-config/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/metallb-config/.helmignore -------------------------------------------------------------------------------- /helm/metallb-config/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/metallb-config/Chart.yaml -------------------------------------------------------------------------------- /helm/metallb-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/metallb-config/README.md -------------------------------------------------------------------------------- /helm/metallb-config/templates/ip-address-pool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/metallb-config/templates/ip-address-pool.yaml -------------------------------------------------------------------------------- /helm/metallb-config/templates/l2-advertisement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/metallb-config/templates/l2-advertisement.yaml -------------------------------------------------------------------------------- /helm/metallb-config/tests/ip-address-pool_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/metallb-config/tests/ip-address-pool_test.yaml -------------------------------------------------------------------------------- /helm/metallb-config/tests/l2-advertisement_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/metallb-config/tests/l2-advertisement_test.yaml -------------------------------------------------------------------------------- /helm/metallb-config/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/metallb-config/values.yaml -------------------------------------------------------------------------------- /helm/observability-config/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/observability-config/Chart.yaml -------------------------------------------------------------------------------- /helm/observability-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/observability-config/README.md -------------------------------------------------------------------------------- /helm/observability-config/templates/fluent-bit-cert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/observability-config/templates/fluent-bit-cert.yaml -------------------------------------------------------------------------------- /helm/observability-config/templates/prometheus-certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/observability-config/templates/prometheus-certificate.yaml -------------------------------------------------------------------------------- /helm/observability-config/templates/prometheus-kube-state-metrics-clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/observability-config/templates/prometheus-kube-state-metrics-clusterrole.yaml -------------------------------------------------------------------------------- /helm/observability-config/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/observability-config/templates/rbac.yaml -------------------------------------------------------------------------------- /helm/observability-config/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/observability-config/templates/service.yaml -------------------------------------------------------------------------------- /helm/observability-config/templates/serviceAccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/observability-config/templates/serviceAccount.yaml -------------------------------------------------------------------------------- /helm/observability-config/templates/serviceMonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/observability-config/templates/serviceMonitor.yaml -------------------------------------------------------------------------------- /helm/observability-config/templates/telegraf-certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/observability-config/templates/telegraf-certificate.yaml -------------------------------------------------------------------------------- /helm/observability-config/templates/telegraf-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/observability-config/templates/telegraf-configmap.yaml -------------------------------------------------------------------------------- /helm/observability-config/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/observability-config/values.yaml -------------------------------------------------------------------------------- /helm/skupper-sample-app/skupper-hello-world-backend/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/skupper-sample-app/skupper-hello-world-backend/.helmignore -------------------------------------------------------------------------------- /helm/skupper-sample-app/skupper-hello-world-backend/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/skupper-sample-app/skupper-hello-world-backend/Chart.yaml -------------------------------------------------------------------------------- /helm/skupper-sample-app/skupper-hello-world-backend/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/skupper-sample-app/skupper-hello-world-backend/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/skupper-sample-app/skupper-hello-world-backend/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/skupper-sample-app/skupper-hello-world-backend/templates/deployment.yaml -------------------------------------------------------------------------------- /helm/skupper-sample-app/skupper-hello-world-backend/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/skupper-sample-app/skupper-hello-world-backend/templates/service.yaml -------------------------------------------------------------------------------- /helm/skupper-sample-app/skupper-hello-world-backend/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/skupper-sample-app/skupper-hello-world-backend/values.yaml -------------------------------------------------------------------------------- /helm/skupper-sample-app/skupper-hello-world-frontend/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/skupper-sample-app/skupper-hello-world-frontend/.helmignore -------------------------------------------------------------------------------- /helm/skupper-sample-app/skupper-hello-world-frontend/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/skupper-sample-app/skupper-hello-world-frontend/Chart.yaml -------------------------------------------------------------------------------- /helm/skupper-sample-app/skupper-hello-world-frontend/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/skupper-sample-app/skupper-hello-world-frontend/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/skupper-sample-app/skupper-hello-world-frontend/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/skupper-sample-app/skupper-hello-world-frontend/templates/deployment.yaml -------------------------------------------------------------------------------- /helm/skupper-sample-app/skupper-hello-world-frontend/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/skupper-sample-app/skupper-hello-world-frontend/templates/service.yaml -------------------------------------------------------------------------------- /helm/skupper-sample-app/skupper-hello-world-frontend/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/skupper-sample-app/skupper-hello-world-frontend/values.yaml -------------------------------------------------------------------------------- /helm/skupper/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/skupper/.helmignore -------------------------------------------------------------------------------- /helm/skupper/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/skupper/Chart.yaml -------------------------------------------------------------------------------- /helm/skupper/templates/skupper.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/skupper/templates/skupper.yaml -------------------------------------------------------------------------------- /helm/skupper/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/helm/skupper/values.yaml -------------------------------------------------------------------------------- /manifest/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/manifest/manifest.yaml -------------------------------------------------------------------------------- /pkg/artifact/artifact.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/pkg/artifact/artifact.go -------------------------------------------------------------------------------- /pkg/intel-gpu-debug/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/pkg/intel-gpu-debug/Dockerfile -------------------------------------------------------------------------------- /pkg/intel-gpu-debug/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/pkg/intel-gpu-debug/Makefile -------------------------------------------------------------------------------- /pkg/intel-gpu-debug/VERSION: -------------------------------------------------------------------------------- 1 | 1.3.3 2 | -------------------------------------------------------------------------------- /pkg/kubevirt-helper/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/pkg/kubevirt-helper/.gitignore -------------------------------------------------------------------------------- /pkg/kubevirt-helper/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/pkg/kubevirt-helper/.golangci.yml -------------------------------------------------------------------------------- /pkg/kubevirt-helper/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/pkg/kubevirt-helper/Dockerfile -------------------------------------------------------------------------------- /pkg/kubevirt-helper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/pkg/kubevirt-helper/Makefile -------------------------------------------------------------------------------- /pkg/kubevirt-helper/VERSION: -------------------------------------------------------------------------------- 1 | 1.5.8 2 | -------------------------------------------------------------------------------- /pkg/kubevirt-helper/cmd/kubevirt-helper/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/pkg/kubevirt-helper/cmd/kubevirt-helper/main.go -------------------------------------------------------------------------------- /pkg/kubevirt-helper/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/pkg/kubevirt-helper/go.mod -------------------------------------------------------------------------------- /pkg/kubevirt-helper/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/pkg/kubevirt-helper/go.sum -------------------------------------------------------------------------------- /pkg/kubevirt-helper/internal/k8swebhook/mocks/k8s_manager_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/pkg/kubevirt-helper/internal/k8swebhook/mocks/k8s_manager_mock.go -------------------------------------------------------------------------------- /pkg/kubevirt-helper/internal/k8swebhook/mocks/k8swebhookserver_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/pkg/kubevirt-helper/internal/k8swebhook/mocks/k8swebhookserver_mock.go -------------------------------------------------------------------------------- /pkg/kubevirt-helper/internal/k8swebhook/webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/pkg/kubevirt-helper/internal/k8swebhook/webhook.go -------------------------------------------------------------------------------- /pkg/kubevirt-helper/internal/k8swebhook/webhook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/pkg/kubevirt-helper/internal/k8swebhook/webhook_test.go -------------------------------------------------------------------------------- /pkg/kubevirt-helper/internal/kubevirt/fuzztests/kubevirt_fuzz_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/pkg/kubevirt-helper/internal/kubevirt/fuzztests/kubevirt_fuzz_test.go -------------------------------------------------------------------------------- /pkg/kubevirt-helper/internal/kubevirt/kubevirt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/pkg/kubevirt-helper/internal/kubevirt/kubevirt.go -------------------------------------------------------------------------------- /pkg/kubevirt-helper/internal/kubevirt/kubevirt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/pkg/kubevirt-helper/internal/kubevirt/kubevirt_test.go -------------------------------------------------------------------------------- /pkg/kubevirt-helper/internal/kubevirt/mocks/kubevirt_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/pkg/kubevirt-helper/internal/kubevirt/mocks/kubevirt_mock.go -------------------------------------------------------------------------------- /pkg/kubevirt-helper/internal/manager/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/pkg/kubevirt-helper/internal/manager/manager.go -------------------------------------------------------------------------------- /pkg/kubevirt-helper/internal/manager/manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/pkg/kubevirt-helper/internal/manager/manager_test.go -------------------------------------------------------------------------------- /pkg/kubevirt-helper/trivy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/pkg/kubevirt-helper/trivy.yaml -------------------------------------------------------------------------------- /pkg/manifest-version-check/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/pkg/manifest-version-check/go.mod -------------------------------------------------------------------------------- /pkg/manifest-version-check/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/pkg/manifest-version-check/go.sum -------------------------------------------------------------------------------- /pkg/manifest-version-check/manifest-version-check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/pkg/manifest-version-check/manifest-version-check.go -------------------------------------------------------------------------------- /pkg/manifest/manifest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/pkg/manifest/manifest.go -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/requirements.txt -------------------------------------------------------------------------------- /trivy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/trivy.yaml -------------------------------------------------------------------------------- /version.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/cluster-extensions/HEAD/version.mk --------------------------------------------------------------------------------