├── .gitattributes ├── .github ├── CODEOWNERS ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml ├── labeler.yml └── workflows │ ├── auto-add-labels.yml │ ├── auto-close.yml │ ├── auto-update.yml │ ├── post-merge-attestationstatus.yml │ ├── post-merge-host.yml │ ├── post-merge-maintenance.yml │ ├── post-merge-networking.yml │ ├── post-merge-os-resource.yml │ ├── post-merge-scorecard.yml │ ├── post-merge-telemetry.yml │ └── pre-merge.yml ├── .gitignore ├── .markdownlint.yml ├── .markdownlintignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTORS.md ├── LICENSE ├── LICENSES └── Apache-2.0.txt ├── Makefile ├── README.md ├── REUSE.toml ├── SECURITY.md ├── attestationstatus ├── .golangci.yml ├── Dockerfile ├── LICENSES │ └── Apache-2.0.txt ├── Makefile ├── README.md ├── REUSE.toml ├── VERSION ├── buf.gen.yaml ├── buf.work.yaml ├── cmd │ └── main.go ├── docs │ └── api │ │ └── attestationmgr.md ├── go.mod ├── go.sum ├── pkg │ ├── api │ │ ├── attestmgr │ │ │ └── v1 │ │ │ │ ├── attestmgr.pb.go │ │ │ │ ├── attestmgr.pb.validate.go │ │ │ │ ├── attestmgr.proto │ │ │ │ └── attestmgr_grpc.pb.go │ │ ├── buf.lock │ │ └── buf.yaml │ ├── attestmgr │ │ ├── attestmgr.go │ │ ├── attestmgr_utils_test.go │ │ ├── grpc_server.go │ │ └── grpc_server_test.go │ ├── config │ │ ├── config.go │ │ └── config_test.go │ └── invclient │ │ └── invclient.go ├── rego │ └── authz.rego └── requirements.txt ├── common.mk ├── host ├── .dockerignore ├── .golangci.yml ├── .markdownlintignore ├── .trivyignore ├── Dockerfile ├── LICENSES │ └── Apache-2.0.txt ├── Makefile ├── README.md ├── REUSE.toml ├── VERSION ├── buf.gen.yaml ├── buf.work.yaml ├── cmd │ └── hostmgr │ │ └── main.go ├── docs │ ├── Instance_workflow.md │ └── api │ │ └── hostmgr.md ├── go.mod ├── go.sum ├── internal │ └── hostmgr │ │ └── handlers │ │ ├── northbound.go │ │ └── northbound_test.go ├── pkg │ ├── alivemgr │ │ ├── availability_manager.go │ │ └── availability_manager_test.go │ ├── api │ │ ├── buf.lock │ │ ├── buf.yaml │ │ └── hostmgr │ │ │ └── proto │ │ │ ├── hostmgr_southbound.pb.go │ │ │ ├── hostmgr_southbound.pb.validate.go │ │ │ ├── hostmgr_southbound.proto │ │ │ └── hostmgr_southbound_grpc.pb.go │ ├── config │ │ ├── config.go │ │ └── config_test.go │ ├── errors │ │ ├── errors.go │ │ └── errors_test.go │ ├── hostmgr │ │ ├── grpc_server.go │ │ ├── grpc_server_gpu_test.go │ │ ├── grpc_server_nic_test.go │ │ ├── grpc_server_storage_test.go │ │ ├── grpc_server_test.go │ │ ├── grpc_server_usb_test.go │ │ ├── hostmgr.go │ │ ├── hostmgr_test.go │ │ ├── hostmgr_utils_test.go │ │ └── southbound_handler.go │ ├── invclient │ │ ├── common.go │ │ ├── invclient.go │ │ └── invclient_test.go │ ├── status │ │ └── status.go │ └── utils │ │ ├── utils.go │ │ └── utils_test.go ├── rego │ └── authz.rego ├── requirements.txt ├── test │ ├── docker-compose.yaml │ ├── utils │ │ └── hostmgr_utils.go │ └── validation_test.go └── trivy.yaml ├── maintenance ├── .golangci.yml ├── .markdownlintignore ├── .trivyignore ├── Dockerfile ├── LICENSES │ └── Apache-2.0.txt ├── Makefile ├── README.md ├── REUSE.toml ├── VERSION ├── buf.gen.yaml ├── buf.work.yaml ├── cmd │ └── maintmgr │ │ └── main.go ├── docs │ ├── api │ │ └── maintmgr.md │ └── schedule.md ├── go.mod ├── go.sum ├── internal │ └── testing │ │ └── testing_utils.go ├── pkg │ ├── api │ │ ├── buf.lock │ │ ├── buf.yaml │ │ └── maintmgr │ │ │ └── v1 │ │ │ ├── maintmgr.pb.go │ │ │ ├── maintmgr.pb.validate.go │ │ │ ├── maintmgr.proto │ │ │ └── maintmgr_grpc.pb.go │ ├── errors │ │ ├── errors.go │ │ └── errors_test.go │ ├── invclient │ │ ├── invclient.go │ │ └── invclient_test.go │ ├── maintmgr │ │ ├── grpc_server.go │ │ ├── grpc_server_test.go │ │ ├── maintmgr.go │ │ ├── maintmgr_test.go │ │ ├── maintmgr_utils_test.go │ │ ├── southbound_handler.go │ │ └── southbound_handler_test.go │ ├── status │ │ └── status.go │ ├── statusdetail │ │ ├── statusdetail.go │ │ └── statusdetail_test.go │ └── utils │ │ ├── utils.go │ │ └── utils_test.go ├── rego │ └── authz.rego ├── requirements.txt └── trivy.yaml ├── networking ├── .dockerignore ├── .gitignore ├── .golangci.yml ├── .markdownlintignore ├── .trivyignore ├── Dockerfile ├── LICENSES │ └── Apache-2.0.txt ├── Makefile ├── README.md ├── REUSE.toml ├── VERSION ├── cmd │ └── main.go ├── go.mod ├── go.sum ├── internal │ ├── clients │ │ ├── invclient.go │ │ └── invclient_test.go │ ├── errors │ │ ├── errors.go │ │ └── errors_test.go │ ├── handlers │ │ ├── northbound.go │ │ └── northbound_test.go │ ├── reconcilers │ │ ├── common.go │ │ ├── common_test.go │ │ ├── ip_reconciler.go │ │ └── ip_reconciler_test.go │ ├── testing │ │ ├── testing.go │ │ └── testing_utils.go │ └── utils │ │ ├── utils.go │ │ └── utils_test.go ├── requirements.txt └── trivy.yaml ├── os-resource ├── .dockerignore ├── .golangci.yml ├── .markdownlintignore ├── .trivyignore ├── Dockerfile ├── LICENSES │ └── Apache-2.0.txt ├── Makefile ├── README.md ├── REUSE.toml ├── VERSION ├── cmd │ └── osrm.go ├── docs │ ├── architecture-internals.md │ └── os_resource_manager.svg ├── go.mod ├── go.sum ├── internal │ ├── common │ │ ├── config.go │ │ ├── config_test.go │ │ └── flags.go │ ├── controller │ │ ├── controller.go │ │ ├── controller_test.go │ │ └── reconcilers │ │ │ ├── common.go │ │ │ ├── tenant.go │ │ │ └── tenant_test.go │ ├── fsclient │ │ ├── fsclient.go │ │ └── fsclient_test.go │ ├── invclient │ │ ├── invclient.go │ │ └── invclient_test.go │ ├── testing │ │ ├── artifactservice_mock.go │ │ └── testing_utils.go │ └── util │ │ ├── util.go │ │ └── util_test.go ├── requirements.txt └── trivy.yaml ├── requirements.txt ├── telemetry ├── .dockerignore ├── .gitignore ├── .golangci.yml ├── .markdownlintignore ├── .trivyignore ├── Dockerfile ├── LICENSES │ └── Apache-2.0.txt ├── Makefile ├── README.md ├── REUSE.toml ├── VERSION ├── api │ ├── buf.lock │ ├── buf.yaml │ └── telemetrymgr │ │ └── v1 │ │ └── telemetrymgr.proto ├── buf.gen.yaml ├── buf.work.yaml ├── cmd │ └── telemetrymgr │ │ ├── main.go │ │ └── main_test.go ├── docs │ ├── telemetry-hierarchy.drawio.svg │ └── telemetry-profile.md ├── go.mod ├── go.sum ├── internal │ ├── handlers │ │ ├── northbound │ │ │ ├── northbound.go │ │ │ └── northbound_test.go │ │ └── southbound │ │ │ ├── southbound.go │ │ │ └── southbound_test.go │ ├── invclient │ │ ├── invclient.go │ │ ├── invclient_test.go │ │ ├── telemetrycache.go │ │ └── telemetrycache_test.go │ ├── server │ │ ├── server.go │ │ └── server_test.go │ ├── telemetrymgrsvc │ │ ├── telemetrymgr.go │ │ ├── telemetrymgr_test.go │ │ ├── telemetrymgr_utils.go │ │ └── telemetrymgr_utils_test.go │ └── testing │ │ └── testing_utils.go ├── pkg │ └── api │ │ └── telemetrymgr │ │ └── v1 │ │ ├── telemetrymgr.pb.go │ │ ├── telemetrymgr.pb.validate.go │ │ └── telemetrymgr_grpc.pb.go ├── rego │ └── authz.rego ├── requirements.txt └── trivy.yaml └── version.mk /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/auto-add-labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/.github/workflows/auto-add-labels.yml -------------------------------------------------------------------------------- /.github/workflows/auto-close.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/.github/workflows/auto-close.yml -------------------------------------------------------------------------------- /.github/workflows/auto-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/.github/workflows/auto-update.yml -------------------------------------------------------------------------------- /.github/workflows/post-merge-attestationstatus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/.github/workflows/post-merge-attestationstatus.yml -------------------------------------------------------------------------------- /.github/workflows/post-merge-host.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/.github/workflows/post-merge-host.yml -------------------------------------------------------------------------------- /.github/workflows/post-merge-maintenance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/.github/workflows/post-merge-maintenance.yml -------------------------------------------------------------------------------- /.github/workflows/post-merge-networking.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/.github/workflows/post-merge-networking.yml -------------------------------------------------------------------------------- /.github/workflows/post-merge-os-resource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/.github/workflows/post-merge-os-resource.yml -------------------------------------------------------------------------------- /.github/workflows/post-merge-scorecard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/.github/workflows/post-merge-scorecard.yml -------------------------------------------------------------------------------- /.github/workflows/post-merge-telemetry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/.github/workflows/post-merge-telemetry.yml -------------------------------------------------------------------------------- /.github/workflows/pre-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/.github/workflows/pre-merge.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/.markdownlint.yml -------------------------------------------------------------------------------- /.markdownlintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/.markdownlintignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSES/Apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/LICENSES/Apache-2.0.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/README.md -------------------------------------------------------------------------------- /REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/REUSE.toml -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/SECURITY.md -------------------------------------------------------------------------------- /attestationstatus/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/attestationstatus/.golangci.yml -------------------------------------------------------------------------------- /attestationstatus/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/attestationstatus/Dockerfile -------------------------------------------------------------------------------- /attestationstatus/LICENSES/Apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/attestationstatus/LICENSES/Apache-2.0.txt -------------------------------------------------------------------------------- /attestationstatus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/attestationstatus/Makefile -------------------------------------------------------------------------------- /attestationstatus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/attestationstatus/README.md -------------------------------------------------------------------------------- /attestationstatus/REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/attestationstatus/REUSE.toml -------------------------------------------------------------------------------- /attestationstatus/VERSION: -------------------------------------------------------------------------------- 1 | 0.8.2-dev 2 | -------------------------------------------------------------------------------- /attestationstatus/buf.gen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/attestationstatus/buf.gen.yaml -------------------------------------------------------------------------------- /attestationstatus/buf.work.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/attestationstatus/buf.work.yaml -------------------------------------------------------------------------------- /attestationstatus/cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/attestationstatus/cmd/main.go -------------------------------------------------------------------------------- /attestationstatus/docs/api/attestationmgr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/attestationstatus/docs/api/attestationmgr.md -------------------------------------------------------------------------------- /attestationstatus/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/attestationstatus/go.mod -------------------------------------------------------------------------------- /attestationstatus/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/attestationstatus/go.sum -------------------------------------------------------------------------------- /attestationstatus/pkg/api/attestmgr/v1/attestmgr.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/attestationstatus/pkg/api/attestmgr/v1/attestmgr.pb.go -------------------------------------------------------------------------------- /attestationstatus/pkg/api/attestmgr/v1/attestmgr.pb.validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/attestationstatus/pkg/api/attestmgr/v1/attestmgr.pb.validate.go -------------------------------------------------------------------------------- /attestationstatus/pkg/api/attestmgr/v1/attestmgr.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/attestationstatus/pkg/api/attestmgr/v1/attestmgr.proto -------------------------------------------------------------------------------- /attestationstatus/pkg/api/attestmgr/v1/attestmgr_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/attestationstatus/pkg/api/attestmgr/v1/attestmgr_grpc.pb.go -------------------------------------------------------------------------------- /attestationstatus/pkg/api/buf.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/attestationstatus/pkg/api/buf.lock -------------------------------------------------------------------------------- /attestationstatus/pkg/api/buf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/attestationstatus/pkg/api/buf.yaml -------------------------------------------------------------------------------- /attestationstatus/pkg/attestmgr/attestmgr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/attestationstatus/pkg/attestmgr/attestmgr.go -------------------------------------------------------------------------------- /attestationstatus/pkg/attestmgr/attestmgr_utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/attestationstatus/pkg/attestmgr/attestmgr_utils_test.go -------------------------------------------------------------------------------- /attestationstatus/pkg/attestmgr/grpc_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/attestationstatus/pkg/attestmgr/grpc_server.go -------------------------------------------------------------------------------- /attestationstatus/pkg/attestmgr/grpc_server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/attestationstatus/pkg/attestmgr/grpc_server_test.go -------------------------------------------------------------------------------- /attestationstatus/pkg/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/attestationstatus/pkg/config/config.go -------------------------------------------------------------------------------- /attestationstatus/pkg/config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/attestationstatus/pkg/config/config_test.go -------------------------------------------------------------------------------- /attestationstatus/pkg/invclient/invclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/attestationstatus/pkg/invclient/invclient.go -------------------------------------------------------------------------------- /attestationstatus/rego/authz.rego: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/attestationstatus/rego/authz.rego -------------------------------------------------------------------------------- /attestationstatus/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/attestationstatus/requirements.txt -------------------------------------------------------------------------------- /common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/common.mk -------------------------------------------------------------------------------- /host/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/host/.dockerignore -------------------------------------------------------------------------------- /host/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/host/.golangci.yml -------------------------------------------------------------------------------- /host/.markdownlintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/host/.markdownlintignore -------------------------------------------------------------------------------- /host/.trivyignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/host/.trivyignore -------------------------------------------------------------------------------- /host/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/host/Dockerfile -------------------------------------------------------------------------------- /host/LICENSES/Apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/host/LICENSES/Apache-2.0.txt -------------------------------------------------------------------------------- /host/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/host/Makefile -------------------------------------------------------------------------------- /host/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/host/README.md -------------------------------------------------------------------------------- /host/REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/host/REUSE.toml -------------------------------------------------------------------------------- /host/VERSION: -------------------------------------------------------------------------------- 1 | 1.24.2-dev 2 | -------------------------------------------------------------------------------- /host/buf.gen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/host/buf.gen.yaml -------------------------------------------------------------------------------- /host/buf.work.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/host/buf.work.yaml -------------------------------------------------------------------------------- /host/cmd/hostmgr/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/host/cmd/hostmgr/main.go -------------------------------------------------------------------------------- /host/docs/Instance_workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/host/docs/Instance_workflow.md -------------------------------------------------------------------------------- /host/docs/api/hostmgr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/host/docs/api/hostmgr.md -------------------------------------------------------------------------------- /host/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/host/go.mod -------------------------------------------------------------------------------- /host/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/host/go.sum -------------------------------------------------------------------------------- /host/internal/hostmgr/handlers/northbound.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/host/internal/hostmgr/handlers/northbound.go -------------------------------------------------------------------------------- /host/internal/hostmgr/handlers/northbound_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/host/internal/hostmgr/handlers/northbound_test.go -------------------------------------------------------------------------------- /host/pkg/alivemgr/availability_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/host/pkg/alivemgr/availability_manager.go -------------------------------------------------------------------------------- /host/pkg/alivemgr/availability_manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/host/pkg/alivemgr/availability_manager_test.go -------------------------------------------------------------------------------- /host/pkg/api/buf.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/host/pkg/api/buf.lock -------------------------------------------------------------------------------- /host/pkg/api/buf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/host/pkg/api/buf.yaml -------------------------------------------------------------------------------- /host/pkg/api/hostmgr/proto/hostmgr_southbound.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/host/pkg/api/hostmgr/proto/hostmgr_southbound.pb.go -------------------------------------------------------------------------------- /host/pkg/api/hostmgr/proto/hostmgr_southbound.pb.validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/host/pkg/api/hostmgr/proto/hostmgr_southbound.pb.validate.go -------------------------------------------------------------------------------- /host/pkg/api/hostmgr/proto/hostmgr_southbound.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/host/pkg/api/hostmgr/proto/hostmgr_southbound.proto -------------------------------------------------------------------------------- /host/pkg/api/hostmgr/proto/hostmgr_southbound_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/host/pkg/api/hostmgr/proto/hostmgr_southbound_grpc.pb.go -------------------------------------------------------------------------------- /host/pkg/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/host/pkg/config/config.go -------------------------------------------------------------------------------- /host/pkg/config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/host/pkg/config/config_test.go -------------------------------------------------------------------------------- /host/pkg/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/host/pkg/errors/errors.go -------------------------------------------------------------------------------- /host/pkg/errors/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/host/pkg/errors/errors_test.go -------------------------------------------------------------------------------- /host/pkg/hostmgr/grpc_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/host/pkg/hostmgr/grpc_server.go -------------------------------------------------------------------------------- /host/pkg/hostmgr/grpc_server_gpu_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/host/pkg/hostmgr/grpc_server_gpu_test.go -------------------------------------------------------------------------------- /host/pkg/hostmgr/grpc_server_nic_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/host/pkg/hostmgr/grpc_server_nic_test.go -------------------------------------------------------------------------------- /host/pkg/hostmgr/grpc_server_storage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/host/pkg/hostmgr/grpc_server_storage_test.go -------------------------------------------------------------------------------- /host/pkg/hostmgr/grpc_server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/host/pkg/hostmgr/grpc_server_test.go -------------------------------------------------------------------------------- /host/pkg/hostmgr/grpc_server_usb_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/host/pkg/hostmgr/grpc_server_usb_test.go -------------------------------------------------------------------------------- /host/pkg/hostmgr/hostmgr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/host/pkg/hostmgr/hostmgr.go -------------------------------------------------------------------------------- /host/pkg/hostmgr/hostmgr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/host/pkg/hostmgr/hostmgr_test.go -------------------------------------------------------------------------------- /host/pkg/hostmgr/hostmgr_utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/host/pkg/hostmgr/hostmgr_utils_test.go -------------------------------------------------------------------------------- /host/pkg/hostmgr/southbound_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/host/pkg/hostmgr/southbound_handler.go -------------------------------------------------------------------------------- /host/pkg/invclient/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/host/pkg/invclient/common.go -------------------------------------------------------------------------------- /host/pkg/invclient/invclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/host/pkg/invclient/invclient.go -------------------------------------------------------------------------------- /host/pkg/invclient/invclient_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/host/pkg/invclient/invclient_test.go -------------------------------------------------------------------------------- /host/pkg/status/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/host/pkg/status/status.go -------------------------------------------------------------------------------- /host/pkg/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/host/pkg/utils/utils.go -------------------------------------------------------------------------------- /host/pkg/utils/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/host/pkg/utils/utils_test.go -------------------------------------------------------------------------------- /host/rego/authz.rego: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/host/rego/authz.rego -------------------------------------------------------------------------------- /host/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/host/requirements.txt -------------------------------------------------------------------------------- /host/test/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/host/test/docker-compose.yaml -------------------------------------------------------------------------------- /host/test/utils/hostmgr_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/host/test/utils/hostmgr_utils.go -------------------------------------------------------------------------------- /host/test/validation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/host/test/validation_test.go -------------------------------------------------------------------------------- /host/trivy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/host/trivy.yaml -------------------------------------------------------------------------------- /maintenance/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/maintenance/.golangci.yml -------------------------------------------------------------------------------- /maintenance/.markdownlintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/maintenance/.markdownlintignore -------------------------------------------------------------------------------- /maintenance/.trivyignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/maintenance/.trivyignore -------------------------------------------------------------------------------- /maintenance/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/maintenance/Dockerfile -------------------------------------------------------------------------------- /maintenance/LICENSES/Apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/maintenance/LICENSES/Apache-2.0.txt -------------------------------------------------------------------------------- /maintenance/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/maintenance/Makefile -------------------------------------------------------------------------------- /maintenance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/maintenance/README.md -------------------------------------------------------------------------------- /maintenance/REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/maintenance/REUSE.toml -------------------------------------------------------------------------------- /maintenance/VERSION: -------------------------------------------------------------------------------- 1 | 1.24.4-dev 2 | -------------------------------------------------------------------------------- /maintenance/buf.gen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/maintenance/buf.gen.yaml -------------------------------------------------------------------------------- /maintenance/buf.work.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/maintenance/buf.work.yaml -------------------------------------------------------------------------------- /maintenance/cmd/maintmgr/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/maintenance/cmd/maintmgr/main.go -------------------------------------------------------------------------------- /maintenance/docs/api/maintmgr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/maintenance/docs/api/maintmgr.md -------------------------------------------------------------------------------- /maintenance/docs/schedule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/maintenance/docs/schedule.md -------------------------------------------------------------------------------- /maintenance/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/maintenance/go.mod -------------------------------------------------------------------------------- /maintenance/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/maintenance/go.sum -------------------------------------------------------------------------------- /maintenance/internal/testing/testing_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/maintenance/internal/testing/testing_utils.go -------------------------------------------------------------------------------- /maintenance/pkg/api/buf.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/maintenance/pkg/api/buf.lock -------------------------------------------------------------------------------- /maintenance/pkg/api/buf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/maintenance/pkg/api/buf.yaml -------------------------------------------------------------------------------- /maintenance/pkg/api/maintmgr/v1/maintmgr.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/maintenance/pkg/api/maintmgr/v1/maintmgr.pb.go -------------------------------------------------------------------------------- /maintenance/pkg/api/maintmgr/v1/maintmgr.pb.validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/maintenance/pkg/api/maintmgr/v1/maintmgr.pb.validate.go -------------------------------------------------------------------------------- /maintenance/pkg/api/maintmgr/v1/maintmgr.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/maintenance/pkg/api/maintmgr/v1/maintmgr.proto -------------------------------------------------------------------------------- /maintenance/pkg/api/maintmgr/v1/maintmgr_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/maintenance/pkg/api/maintmgr/v1/maintmgr_grpc.pb.go -------------------------------------------------------------------------------- /maintenance/pkg/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/maintenance/pkg/errors/errors.go -------------------------------------------------------------------------------- /maintenance/pkg/errors/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/maintenance/pkg/errors/errors_test.go -------------------------------------------------------------------------------- /maintenance/pkg/invclient/invclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/maintenance/pkg/invclient/invclient.go -------------------------------------------------------------------------------- /maintenance/pkg/invclient/invclient_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/maintenance/pkg/invclient/invclient_test.go -------------------------------------------------------------------------------- /maintenance/pkg/maintmgr/grpc_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/maintenance/pkg/maintmgr/grpc_server.go -------------------------------------------------------------------------------- /maintenance/pkg/maintmgr/grpc_server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/maintenance/pkg/maintmgr/grpc_server_test.go -------------------------------------------------------------------------------- /maintenance/pkg/maintmgr/maintmgr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/maintenance/pkg/maintmgr/maintmgr.go -------------------------------------------------------------------------------- /maintenance/pkg/maintmgr/maintmgr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/maintenance/pkg/maintmgr/maintmgr_test.go -------------------------------------------------------------------------------- /maintenance/pkg/maintmgr/maintmgr_utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/maintenance/pkg/maintmgr/maintmgr_utils_test.go -------------------------------------------------------------------------------- /maintenance/pkg/maintmgr/southbound_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/maintenance/pkg/maintmgr/southbound_handler.go -------------------------------------------------------------------------------- /maintenance/pkg/maintmgr/southbound_handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/maintenance/pkg/maintmgr/southbound_handler_test.go -------------------------------------------------------------------------------- /maintenance/pkg/status/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/maintenance/pkg/status/status.go -------------------------------------------------------------------------------- /maintenance/pkg/statusdetail/statusdetail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/maintenance/pkg/statusdetail/statusdetail.go -------------------------------------------------------------------------------- /maintenance/pkg/statusdetail/statusdetail_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/maintenance/pkg/statusdetail/statusdetail_test.go -------------------------------------------------------------------------------- /maintenance/pkg/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/maintenance/pkg/utils/utils.go -------------------------------------------------------------------------------- /maintenance/pkg/utils/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/maintenance/pkg/utils/utils_test.go -------------------------------------------------------------------------------- /maintenance/rego/authz.rego: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/maintenance/rego/authz.rego -------------------------------------------------------------------------------- /maintenance/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/maintenance/requirements.txt -------------------------------------------------------------------------------- /maintenance/trivy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/maintenance/trivy.yaml -------------------------------------------------------------------------------- /networking/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/networking/.dockerignore -------------------------------------------------------------------------------- /networking/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/networking/.gitignore -------------------------------------------------------------------------------- /networking/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/networking/.golangci.yml -------------------------------------------------------------------------------- /networking/.markdownlintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/networking/.markdownlintignore -------------------------------------------------------------------------------- /networking/.trivyignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/networking/.trivyignore -------------------------------------------------------------------------------- /networking/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/networking/Dockerfile -------------------------------------------------------------------------------- /networking/LICENSES/Apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/networking/LICENSES/Apache-2.0.txt -------------------------------------------------------------------------------- /networking/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/networking/Makefile -------------------------------------------------------------------------------- /networking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/networking/README.md -------------------------------------------------------------------------------- /networking/REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/networking/REUSE.toml -------------------------------------------------------------------------------- /networking/VERSION: -------------------------------------------------------------------------------- 1 | 1.20.1-dev 2 | -------------------------------------------------------------------------------- /networking/cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/networking/cmd/main.go -------------------------------------------------------------------------------- /networking/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/networking/go.mod -------------------------------------------------------------------------------- /networking/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/networking/go.sum -------------------------------------------------------------------------------- /networking/internal/clients/invclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/networking/internal/clients/invclient.go -------------------------------------------------------------------------------- /networking/internal/clients/invclient_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/networking/internal/clients/invclient_test.go -------------------------------------------------------------------------------- /networking/internal/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/networking/internal/errors/errors.go -------------------------------------------------------------------------------- /networking/internal/errors/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/networking/internal/errors/errors_test.go -------------------------------------------------------------------------------- /networking/internal/handlers/northbound.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/networking/internal/handlers/northbound.go -------------------------------------------------------------------------------- /networking/internal/handlers/northbound_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/networking/internal/handlers/northbound_test.go -------------------------------------------------------------------------------- /networking/internal/reconcilers/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/networking/internal/reconcilers/common.go -------------------------------------------------------------------------------- /networking/internal/reconcilers/common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/networking/internal/reconcilers/common_test.go -------------------------------------------------------------------------------- /networking/internal/reconcilers/ip_reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/networking/internal/reconcilers/ip_reconciler.go -------------------------------------------------------------------------------- /networking/internal/reconcilers/ip_reconciler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/networking/internal/reconcilers/ip_reconciler_test.go -------------------------------------------------------------------------------- /networking/internal/testing/testing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/networking/internal/testing/testing.go -------------------------------------------------------------------------------- /networking/internal/testing/testing_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/networking/internal/testing/testing_utils.go -------------------------------------------------------------------------------- /networking/internal/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/networking/internal/utils/utils.go -------------------------------------------------------------------------------- /networking/internal/utils/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/networking/internal/utils/utils_test.go -------------------------------------------------------------------------------- /networking/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/networking/requirements.txt -------------------------------------------------------------------------------- /networking/trivy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/networking/trivy.yaml -------------------------------------------------------------------------------- /os-resource/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/os-resource/.dockerignore -------------------------------------------------------------------------------- /os-resource/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/os-resource/.golangci.yml -------------------------------------------------------------------------------- /os-resource/.markdownlintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/os-resource/.markdownlintignore -------------------------------------------------------------------------------- /os-resource/.trivyignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/os-resource/.trivyignore -------------------------------------------------------------------------------- /os-resource/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/os-resource/Dockerfile -------------------------------------------------------------------------------- /os-resource/LICENSES/Apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/os-resource/LICENSES/Apache-2.0.txt -------------------------------------------------------------------------------- /os-resource/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/os-resource/Makefile -------------------------------------------------------------------------------- /os-resource/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/os-resource/README.md -------------------------------------------------------------------------------- /os-resource/REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/os-resource/REUSE.toml -------------------------------------------------------------------------------- /os-resource/VERSION: -------------------------------------------------------------------------------- 1 | 0.20.6-dev 2 | -------------------------------------------------------------------------------- /os-resource/cmd/osrm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/os-resource/cmd/osrm.go -------------------------------------------------------------------------------- /os-resource/docs/architecture-internals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/os-resource/docs/architecture-internals.md -------------------------------------------------------------------------------- /os-resource/docs/os_resource_manager.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/os-resource/docs/os_resource_manager.svg -------------------------------------------------------------------------------- /os-resource/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/os-resource/go.mod -------------------------------------------------------------------------------- /os-resource/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/os-resource/go.sum -------------------------------------------------------------------------------- /os-resource/internal/common/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/os-resource/internal/common/config.go -------------------------------------------------------------------------------- /os-resource/internal/common/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/os-resource/internal/common/config_test.go -------------------------------------------------------------------------------- /os-resource/internal/common/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/os-resource/internal/common/flags.go -------------------------------------------------------------------------------- /os-resource/internal/controller/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/os-resource/internal/controller/controller.go -------------------------------------------------------------------------------- /os-resource/internal/controller/controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/os-resource/internal/controller/controller_test.go -------------------------------------------------------------------------------- /os-resource/internal/controller/reconcilers/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/os-resource/internal/controller/reconcilers/common.go -------------------------------------------------------------------------------- /os-resource/internal/controller/reconcilers/tenant.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/os-resource/internal/controller/reconcilers/tenant.go -------------------------------------------------------------------------------- /os-resource/internal/controller/reconcilers/tenant_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/os-resource/internal/controller/reconcilers/tenant_test.go -------------------------------------------------------------------------------- /os-resource/internal/fsclient/fsclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/os-resource/internal/fsclient/fsclient.go -------------------------------------------------------------------------------- /os-resource/internal/fsclient/fsclient_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/os-resource/internal/fsclient/fsclient_test.go -------------------------------------------------------------------------------- /os-resource/internal/invclient/invclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/os-resource/internal/invclient/invclient.go -------------------------------------------------------------------------------- /os-resource/internal/invclient/invclient_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/os-resource/internal/invclient/invclient_test.go -------------------------------------------------------------------------------- /os-resource/internal/testing/artifactservice_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/os-resource/internal/testing/artifactservice_mock.go -------------------------------------------------------------------------------- /os-resource/internal/testing/testing_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/os-resource/internal/testing/testing_utils.go -------------------------------------------------------------------------------- /os-resource/internal/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/os-resource/internal/util/util.go -------------------------------------------------------------------------------- /os-resource/internal/util/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/os-resource/internal/util/util_test.go -------------------------------------------------------------------------------- /os-resource/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/os-resource/requirements.txt -------------------------------------------------------------------------------- /os-resource/trivy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/os-resource/trivy.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/requirements.txt -------------------------------------------------------------------------------- /telemetry/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/telemetry/.dockerignore -------------------------------------------------------------------------------- /telemetry/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/telemetry/.gitignore -------------------------------------------------------------------------------- /telemetry/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/telemetry/.golangci.yml -------------------------------------------------------------------------------- /telemetry/.markdownlintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/telemetry/.markdownlintignore -------------------------------------------------------------------------------- /telemetry/.trivyignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/telemetry/.trivyignore -------------------------------------------------------------------------------- /telemetry/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/telemetry/Dockerfile -------------------------------------------------------------------------------- /telemetry/LICENSES/Apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/telemetry/LICENSES/Apache-2.0.txt -------------------------------------------------------------------------------- /telemetry/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/telemetry/Makefile -------------------------------------------------------------------------------- /telemetry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/telemetry/README.md -------------------------------------------------------------------------------- /telemetry/REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/telemetry/REUSE.toml -------------------------------------------------------------------------------- /telemetry/VERSION: -------------------------------------------------------------------------------- 1 | 1.24.2-dev 2 | -------------------------------------------------------------------------------- /telemetry/api/buf.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/telemetry/api/buf.lock -------------------------------------------------------------------------------- /telemetry/api/buf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/telemetry/api/buf.yaml -------------------------------------------------------------------------------- /telemetry/api/telemetrymgr/v1/telemetrymgr.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/telemetry/api/telemetrymgr/v1/telemetrymgr.proto -------------------------------------------------------------------------------- /telemetry/buf.gen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/telemetry/buf.gen.yaml -------------------------------------------------------------------------------- /telemetry/buf.work.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/telemetry/buf.work.yaml -------------------------------------------------------------------------------- /telemetry/cmd/telemetrymgr/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/telemetry/cmd/telemetrymgr/main.go -------------------------------------------------------------------------------- /telemetry/cmd/telemetrymgr/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/telemetry/cmd/telemetrymgr/main_test.go -------------------------------------------------------------------------------- /telemetry/docs/telemetry-hierarchy.drawio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/telemetry/docs/telemetry-hierarchy.drawio.svg -------------------------------------------------------------------------------- /telemetry/docs/telemetry-profile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/telemetry/docs/telemetry-profile.md -------------------------------------------------------------------------------- /telemetry/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/telemetry/go.mod -------------------------------------------------------------------------------- /telemetry/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/telemetry/go.sum -------------------------------------------------------------------------------- /telemetry/internal/handlers/northbound/northbound.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/telemetry/internal/handlers/northbound/northbound.go -------------------------------------------------------------------------------- /telemetry/internal/handlers/northbound/northbound_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/telemetry/internal/handlers/northbound/northbound_test.go -------------------------------------------------------------------------------- /telemetry/internal/handlers/southbound/southbound.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/telemetry/internal/handlers/southbound/southbound.go -------------------------------------------------------------------------------- /telemetry/internal/handlers/southbound/southbound_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/telemetry/internal/handlers/southbound/southbound_test.go -------------------------------------------------------------------------------- /telemetry/internal/invclient/invclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/telemetry/internal/invclient/invclient.go -------------------------------------------------------------------------------- /telemetry/internal/invclient/invclient_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/telemetry/internal/invclient/invclient_test.go -------------------------------------------------------------------------------- /telemetry/internal/invclient/telemetrycache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/telemetry/internal/invclient/telemetrycache.go -------------------------------------------------------------------------------- /telemetry/internal/invclient/telemetrycache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/telemetry/internal/invclient/telemetrycache_test.go -------------------------------------------------------------------------------- /telemetry/internal/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/telemetry/internal/server/server.go -------------------------------------------------------------------------------- /telemetry/internal/server/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/telemetry/internal/server/server_test.go -------------------------------------------------------------------------------- /telemetry/internal/telemetrymgrsvc/telemetrymgr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/telemetry/internal/telemetrymgrsvc/telemetrymgr.go -------------------------------------------------------------------------------- /telemetry/internal/telemetrymgrsvc/telemetrymgr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/telemetry/internal/telemetrymgrsvc/telemetrymgr_test.go -------------------------------------------------------------------------------- /telemetry/internal/telemetrymgrsvc/telemetrymgr_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/telemetry/internal/telemetrymgrsvc/telemetrymgr_utils.go -------------------------------------------------------------------------------- /telemetry/internal/telemetrymgrsvc/telemetrymgr_utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/telemetry/internal/telemetrymgrsvc/telemetrymgr_utils_test.go -------------------------------------------------------------------------------- /telemetry/internal/testing/testing_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/telemetry/internal/testing/testing_utils.go -------------------------------------------------------------------------------- /telemetry/pkg/api/telemetrymgr/v1/telemetrymgr.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/telemetry/pkg/api/telemetrymgr/v1/telemetrymgr.pb.go -------------------------------------------------------------------------------- /telemetry/pkg/api/telemetrymgr/v1/telemetrymgr.pb.validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/telemetry/pkg/api/telemetrymgr/v1/telemetrymgr.pb.validate.go -------------------------------------------------------------------------------- /telemetry/pkg/api/telemetrymgr/v1/telemetrymgr_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/telemetry/pkg/api/telemetrymgr/v1/telemetrymgr_grpc.pb.go -------------------------------------------------------------------------------- /telemetry/rego/authz.rego: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/telemetry/rego/authz.rego -------------------------------------------------------------------------------- /telemetry/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/telemetry/requirements.txt -------------------------------------------------------------------------------- /telemetry/trivy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/telemetry/trivy.yaml -------------------------------------------------------------------------------- /version.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-edge-platform/infra-managers/HEAD/version.mk --------------------------------------------------------------------------------