├── .bazelrc ├── .env.example ├── .github └── workflows │ ├── docs.yml │ ├── lint.yaml │ └── pr.yml ├── .gitignore ├── BUILD ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── MODULE.bazel ├── Manatee_technical_charter_final_9-26-2024.pdf ├── README.md ├── app ├── api │ ├── .gitignore │ ├── .hz │ ├── BUILD.bazel │ ├── biz │ │ ├── dal │ │ │ ├── BUILD.bazel │ │ │ ├── db │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── init.go │ │ │ │ └── job.go │ │ │ └── init.go │ │ ├── handler │ │ │ ├── BUILD.bazel │ │ │ ├── health.go │ │ │ └── job │ │ │ │ ├── BUILD.bazel │ │ │ │ └── job_handler.go │ │ ├── model │ │ │ └── job │ │ │ │ ├── BUILD.bazel │ │ │ │ └── job.go │ │ ├── pkg │ │ │ ├── errno │ │ │ │ ├── BUILD.bazel │ │ │ │ └── errno.go │ │ │ ├── storage │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── gcs.go │ │ │ │ ├── minio.go │ │ │ │ ├── mock.go │ │ │ │ └── storage.go │ │ │ └── utils │ │ │ │ ├── BUILD.bazel │ │ │ │ └── resp.go │ │ ├── router │ │ │ ├── BUILD.bazel │ │ │ ├── job │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── job.go │ │ │ │ └── middleware.go │ │ │ └── register.go │ │ └── service │ │ │ ├── BUILD.bazel │ │ │ ├── job_service.go │ │ │ └── job_service_test.go │ ├── idl │ │ └── job.thrift │ ├── main.go │ ├── router.go │ ├── router_gen.go │ └── script │ │ └── bootstrap.sh ├── executor │ ├── .gitignore │ ├── BUILD.bazel │ └── attestation │ │ ├── BUILD.bazel │ │ └── main.go ├── jupyterlab_manatee │ ├── .dockerignore │ ├── .gitignore │ ├── .yarnrc.yml │ ├── 20custom-hook.sh │ ├── BUILD.bazel │ ├── LICENSE │ ├── README.md │ ├── RELEASE.md │ ├── babel.config.js │ ├── install.json │ ├── jest.config.js │ ├── jupyter-config │ │ └── jupyter_server_config.d │ │ │ └── jupyterlab_manatee.json │ ├── jupyterlab_manatee │ │ ├── __init__.py │ │ └── handlers.py │ ├── noble.lock.json │ ├── noble.yaml │ ├── package.json │ ├── pyproject.toml │ ├── requirements.in │ ├── requirements.txt │ ├── requirements_linux.txt │ ├── setup.py │ ├── src │ │ ├── __tests__ │ │ │ └── jupyterlab_manatee.spec.ts │ │ ├── index.ts │ │ ├── jobs.tsx │ │ ├── sidebar.ts │ │ └── sources.ts │ ├── style │ │ ├── base.css │ │ ├── index.css │ │ └── index.js │ ├── tsconfig.json │ ├── tsconfig.test.json │ ├── ui-tests │ │ ├── README.md │ │ ├── jupyter_server_test_config.py │ │ ├── package.json │ │ ├── playwright.config.js │ │ ├── tests │ │ │ └── jupyterlab_manatee.spec.ts │ │ └── yarn.lock │ └── yarn.lock └── reconciler │ ├── BUILD.bazel │ ├── imagebuilder │ ├── BUILD.bazel │ ├── kaniko.go │ └── kaniko_test.go │ ├── main.go │ ├── reconciler.go │ ├── reconciler_test.go │ ├── registry │ ├── BUILD.bazel │ └── registry.go │ └── tee_backend │ ├── BUILD.bazel │ ├── confidential_space.go │ └── mock_teebackend.go ├── deployment ├── deploy.sh ├── jupyterhub │ ├── config.yaml │ └── deploy.sh ├── manatee │ ├── .helmignore │ ├── Chart.yaml │ ├── config.yaml │ ├── deploy.sh │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ ├── reconciler.yaml │ │ ├── service.yaml │ │ └── tests │ │ │ └── test-connection.yaml │ └── values.yaml └── minikube │ ├── deploy.sh │ ├── minio-dev.yaml │ ├── mysql-deployment.yaml │ └── mysql-service.yaml ├── docs ├── assets │ └── img │ │ ├── arch.png │ │ ├── jobs.png │ │ ├── logo.png │ │ ├── manatee-architecture.png │ │ ├── manatee-white.png │ │ ├── manatee.png │ │ ├── plugin.png │ │ ├── stage-1.png │ │ ├── two-stage.png │ │ └── unzip.png ├── blog │ ├── index.md │ └── posts │ │ └── 2025-01-community-release.md ├── developer │ └── architecture.md ├── getting-started │ ├── building.md │ ├── deployment.md │ ├── llm-model-evaluation.md │ ├── minikube.md │ └── tutorials.md ├── index.md ├── project-status.md └── stylesheets │ └── extra.css ├── go.mod ├── go.sum ├── mkdocs.yml ├── resources ├── .gitignore ├── deployment │ ├── apply.sh │ ├── backend.tf │ ├── cluster_rolebinding.tf │ ├── db_account.tf │ ├── namespace.tf │ ├── providers.tf │ ├── repositories.tf │ ├── role.tf │ ├── secret.tf │ ├── service_accounts.tf │ └── variables.tf ├── global │ ├── apply.sh │ ├── backend.tf │ ├── buckets.tf │ ├── cluster.tf │ ├── database.tf │ ├── iam.tf │ ├── network.tf │ ├── providers.tf │ ├── repositories.tf │ ├── service_accounts.tf │ └── variables.tf └── minikube │ ├── apply.sh │ ├── namespace.tf │ ├── providers.tf │ ├── role.tf │ ├── secret.tf │ ├── service_accounts.tf │ └── variables.tf └── tutorials ├── code ├── insurance.ipynb ├── regression.ipynb └── sdk │ ├── .gitignore │ ├── __init__.py │ ├── __version__.py │ └── data.py ├── data ├── stage1 │ └── insurance.csv └── stage2 │ └── insurance.csv └── tutorial.sh /.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/.bazelrc -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/.env.example -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/.github/workflows/lint.yaml -------------------------------------------------------------------------------- /.github/workflows/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/.github/workflows/pr.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/.gitignore -------------------------------------------------------------------------------- /BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/BUILD -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/LICENSE -------------------------------------------------------------------------------- /MODULE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/MODULE.bazel -------------------------------------------------------------------------------- /Manatee_technical_charter_final_9-26-2024.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/Manatee_technical_charter_final_9-26-2024.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/README.md -------------------------------------------------------------------------------- /app/api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/api/.gitignore -------------------------------------------------------------------------------- /app/api/.hz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/api/.hz -------------------------------------------------------------------------------- /app/api/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/api/BUILD.bazel -------------------------------------------------------------------------------- /app/api/biz/dal/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/api/biz/dal/BUILD.bazel -------------------------------------------------------------------------------- /app/api/biz/dal/db/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/api/biz/dal/db/BUILD.bazel -------------------------------------------------------------------------------- /app/api/biz/dal/db/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/api/biz/dal/db/init.go -------------------------------------------------------------------------------- /app/api/biz/dal/db/job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/api/biz/dal/db/job.go -------------------------------------------------------------------------------- /app/api/biz/dal/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/api/biz/dal/init.go -------------------------------------------------------------------------------- /app/api/biz/handler/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/api/biz/handler/BUILD.bazel -------------------------------------------------------------------------------- /app/api/biz/handler/health.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/api/biz/handler/health.go -------------------------------------------------------------------------------- /app/api/biz/handler/job/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/api/biz/handler/job/BUILD.bazel -------------------------------------------------------------------------------- /app/api/biz/handler/job/job_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/api/biz/handler/job/job_handler.go -------------------------------------------------------------------------------- /app/api/biz/model/job/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/api/biz/model/job/BUILD.bazel -------------------------------------------------------------------------------- /app/api/biz/model/job/job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/api/biz/model/job/job.go -------------------------------------------------------------------------------- /app/api/biz/pkg/errno/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/api/biz/pkg/errno/BUILD.bazel -------------------------------------------------------------------------------- /app/api/biz/pkg/errno/errno.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/api/biz/pkg/errno/errno.go -------------------------------------------------------------------------------- /app/api/biz/pkg/storage/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/api/biz/pkg/storage/BUILD.bazel -------------------------------------------------------------------------------- /app/api/biz/pkg/storage/gcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/api/biz/pkg/storage/gcs.go -------------------------------------------------------------------------------- /app/api/biz/pkg/storage/minio.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/api/biz/pkg/storage/minio.go -------------------------------------------------------------------------------- /app/api/biz/pkg/storage/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/api/biz/pkg/storage/mock.go -------------------------------------------------------------------------------- /app/api/biz/pkg/storage/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/api/biz/pkg/storage/storage.go -------------------------------------------------------------------------------- /app/api/biz/pkg/utils/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/api/biz/pkg/utils/BUILD.bazel -------------------------------------------------------------------------------- /app/api/biz/pkg/utils/resp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/api/biz/pkg/utils/resp.go -------------------------------------------------------------------------------- /app/api/biz/router/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/api/biz/router/BUILD.bazel -------------------------------------------------------------------------------- /app/api/biz/router/job/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/api/biz/router/job/BUILD.bazel -------------------------------------------------------------------------------- /app/api/biz/router/job/job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/api/biz/router/job/job.go -------------------------------------------------------------------------------- /app/api/biz/router/job/middleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/api/biz/router/job/middleware.go -------------------------------------------------------------------------------- /app/api/biz/router/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/api/biz/router/register.go -------------------------------------------------------------------------------- /app/api/biz/service/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/api/biz/service/BUILD.bazel -------------------------------------------------------------------------------- /app/api/biz/service/job_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/api/biz/service/job_service.go -------------------------------------------------------------------------------- /app/api/biz/service/job_service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/api/biz/service/job_service_test.go -------------------------------------------------------------------------------- /app/api/idl/job.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/api/idl/job.thrift -------------------------------------------------------------------------------- /app/api/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/api/main.go -------------------------------------------------------------------------------- /app/api/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/api/router.go -------------------------------------------------------------------------------- /app/api/router_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/api/router_gen.go -------------------------------------------------------------------------------- /app/api/script/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/api/script/bootstrap.sh -------------------------------------------------------------------------------- /app/executor/.gitignore: -------------------------------------------------------------------------------- 1 | conf 2 | github.com -------------------------------------------------------------------------------- /app/executor/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/executor/BUILD.bazel -------------------------------------------------------------------------------- /app/executor/attestation/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/executor/attestation/BUILD.bazel -------------------------------------------------------------------------------- /app/executor/attestation/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/executor/attestation/main.go -------------------------------------------------------------------------------- /app/jupyterlab_manatee/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/jupyterlab_manatee/.dockerignore -------------------------------------------------------------------------------- /app/jupyterlab_manatee/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/jupyterlab_manatee/.gitignore -------------------------------------------------------------------------------- /app/jupyterlab_manatee/.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/jupyterlab_manatee/.yarnrc.yml -------------------------------------------------------------------------------- /app/jupyterlab_manatee/20custom-hook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/jupyterlab_manatee/20custom-hook.sh -------------------------------------------------------------------------------- /app/jupyterlab_manatee/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/jupyterlab_manatee/BUILD.bazel -------------------------------------------------------------------------------- /app/jupyterlab_manatee/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/jupyterlab_manatee/LICENSE -------------------------------------------------------------------------------- /app/jupyterlab_manatee/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/jupyterlab_manatee/README.md -------------------------------------------------------------------------------- /app/jupyterlab_manatee/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/jupyterlab_manatee/RELEASE.md -------------------------------------------------------------------------------- /app/jupyterlab_manatee/babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@jupyterlab/testutils/lib/babel.config'); 2 | -------------------------------------------------------------------------------- /app/jupyterlab_manatee/install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/jupyterlab_manatee/install.json -------------------------------------------------------------------------------- /app/jupyterlab_manatee/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/jupyterlab_manatee/jest.config.js -------------------------------------------------------------------------------- /app/jupyterlab_manatee/jupyter-config/jupyter_server_config.d/jupyterlab_manatee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/jupyterlab_manatee/jupyter-config/jupyter_server_config.d/jupyterlab_manatee.json -------------------------------------------------------------------------------- /app/jupyterlab_manatee/jupyterlab_manatee/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/jupyterlab_manatee/jupyterlab_manatee/__init__.py -------------------------------------------------------------------------------- /app/jupyterlab_manatee/jupyterlab_manatee/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/jupyterlab_manatee/jupyterlab_manatee/handlers.py -------------------------------------------------------------------------------- /app/jupyterlab_manatee/noble.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/jupyterlab_manatee/noble.lock.json -------------------------------------------------------------------------------- /app/jupyterlab_manatee/noble.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/jupyterlab_manatee/noble.yaml -------------------------------------------------------------------------------- /app/jupyterlab_manatee/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/jupyterlab_manatee/package.json -------------------------------------------------------------------------------- /app/jupyterlab_manatee/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/jupyterlab_manatee/pyproject.toml -------------------------------------------------------------------------------- /app/jupyterlab_manatee/requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/jupyterlab_manatee/requirements.in -------------------------------------------------------------------------------- /app/jupyterlab_manatee/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/jupyterlab_manatee/requirements.txt -------------------------------------------------------------------------------- /app/jupyterlab_manatee/requirements_linux.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/jupyterlab_manatee/requirements_linux.txt -------------------------------------------------------------------------------- /app/jupyterlab_manatee/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/jupyterlab_manatee/setup.py -------------------------------------------------------------------------------- /app/jupyterlab_manatee/src/__tests__/jupyterlab_manatee.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/jupyterlab_manatee/src/__tests__/jupyterlab_manatee.spec.ts -------------------------------------------------------------------------------- /app/jupyterlab_manatee/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/jupyterlab_manatee/src/index.ts -------------------------------------------------------------------------------- /app/jupyterlab_manatee/src/jobs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/jupyterlab_manatee/src/jobs.tsx -------------------------------------------------------------------------------- /app/jupyterlab_manatee/src/sidebar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/jupyterlab_manatee/src/sidebar.ts -------------------------------------------------------------------------------- /app/jupyterlab_manatee/src/sources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/jupyterlab_manatee/src/sources.ts -------------------------------------------------------------------------------- /app/jupyterlab_manatee/style/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/jupyterlab_manatee/style/base.css -------------------------------------------------------------------------------- /app/jupyterlab_manatee/style/index.css: -------------------------------------------------------------------------------- 1 | @import url('base.css'); 2 | -------------------------------------------------------------------------------- /app/jupyterlab_manatee/style/index.js: -------------------------------------------------------------------------------- 1 | import './base.css'; 2 | -------------------------------------------------------------------------------- /app/jupyterlab_manatee/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/jupyterlab_manatee/tsconfig.json -------------------------------------------------------------------------------- /app/jupyterlab_manatee/tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/jupyterlab_manatee/tsconfig.test.json -------------------------------------------------------------------------------- /app/jupyterlab_manatee/ui-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/jupyterlab_manatee/ui-tests/README.md -------------------------------------------------------------------------------- /app/jupyterlab_manatee/ui-tests/jupyter_server_test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/jupyterlab_manatee/ui-tests/jupyter_server_test_config.py -------------------------------------------------------------------------------- /app/jupyterlab_manatee/ui-tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/jupyterlab_manatee/ui-tests/package.json -------------------------------------------------------------------------------- /app/jupyterlab_manatee/ui-tests/playwright.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/jupyterlab_manatee/ui-tests/playwright.config.js -------------------------------------------------------------------------------- /app/jupyterlab_manatee/ui-tests/tests/jupyterlab_manatee.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/jupyterlab_manatee/ui-tests/tests/jupyterlab_manatee.spec.ts -------------------------------------------------------------------------------- /app/jupyterlab_manatee/ui-tests/yarn.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/jupyterlab_manatee/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/jupyterlab_manatee/yarn.lock -------------------------------------------------------------------------------- /app/reconciler/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/reconciler/BUILD.bazel -------------------------------------------------------------------------------- /app/reconciler/imagebuilder/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/reconciler/imagebuilder/BUILD.bazel -------------------------------------------------------------------------------- /app/reconciler/imagebuilder/kaniko.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/reconciler/imagebuilder/kaniko.go -------------------------------------------------------------------------------- /app/reconciler/imagebuilder/kaniko_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/reconciler/imagebuilder/kaniko_test.go -------------------------------------------------------------------------------- /app/reconciler/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/reconciler/main.go -------------------------------------------------------------------------------- /app/reconciler/reconciler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/reconciler/reconciler.go -------------------------------------------------------------------------------- /app/reconciler/reconciler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/reconciler/reconciler_test.go -------------------------------------------------------------------------------- /app/reconciler/registry/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/reconciler/registry/BUILD.bazel -------------------------------------------------------------------------------- /app/reconciler/registry/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/reconciler/registry/registry.go -------------------------------------------------------------------------------- /app/reconciler/tee_backend/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/reconciler/tee_backend/BUILD.bazel -------------------------------------------------------------------------------- /app/reconciler/tee_backend/confidential_space.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/reconciler/tee_backend/confidential_space.go -------------------------------------------------------------------------------- /app/reconciler/tee_backend/mock_teebackend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/app/reconciler/tee_backend/mock_teebackend.go -------------------------------------------------------------------------------- /deployment/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/deployment/deploy.sh -------------------------------------------------------------------------------- /deployment/jupyterhub/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/deployment/jupyterhub/config.yaml -------------------------------------------------------------------------------- /deployment/jupyterhub/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/deployment/jupyterhub/deploy.sh -------------------------------------------------------------------------------- /deployment/manatee/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/deployment/manatee/.helmignore -------------------------------------------------------------------------------- /deployment/manatee/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/deployment/manatee/Chart.yaml -------------------------------------------------------------------------------- /deployment/manatee/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/deployment/manatee/config.yaml -------------------------------------------------------------------------------- /deployment/manatee/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/deployment/manatee/deploy.sh -------------------------------------------------------------------------------- /deployment/manatee/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/deployment/manatee/templates/NOTES.txt -------------------------------------------------------------------------------- /deployment/manatee/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/deployment/manatee/templates/_helpers.tpl -------------------------------------------------------------------------------- /deployment/manatee/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/deployment/manatee/templates/configmap.yaml -------------------------------------------------------------------------------- /deployment/manatee/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/deployment/manatee/templates/deployment.yaml -------------------------------------------------------------------------------- /deployment/manatee/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/deployment/manatee/templates/ingress.yaml -------------------------------------------------------------------------------- /deployment/manatee/templates/reconciler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/deployment/manatee/templates/reconciler.yaml -------------------------------------------------------------------------------- /deployment/manatee/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/deployment/manatee/templates/service.yaml -------------------------------------------------------------------------------- /deployment/manatee/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/deployment/manatee/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /deployment/manatee/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/deployment/manatee/values.yaml -------------------------------------------------------------------------------- /deployment/minikube/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/deployment/minikube/deploy.sh -------------------------------------------------------------------------------- /deployment/minikube/minio-dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/deployment/minikube/minio-dev.yaml -------------------------------------------------------------------------------- /deployment/minikube/mysql-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/deployment/minikube/mysql-deployment.yaml -------------------------------------------------------------------------------- /deployment/minikube/mysql-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/deployment/minikube/mysql-service.yaml -------------------------------------------------------------------------------- /docs/assets/img/arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/docs/assets/img/arch.png -------------------------------------------------------------------------------- /docs/assets/img/jobs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/docs/assets/img/jobs.png -------------------------------------------------------------------------------- /docs/assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/docs/assets/img/logo.png -------------------------------------------------------------------------------- /docs/assets/img/manatee-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/docs/assets/img/manatee-architecture.png -------------------------------------------------------------------------------- /docs/assets/img/manatee-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/docs/assets/img/manatee-white.png -------------------------------------------------------------------------------- /docs/assets/img/manatee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/docs/assets/img/manatee.png -------------------------------------------------------------------------------- /docs/assets/img/plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/docs/assets/img/plugin.png -------------------------------------------------------------------------------- /docs/assets/img/stage-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/docs/assets/img/stage-1.png -------------------------------------------------------------------------------- /docs/assets/img/two-stage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/docs/assets/img/two-stage.png -------------------------------------------------------------------------------- /docs/assets/img/unzip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/docs/assets/img/unzip.png -------------------------------------------------------------------------------- /docs/blog/index.md: -------------------------------------------------------------------------------- 1 | # Blog 2 | 3 | -------------------------------------------------------------------------------- /docs/blog/posts/2025-01-community-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/docs/blog/posts/2025-01-community-release.md -------------------------------------------------------------------------------- /docs/developer/architecture.md: -------------------------------------------------------------------------------- 1 | # Architecture 2 | 3 | -------------------------------------------------------------------------------- /docs/getting-started/building.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/docs/getting-started/building.md -------------------------------------------------------------------------------- /docs/getting-started/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/docs/getting-started/deployment.md -------------------------------------------------------------------------------- /docs/getting-started/llm-model-evaluation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/docs/getting-started/llm-model-evaluation.md -------------------------------------------------------------------------------- /docs/getting-started/minikube.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/docs/getting-started/minikube.md -------------------------------------------------------------------------------- /docs/getting-started/tutorials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/docs/getting-started/tutorials.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/project-status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/docs/project-status.md -------------------------------------------------------------------------------- /docs/stylesheets/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/docs/stylesheets/extra.css -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/go.sum -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /resources/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/resources/.gitignore -------------------------------------------------------------------------------- /resources/deployment/apply.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/resources/deployment/apply.sh -------------------------------------------------------------------------------- /resources/deployment/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/resources/deployment/backend.tf -------------------------------------------------------------------------------- /resources/deployment/cluster_rolebinding.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/resources/deployment/cluster_rolebinding.tf -------------------------------------------------------------------------------- /resources/deployment/db_account.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/resources/deployment/db_account.tf -------------------------------------------------------------------------------- /resources/deployment/namespace.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/resources/deployment/namespace.tf -------------------------------------------------------------------------------- /resources/deployment/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/resources/deployment/providers.tf -------------------------------------------------------------------------------- /resources/deployment/repositories.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/resources/deployment/repositories.tf -------------------------------------------------------------------------------- /resources/deployment/role.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/resources/deployment/role.tf -------------------------------------------------------------------------------- /resources/deployment/secret.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/resources/deployment/secret.tf -------------------------------------------------------------------------------- /resources/deployment/service_accounts.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/resources/deployment/service_accounts.tf -------------------------------------------------------------------------------- /resources/deployment/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/resources/deployment/variables.tf -------------------------------------------------------------------------------- /resources/global/apply.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/resources/global/apply.sh -------------------------------------------------------------------------------- /resources/global/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/resources/global/backend.tf -------------------------------------------------------------------------------- /resources/global/buckets.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/resources/global/buckets.tf -------------------------------------------------------------------------------- /resources/global/cluster.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/resources/global/cluster.tf -------------------------------------------------------------------------------- /resources/global/database.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/resources/global/database.tf -------------------------------------------------------------------------------- /resources/global/iam.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/resources/global/iam.tf -------------------------------------------------------------------------------- /resources/global/network.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/resources/global/network.tf -------------------------------------------------------------------------------- /resources/global/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/resources/global/providers.tf -------------------------------------------------------------------------------- /resources/global/repositories.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/resources/global/repositories.tf -------------------------------------------------------------------------------- /resources/global/service_accounts.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/resources/global/service_accounts.tf -------------------------------------------------------------------------------- /resources/global/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/resources/global/variables.tf -------------------------------------------------------------------------------- /resources/minikube/apply.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/resources/minikube/apply.sh -------------------------------------------------------------------------------- /resources/minikube/namespace.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/resources/minikube/namespace.tf -------------------------------------------------------------------------------- /resources/minikube/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/resources/minikube/providers.tf -------------------------------------------------------------------------------- /resources/minikube/role.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/resources/minikube/role.tf -------------------------------------------------------------------------------- /resources/minikube/secret.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/resources/minikube/secret.tf -------------------------------------------------------------------------------- /resources/minikube/service_accounts.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/resources/minikube/service_accounts.tf -------------------------------------------------------------------------------- /resources/minikube/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/resources/minikube/variables.tf -------------------------------------------------------------------------------- /tutorials/code/insurance.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/tutorials/code/insurance.ipynb -------------------------------------------------------------------------------- /tutorials/code/regression.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/tutorials/code/regression.ipynb -------------------------------------------------------------------------------- /tutorials/code/sdk/.gitignore: -------------------------------------------------------------------------------- 1 | .ipynb_checkpoints/ 2 | -------------------------------------------------------------------------------- /tutorials/code/sdk/__init__.py: -------------------------------------------------------------------------------- 1 | from .data import * 2 | 3 | __all__ = ["DataRepo", "gcp"] -------------------------------------------------------------------------------- /tutorials/code/sdk/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/tutorials/code/sdk/__version__.py -------------------------------------------------------------------------------- /tutorials/code/sdk/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/tutorials/code/sdk/data.py -------------------------------------------------------------------------------- /tutorials/data/stage1/insurance.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/tutorials/data/stage1/insurance.csv -------------------------------------------------------------------------------- /tutorials/data/stage2/insurance.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/tutorials/data/stage2/insurance.csv -------------------------------------------------------------------------------- /tutorials/tutorial.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manatee-project/manatee/HEAD/tutorials/tutorial.sh --------------------------------------------------------------------------------