├── .editorconfig ├── .github ├── dependabot.yml └── workflows │ ├── 001-go-ubuntu-latest-make-test-format-lint.yaml │ ├── 090-go-release-ubuntu-latest-go-releaser.yaml │ └── README.md ├── .gitignore ├── .golangci.yaml ├── .goreleaser.yaml ├── Dockerfile.goreleaser ├── LICENSE ├── Makefile ├── README.md ├── RELEASING.md ├── bin └── .gitkeep ├── buf.gen.yaml ├── client └── README.md ├── cmd ├── cells │ ├── allocate │ │ └── allocate.go │ ├── cells.go │ ├── free │ │ └── free.go │ ├── start │ │ └── start.go │ └── stop │ │ └── stop.go ├── cmd.go ├── discovery │ ├── discover.go │ └── discover_test.go ├── health │ ├── check.go │ └── check_test.go ├── observe │ ├── observe.go │ └── observe_test.go ├── oci │ ├── create │ │ └── create.go │ ├── delete │ │ └── delete.go │ ├── kill │ │ └── kill.go │ ├── oci.go │ ├── start │ │ └── start.go │ └── state │ │ └── state.go ├── pki │ ├── create │ │ ├── create.go │ │ └── create_test.go │ └── pki.go ├── root │ └── root.go └── version │ ├── version.go │ └── version_test.go ├── compile.go ├── docs ├── aurae_pki.md └── subcommands.md ├── go.mod ├── go.sum ├── main.go └── pkg ├── cli ├── output_format.go ├── output_format_test.go ├── printer │ ├── interface.go │ ├── json.go │ └── yaml.go └── testsuite │ └── suite.go ├── client └── client.go ├── config ├── auth.go ├── config.go └── system.go ├── discovery └── discovery.go ├── health └── health.go ├── observe └── observe.go └── pki ├── pki.go ├── pki_test.go └── util.go /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/001-go-ubuntu-latest-make-test-format-lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/.github/workflows/001-go-ubuntu-latest-make-test-format-lint.yaml -------------------------------------------------------------------------------- /.github/workflows/090-go-release-ubuntu-latest-go-releaser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/.github/workflows/090-go-release-ubuntu-latest-go-releaser.yaml -------------------------------------------------------------------------------- /.github/workflows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/.github/workflows/README.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/.golangci.yaml -------------------------------------------------------------------------------- /.goreleaser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/.goreleaser.yaml -------------------------------------------------------------------------------- /Dockerfile.goreleaser: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY ae /ae 3 | ENTRYPOINT ["/ae"] 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/README.md -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/RELEASING.md -------------------------------------------------------------------------------- /bin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /buf.gen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/buf.gen.yaml -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/client/README.md -------------------------------------------------------------------------------- /cmd/cells/allocate/allocate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/cmd/cells/allocate/allocate.go -------------------------------------------------------------------------------- /cmd/cells/cells.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/cmd/cells/cells.go -------------------------------------------------------------------------------- /cmd/cells/free/free.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/cmd/cells/free/free.go -------------------------------------------------------------------------------- /cmd/cells/start/start.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/cmd/cells/start/start.go -------------------------------------------------------------------------------- /cmd/cells/stop/stop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/cmd/cells/stop/stop.go -------------------------------------------------------------------------------- /cmd/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/cmd/cmd.go -------------------------------------------------------------------------------- /cmd/discovery/discover.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/cmd/discovery/discover.go -------------------------------------------------------------------------------- /cmd/discovery/discover_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/cmd/discovery/discover_test.go -------------------------------------------------------------------------------- /cmd/health/check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/cmd/health/check.go -------------------------------------------------------------------------------- /cmd/health/check_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/cmd/health/check_test.go -------------------------------------------------------------------------------- /cmd/observe/observe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/cmd/observe/observe.go -------------------------------------------------------------------------------- /cmd/observe/observe_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/cmd/observe/observe_test.go -------------------------------------------------------------------------------- /cmd/oci/create/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/cmd/oci/create/create.go -------------------------------------------------------------------------------- /cmd/oci/delete/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/cmd/oci/delete/delete.go -------------------------------------------------------------------------------- /cmd/oci/kill/kill.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/cmd/oci/kill/kill.go -------------------------------------------------------------------------------- /cmd/oci/oci.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/cmd/oci/oci.go -------------------------------------------------------------------------------- /cmd/oci/start/start.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/cmd/oci/start/start.go -------------------------------------------------------------------------------- /cmd/oci/state/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/cmd/oci/state/state.go -------------------------------------------------------------------------------- /cmd/pki/create/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/cmd/pki/create/create.go -------------------------------------------------------------------------------- /cmd/pki/create/create_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/cmd/pki/create/create_test.go -------------------------------------------------------------------------------- /cmd/pki/pki.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/cmd/pki/pki.go -------------------------------------------------------------------------------- /cmd/root/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/cmd/root/root.go -------------------------------------------------------------------------------- /cmd/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/cmd/version/version.go -------------------------------------------------------------------------------- /cmd/version/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/cmd/version/version_test.go -------------------------------------------------------------------------------- /compile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/compile.go -------------------------------------------------------------------------------- /docs/aurae_pki.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/docs/aurae_pki.md -------------------------------------------------------------------------------- /docs/subcommands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/docs/subcommands.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/main.go -------------------------------------------------------------------------------- /pkg/cli/output_format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/pkg/cli/output_format.go -------------------------------------------------------------------------------- /pkg/cli/output_format_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/pkg/cli/output_format_test.go -------------------------------------------------------------------------------- /pkg/cli/printer/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/pkg/cli/printer/interface.go -------------------------------------------------------------------------------- /pkg/cli/printer/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/pkg/cli/printer/json.go -------------------------------------------------------------------------------- /pkg/cli/printer/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/pkg/cli/printer/yaml.go -------------------------------------------------------------------------------- /pkg/cli/testsuite/suite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/pkg/cli/testsuite/suite.go -------------------------------------------------------------------------------- /pkg/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/pkg/client/client.go -------------------------------------------------------------------------------- /pkg/config/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/pkg/config/auth.go -------------------------------------------------------------------------------- /pkg/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/pkg/config/config.go -------------------------------------------------------------------------------- /pkg/config/system.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/pkg/config/system.go -------------------------------------------------------------------------------- /pkg/discovery/discovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/pkg/discovery/discovery.go -------------------------------------------------------------------------------- /pkg/health/health.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/pkg/health/health.go -------------------------------------------------------------------------------- /pkg/observe/observe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/pkg/observe/observe.go -------------------------------------------------------------------------------- /pkg/pki/pki.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/pkg/pki/pki.go -------------------------------------------------------------------------------- /pkg/pki/pki_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/pkg/pki/pki_test.go -------------------------------------------------------------------------------- /pkg/pki/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurae-runtime/ae/HEAD/pkg/pki/util.go --------------------------------------------------------------------------------