├── .ackrc ├── .dockerignore ├── .gitattributes ├── .github ├── PULL_REQUEST_TEMPLATE.md ├── renovate.json └── workflows │ ├── main-release.yaml │ ├── release.yaml │ ├── test.yaml │ ├── validate-docs.yaml │ └── validate-renovate.yml ├── .gitignore ├── .golangci.yml ├── .goreleaser.yml ├── .vscode └── launch.json ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── SECURITY.md ├── channels.yaml ├── cosign.pub ├── docs ├── .ackrc ├── .dockerignore ├── .gitignore ├── .nvmrc ├── Acornfile ├── Dockerfile ├── README.md ├── babel.config.js ├── diagram-source │ ├── README.md │ └── architecture.drawio ├── docs │ ├── 10-home.md │ ├── 100-reference │ │ ├── 01-command-line │ │ │ ├── _category_.yaml │ │ │ ├── acorn.md │ │ │ ├── acorn_all.md │ │ │ ├── acorn_app.mdx │ │ │ ├── acorn_build.md │ │ │ ├── acorn_check.md │ │ │ ├── acorn_container.md │ │ │ ├── acorn_container_kill.md │ │ │ ├── acorn_copy.md │ │ │ ├── acorn_credential.md │ │ │ ├── acorn_credential_login.md │ │ │ ├── acorn_credential_logout.md │ │ │ ├── acorn_dashboard.md │ │ │ ├── acorn_dev.md │ │ │ ├── acorn_edit.md │ │ │ ├── acorn_events.md │ │ │ ├── acorn_exec.md │ │ │ ├── acorn_fmt.md │ │ │ ├── acorn_image.md │ │ │ ├── acorn_image_copy.md │ │ │ ├── acorn_image_details.md │ │ │ ├── acorn_image_rm.md │ │ │ ├── acorn_info.md │ │ │ ├── acorn_install.md │ │ │ ├── acorn_job.md │ │ │ ├── acorn_job_restart.md │ │ │ ├── acorn_login.md │ │ │ ├── acorn_logout.md │ │ │ ├── acorn_logs.md │ │ │ ├── acorn_offerings.md │ │ │ ├── acorn_offerings_computeclasses.md │ │ │ ├── acorn_offerings_regions.md │ │ │ ├── acorn_offerings_volumeclasses.md │ │ │ ├── acorn_port-forward.md │ │ │ ├── acorn_project.md │ │ │ ├── acorn_project_create.md │ │ │ ├── acorn_project_rm.md │ │ │ ├── acorn_project_update.md │ │ │ ├── acorn_project_use.md │ │ │ ├── acorn_ps.md │ │ │ ├── acorn_pull.md │ │ │ ├── acorn_push.md │ │ │ ├── acorn_render.md │ │ │ ├── acorn_rm.md │ │ │ ├── acorn_run.md │ │ │ ├── acorn_secret.md │ │ │ ├── acorn_secret_create.md │ │ │ ├── acorn_secret_edit.md │ │ │ ├── acorn_secret_encrypt.md │ │ │ ├── acorn_secret_reveal.md │ │ │ ├── acorn_secret_rm.md │ │ │ ├── acorn_secret_update.md │ │ │ ├── acorn_start.md │ │ │ ├── acorn_stop.md │ │ │ ├── acorn_tag.md │ │ │ ├── acorn_uninstall.md │ │ │ ├── acorn_update.md │ │ │ ├── acorn_version.md │ │ │ ├── acorn_volume.md │ │ │ ├── acorn_volume_rm.md │ │ │ └── acorn_wait.md │ │ └── _category_.yaml │ ├── 110-faq.md │ ├── 30-installation │ │ ├── 01-installing.md │ │ ├── 02-options.md │ │ ├── 03-upgrading.md │ │ ├── 100-uninstalling.md │ │ └── _category_.yaml │ ├── 37-getting-started.md │ ├── 40-admin │ │ ├── 02-volumeclasses.md │ │ ├── 03-computeclasses.md │ │ └── 80-alpha-image-allow-rules.md │ └── 60-architecture │ │ ├── 01-ten-thousand-foot-view.md │ │ ├── 02-security-considerations.md │ │ └── _category_.yaml ├── docusaurus.config.js ├── package.json ├── sidebars.js ├── src │ ├── css │ │ └── custom.css │ └── theme │ │ └── prism-include-languages.js ├── static │ ├── .nojekyll │ ├── diagrams │ │ └── architecture.drawio.svg │ └── img │ │ ├── acorn.workflow.png │ │ ├── build_output.png │ │ ├── favicon.png │ │ └── logo.svg ├── versioned_docs │ ├── version-0.10 │ │ ├── 10-home.md │ │ ├── 100-reference │ │ │ ├── 01-command-line │ │ │ │ ├── _category_.yaml │ │ │ │ ├── acorn.md │ │ │ │ ├── acorn_all.md │ │ │ │ ├── acorn_app.mdx │ │ │ │ ├── acorn_build.md │ │ │ │ ├── acorn_check.md │ │ │ │ ├── acorn_container.md │ │ │ │ ├── acorn_container_kill.md │ │ │ │ ├── acorn_copy.md │ │ │ │ ├── acorn_credential.md │ │ │ │ ├── acorn_credential_login.md │ │ │ │ ├── acorn_credential_logout.md │ │ │ │ ├── acorn_dashboard.md │ │ │ │ ├── acorn_dev.md │ │ │ │ ├── acorn_edit.md │ │ │ │ ├── acorn_events.md │ │ │ │ ├── acorn_exec.md │ │ │ │ ├── acorn_fmt.md │ │ │ │ ├── acorn_image.md │ │ │ │ ├── acorn_image_copy.md │ │ │ │ ├── acorn_image_details.md │ │ │ │ ├── acorn_image_rm.md │ │ │ │ ├── acorn_info.md │ │ │ │ ├── acorn_install.md │ │ │ │ ├── acorn_job.md │ │ │ │ ├── acorn_job_restart.md │ │ │ │ ├── acorn_login.md │ │ │ │ ├── acorn_logout.md │ │ │ │ ├── acorn_logs.md │ │ │ │ ├── acorn_offerings.md │ │ │ │ ├── acorn_offerings_computeclasses.md │ │ │ │ ├── acorn_offerings_regions.md │ │ │ │ ├── acorn_offerings_volumeclasses.md │ │ │ │ ├── acorn_port-forward.md │ │ │ │ ├── acorn_project.md │ │ │ │ ├── acorn_project_create.md │ │ │ │ ├── acorn_project_rm.md │ │ │ │ ├── acorn_project_update.md │ │ │ │ ├── acorn_project_use.md │ │ │ │ ├── acorn_ps.md │ │ │ │ ├── acorn_pull.md │ │ │ │ ├── acorn_push.md │ │ │ │ ├── acorn_render.md │ │ │ │ ├── acorn_rm.md │ │ │ │ ├── acorn_run.md │ │ │ │ ├── acorn_secret.md │ │ │ │ ├── acorn_secret_create.md │ │ │ │ ├── acorn_secret_edit.md │ │ │ │ ├── acorn_secret_encrypt.md │ │ │ │ ├── acorn_secret_reveal.md │ │ │ │ ├── acorn_secret_rm.md │ │ │ │ ├── acorn_secret_update.md │ │ │ │ ├── acorn_start.md │ │ │ │ ├── acorn_stop.md │ │ │ │ ├── acorn_tag.md │ │ │ │ ├── acorn_uninstall.md │ │ │ │ ├── acorn_update.md │ │ │ │ ├── acorn_version.md │ │ │ │ ├── acorn_volume.md │ │ │ │ ├── acorn_volume_rm.md │ │ │ │ └── acorn_wait.md │ │ │ └── _category_.yaml │ │ ├── 110-faq.md │ │ ├── 30-installation │ │ │ ├── 01-installing.md │ │ │ ├── 02-options.md │ │ │ ├── 03-upgrading.md │ │ │ ├── 100-uninstalling.md │ │ │ └── _category_.yaml │ │ ├── 37-getting-started.md │ │ ├── 40-admin │ │ │ ├── 02-volumeclasses.md │ │ │ ├── 03-computeclasses.md │ │ │ └── 80-alpha-image-allow-rules.md │ │ └── 60-architecture │ │ │ ├── 01-ten-thousand-foot-view.md │ │ │ ├── 02-security-considerations.md │ │ │ └── _category_.yaml │ ├── version-0.3 │ │ ├── 10-home.md │ │ ├── 100-reference │ │ │ ├── 01-command-line │ │ │ │ ├── _category_.yaml │ │ │ │ ├── acorn.md │ │ │ │ ├── acorn_all.md │ │ │ │ ├── acorn_app.md │ │ │ │ ├── acorn_build.md │ │ │ │ ├── acorn_check.md │ │ │ │ ├── acorn_container.md │ │ │ │ ├── acorn_credential.md │ │ │ │ ├── acorn_credential_login.md │ │ │ │ ├── acorn_credential_logout.md │ │ │ │ ├── acorn_exec.md │ │ │ │ ├── acorn_image.md │ │ │ │ ├── acorn_info.md │ │ │ │ ├── acorn_install.md │ │ │ │ ├── acorn_login.md │ │ │ │ ├── acorn_logout.md │ │ │ │ ├── acorn_logs.md │ │ │ │ ├── acorn_pull.md │ │ │ │ ├── acorn_push.md │ │ │ │ ├── acorn_render.md │ │ │ │ ├── acorn_rm.md │ │ │ │ ├── acorn_run.md │ │ │ │ ├── acorn_secret.md │ │ │ │ ├── acorn_secret_create.md │ │ │ │ ├── acorn_secret_encrypt.md │ │ │ │ ├── acorn_secret_expose.md │ │ │ │ ├── acorn_secret_rm.md │ │ │ │ ├── acorn_start.md │ │ │ │ ├── acorn_stop.md │ │ │ │ ├── acorn_tag.md │ │ │ │ ├── acorn_uninstall.md │ │ │ │ ├── acorn_update.md │ │ │ │ ├── acorn_volume.md │ │ │ │ └── acorn_wait.md │ │ │ ├── 03-acornfile.md │ │ │ ├── 05-functions.md │ │ │ ├── 07-encryption.md │ │ │ └── _category_.yaml │ │ ├── 110-faq.md │ │ ├── 30-installation │ │ │ ├── 01-installing.md │ │ │ ├── 02-options.md │ │ │ ├── 03-upgrading.md │ │ │ ├── 100-uninstalling.md │ │ │ └── _category_.yaml │ │ ├── 37-getting-started.md │ │ ├── 38-authoring │ │ │ ├── 00-overview.md │ │ │ ├── 01-best-practices.md │ │ │ ├── 02-structure.md │ │ │ ├── 03-containers.md │ │ │ ├── 04-volumes.md │ │ │ ├── 05-secrets.md │ │ │ ├── 06-jobs.md │ │ │ ├── 07-args-and-profiles.md │ │ │ ├── 08-localdata.md │ │ │ ├── 20-labels.md │ │ │ ├── 30-advanced.md │ │ │ └── _category_.yaml │ │ ├── 39-publishing.md │ │ ├── 50-running │ │ │ ├── 01-args-and-secrets.md │ │ │ ├── 02-networking.md │ │ │ ├── 03-certificates.md │ │ │ ├── 04-volumes.md │ │ │ ├── 06-linking-acorns.md │ │ │ ├── 20-labels.md │ │ │ ├── 30-troubleshooting.md │ │ │ ├── 40-upgrades.md │ │ │ └── _category_.yaml │ │ ├── 55-integrations │ │ │ ├── 01-github-actions.md │ │ │ └── _category_.yaml │ │ └── 60-architecture │ │ │ ├── 01-ten-thousand-foot-view.md │ │ │ ├── 02-security-considerations.md │ │ │ └── _category_.yaml │ ├── version-0.4 │ │ ├── 10-home.md │ │ ├── 100-reference │ │ │ ├── 01-command-line │ │ │ │ ├── _category_.yaml │ │ │ │ ├── acorn.md │ │ │ │ ├── acorn_all.md │ │ │ │ ├── acorn_app.md │ │ │ │ ├── acorn_build.md │ │ │ │ ├── acorn_check.md │ │ │ │ ├── acorn_container.md │ │ │ │ ├── acorn_container_kill.md │ │ │ │ ├── acorn_credential.md │ │ │ │ ├── acorn_credential_login.md │ │ │ │ ├── acorn_credential_logout.md │ │ │ │ ├── acorn_exec.md │ │ │ │ ├── acorn_image.md │ │ │ │ ├── acorn_image_rm.md │ │ │ │ ├── acorn_info.md │ │ │ │ ├── acorn_install.md │ │ │ │ ├── acorn_login.md │ │ │ │ ├── acorn_logout.md │ │ │ │ ├── acorn_logs.md │ │ │ │ ├── acorn_pull.md │ │ │ │ ├── acorn_push.md │ │ │ │ ├── acorn_render.md │ │ │ │ ├── acorn_rm.md │ │ │ │ ├── acorn_run.md │ │ │ │ ├── acorn_secret.md │ │ │ │ ├── acorn_secret_create.md │ │ │ │ ├── acorn_secret_encrypt.md │ │ │ │ ├── acorn_secret_expose.md │ │ │ │ ├── acorn_secret_rm.md │ │ │ │ ├── acorn_start.md │ │ │ │ ├── acorn_stop.md │ │ │ │ ├── acorn_tag.md │ │ │ │ ├── acorn_uninstall.md │ │ │ │ ├── acorn_update.md │ │ │ │ ├── acorn_volume.md │ │ │ │ ├── acorn_volume_rm.md │ │ │ │ └── acorn_wait.md │ │ │ ├── 03-acornfile.md │ │ │ ├── 05-functions.md │ │ │ ├── 07-encryption.md │ │ │ └── _category_.yaml │ │ ├── 110-faq.md │ │ ├── 30-installation │ │ │ ├── 01-installing.md │ │ │ ├── 02-options.md │ │ │ ├── 03-upgrading.md │ │ │ ├── 100-uninstalling.md │ │ │ └── _category_.yaml │ │ ├── 37-getting-started.md │ │ ├── 38-authoring │ │ │ ├── 00-overview.md │ │ │ ├── 01-best-practices.md │ │ │ ├── 02-structure.md │ │ │ ├── 03-containers.md │ │ │ ├── 04-volumes.md │ │ │ ├── 05-secrets.md │ │ │ ├── 06-jobs.md │ │ │ ├── 07-args-and-profiles.md │ │ │ ├── 08-localdata.md │ │ │ ├── 09-permissions.md │ │ │ ├── 20-labels.md │ │ │ ├── 30-advanced.md │ │ │ └── _category_.yaml │ │ ├── 39-publishing.md │ │ ├── 50-running │ │ │ ├── 01-args-and-secrets.md │ │ │ ├── 02-networking.md │ │ │ ├── 03-certificates.md │ │ │ ├── 04-volumes.md │ │ │ ├── 06-linking-acorns.md │ │ │ ├── 20-labels.md │ │ │ ├── 30-troubleshooting.md │ │ │ ├── 40-upgrades.md │ │ │ ├── 45-auto-upgrades.md │ │ │ ├── 50-namespaces-and-service-accounts.md │ │ │ └── _category_.yaml │ │ ├── 55-integrations │ │ │ ├── 01-github-actions.md │ │ │ └── _category_.yaml │ │ └── 60-architecture │ │ │ ├── 01-ten-thousand-foot-view.md │ │ │ ├── 02-security-considerations.md │ │ │ └── _category_.yaml │ ├── version-0.5 │ │ ├── 10-home.md │ │ ├── 100-reference │ │ │ ├── 01-command-line │ │ │ │ ├── _category_.yaml │ │ │ │ ├── acorn.md │ │ │ │ ├── acorn_all.md │ │ │ │ ├── acorn_app.md │ │ │ │ ├── acorn_build.md │ │ │ │ ├── acorn_check.md │ │ │ │ ├── acorn_container.md │ │ │ │ ├── acorn_container_kill.md │ │ │ │ ├── acorn_credential.md │ │ │ │ ├── acorn_credential_login.md │ │ │ │ ├── acorn_credential_logout.md │ │ │ │ ├── acorn_exec.md │ │ │ │ ├── acorn_image.md │ │ │ │ ├── acorn_image_rm.md │ │ │ │ ├── acorn_info.md │ │ │ │ ├── acorn_install.md │ │ │ │ ├── acorn_login.md │ │ │ │ ├── acorn_logout.md │ │ │ │ ├── acorn_logs.md │ │ │ │ ├── acorn_project.md │ │ │ │ ├── acorn_project_create.md │ │ │ │ ├── acorn_project_rm.md │ │ │ │ ├── acorn_project_use.md │ │ │ │ ├── acorn_pull.md │ │ │ │ ├── acorn_push.md │ │ │ │ ├── acorn_render.md │ │ │ │ ├── acorn_rm.md │ │ │ │ ├── acorn_run.md │ │ │ │ ├── acorn_secret.md │ │ │ │ ├── acorn_secret_create.md │ │ │ │ ├── acorn_secret_encrypt.md │ │ │ │ ├── acorn_secret_reveal.md │ │ │ │ ├── acorn_secret_rm.md │ │ │ │ ├── acorn_start.md │ │ │ │ ├── acorn_stop.md │ │ │ │ ├── acorn_tag.md │ │ │ │ ├── acorn_uninstall.md │ │ │ │ ├── acorn_update.md │ │ │ │ ├── acorn_volume.md │ │ │ │ ├── acorn_volume_rm.md │ │ │ │ └── acorn_wait.md │ │ │ ├── 03-acornfile.md │ │ │ ├── 05-functions.md │ │ │ ├── 06-memory.md │ │ │ ├── 07-encryption.md │ │ │ └── _category_.yaml │ │ ├── 110-faq.md │ │ ├── 30-installation │ │ │ ├── 01-installing.md │ │ │ ├── 02-options.md │ │ │ ├── 03-upgrading.md │ │ │ ├── 100-uninstalling.md │ │ │ └── _category_.yaml │ │ ├── 37-getting-started.md │ │ ├── 38-authoring │ │ │ ├── 00-overview.md │ │ │ ├── 01-best-practices.md │ │ │ ├── 02-structure.md │ │ │ ├── 03-containers.md │ │ │ ├── 04-volumes.md │ │ │ ├── 05-secrets.md │ │ │ ├── 06-jobs.md │ │ │ ├── 07-args-and-profiles.md │ │ │ ├── 08-localdata.md │ │ │ ├── 09-permissions.md │ │ │ ├── 20-labels.md │ │ │ ├── 30-advanced.md │ │ │ └── _category_.yaml │ │ ├── 39-publishing.md │ │ ├── 50-running │ │ │ ├── 01-args-and-secrets.md │ │ │ ├── 02-networking.md │ │ │ ├── 03-certificates.md │ │ │ ├── 04-volumes.md │ │ │ ├── 06-linking-acorns.md │ │ │ ├── 20-labels.md │ │ │ ├── 30-troubleshooting.md │ │ │ ├── 40-upgrades.md │ │ │ ├── 45-auto-upgrades.md │ │ │ ├── 50-namespaces-and-service-accounts.md │ │ │ ├── 55-memory.md │ │ │ ├── 60-projects.md │ │ │ └── _category_.yaml │ │ ├── 55-integrations │ │ │ ├── 01-github-actions.md │ │ │ └── _category_.yaml │ │ └── 60-architecture │ │ │ ├── 01-ten-thousand-foot-view.md │ │ │ ├── 02-security-considerations.md │ │ │ └── _category_.yaml │ ├── version-0.6 │ │ ├── 10-home.md │ │ ├── 100-reference │ │ │ ├── 01-command-line │ │ │ │ ├── _category_.yaml │ │ │ │ ├── acorn.md │ │ │ │ ├── acorn_all.md │ │ │ │ ├── acorn_app.md │ │ │ │ ├── acorn_build.md │ │ │ │ ├── acorn_check.md │ │ │ │ ├── acorn_container.md │ │ │ │ ├── acorn_container_kill.md │ │ │ │ ├── acorn_credential.md │ │ │ │ ├── acorn_credential_login.md │ │ │ │ ├── acorn_credential_logout.md │ │ │ │ ├── acorn_exec.md │ │ │ │ ├── acorn_image.md │ │ │ │ ├── acorn_image_rm.md │ │ │ │ ├── acorn_info.md │ │ │ │ ├── acorn_install.md │ │ │ │ ├── acorn_login.md │ │ │ │ ├── acorn_logout.md │ │ │ │ ├── acorn_logs.md │ │ │ │ ├── acorn_offerings.md │ │ │ │ ├── acorn_offerings_computeclasses.md │ │ │ │ ├── acorn_offerings_volumeclasses.md │ │ │ │ ├── acorn_project.md │ │ │ │ ├── acorn_project_create.md │ │ │ │ ├── acorn_project_rm.md │ │ │ │ ├── acorn_project_use.md │ │ │ │ ├── acorn_pull.md │ │ │ │ ├── acorn_push.md │ │ │ │ ├── acorn_render.md │ │ │ │ ├── acorn_rm.md │ │ │ │ ├── acorn_run.md │ │ │ │ ├── acorn_secret.md │ │ │ │ ├── acorn_secret_create.md │ │ │ │ ├── acorn_secret_encrypt.md │ │ │ │ ├── acorn_secret_reveal.md │ │ │ │ ├── acorn_secret_rm.md │ │ │ │ ├── acorn_start.md │ │ │ │ ├── acorn_stop.md │ │ │ │ ├── acorn_tag.md │ │ │ │ ├── acorn_uninstall.md │ │ │ │ ├── acorn_update.md │ │ │ │ ├── acorn_volume.md │ │ │ │ ├── acorn_volume_rm.md │ │ │ │ └── acorn_wait.md │ │ │ ├── 02-admin │ │ │ │ ├── 02-volumeclasses.md │ │ │ │ └── 03-computeclasses.md │ │ │ ├── 03-acornfile.md │ │ │ ├── 05-functions.md │ │ │ ├── 06-compute-resources.md │ │ │ ├── 07-encryption.md │ │ │ └── _category_.yaml │ │ ├── 110-faq.md │ │ ├── 30-installation │ │ │ ├── 01-installing.md │ │ │ ├── 02-options.md │ │ │ ├── 03-upgrading.md │ │ │ ├── 100-uninstalling.md │ │ │ └── _category_.yaml │ │ ├── 37-getting-started.md │ │ ├── 38-authoring │ │ │ ├── 00-overview.md │ │ │ ├── 01-best-practices.md │ │ │ ├── 02-structure.md │ │ │ ├── 03-containers.md │ │ │ ├── 04-volumes.md │ │ │ ├── 05-secrets.md │ │ │ ├── 06-jobs.md │ │ │ ├── 07-args-and-profiles.md │ │ │ ├── 08-localdata.md │ │ │ ├── 09-permissions.md │ │ │ ├── 20-labels.md │ │ │ ├── 30-advanced.md │ │ │ └── _category_.yaml │ │ ├── 39-publishing.md │ │ ├── 50-running │ │ │ ├── 01-args-and-secrets.md │ │ │ ├── 02-networking.md │ │ │ ├── 03-certificates.md │ │ │ ├── 04-volumes.md │ │ │ ├── 06-linking-acorns.md │ │ │ ├── 20-labels.md │ │ │ ├── 30-troubleshooting.md │ │ │ ├── 40-upgrades.md │ │ │ ├── 45-auto-upgrades.md │ │ │ ├── 50-namespaces-and-service-accounts.md │ │ │ ├── 55-compute-resources.md │ │ │ ├── 60-projects.md │ │ │ └── _category_.yaml │ │ ├── 55-integrations │ │ │ ├── 01-github-actions.md │ │ │ └── _category_.yaml │ │ └── 60-architecture │ │ │ ├── 01-ten-thousand-foot-view.md │ │ │ ├── 02-security-considerations.md │ │ │ └── _category_.yaml │ ├── version-0.7 │ │ ├── 10-home.md │ │ ├── 100-reference │ │ │ ├── 01-command-line │ │ │ │ ├── _category_.yaml │ │ │ │ ├── acorn.md │ │ │ │ ├── acorn_all.md │ │ │ │ ├── acorn_app.md │ │ │ │ ├── acorn_build.md │ │ │ │ ├── acorn_check.md │ │ │ │ ├── acorn_container.md │ │ │ │ ├── acorn_container_kill.md │ │ │ │ ├── acorn_credential.md │ │ │ │ ├── acorn_credential_login.md │ │ │ │ ├── acorn_credential_logout.md │ │ │ │ ├── acorn_dev.md │ │ │ │ ├── acorn_events.md │ │ │ │ ├── acorn_exec.md │ │ │ │ ├── acorn_fmt.md │ │ │ │ ├── acorn_image.md │ │ │ │ ├── acorn_image_details.md │ │ │ │ ├── acorn_image_rm.md │ │ │ │ ├── acorn_info.md │ │ │ │ ├── acorn_install.md │ │ │ │ ├── acorn_login.md │ │ │ │ ├── acorn_logout.md │ │ │ │ ├── acorn_logs.md │ │ │ │ ├── acorn_offerings.md │ │ │ │ ├── acorn_offerings_computeclasses.md │ │ │ │ ├── acorn_offerings_regions.md │ │ │ │ ├── acorn_offerings_volumeclasses.md │ │ │ │ ├── acorn_port-forward.md │ │ │ │ ├── acorn_project.md │ │ │ │ ├── acorn_project_create.md │ │ │ │ ├── acorn_project_rm.md │ │ │ │ ├── acorn_project_update.md │ │ │ │ ├── acorn_project_use.md │ │ │ │ ├── acorn_pull.md │ │ │ │ ├── acorn_push.md │ │ │ │ ├── acorn_render.md │ │ │ │ ├── acorn_rm.md │ │ │ │ ├── acorn_run.md │ │ │ │ ├── acorn_secret.md │ │ │ │ ├── acorn_secret_create.md │ │ │ │ ├── acorn_secret_encrypt.md │ │ │ │ ├── acorn_secret_reveal.md │ │ │ │ ├── acorn_secret_rm.md │ │ │ │ ├── acorn_start.md │ │ │ │ ├── acorn_stop.md │ │ │ │ ├── acorn_tag.md │ │ │ │ ├── acorn_uninstall.md │ │ │ │ ├── acorn_update.md │ │ │ │ ├── acorn_version.md │ │ │ │ ├── acorn_volume.md │ │ │ │ ├── acorn_volume_rm.md │ │ │ │ └── acorn_wait.md │ │ │ ├── 02-admin │ │ │ │ ├── 02-volumeclasses.md │ │ │ │ └── 03-computeclasses.md │ │ │ ├── 03-acornfile.md │ │ │ ├── 05-functions.md │ │ │ ├── 06-compute-resources.md │ │ │ ├── 07-encryption.md │ │ │ ├── 10-services.md │ │ │ └── _category_.yaml │ │ ├── 110-faq.md │ │ ├── 30-installation │ │ │ ├── 01-installing.md │ │ │ ├── 02-options.md │ │ │ ├── 03-upgrading.md │ │ │ ├── 100-uninstalling.md │ │ │ └── _category_.yaml │ │ ├── 37-getting-started.md │ │ ├── 38-authoring │ │ │ ├── 00-overview.md │ │ │ ├── 01-best-practices.md │ │ │ ├── 02-structure.md │ │ │ ├── 03-containers.md │ │ │ ├── 04-volumes.md │ │ │ ├── 05-secrets.md │ │ │ ├── 06-jobs.md │ │ │ ├── 07-args-and-profiles.md │ │ │ ├── 08-localdata.md │ │ │ ├── 09-permissions.md │ │ │ ├── 20-labels.md │ │ │ ├── 21-services.md │ │ │ ├── 30-advanced.md │ │ │ ├── 31-nested-acorns.md │ │ │ └── _category_.yaml │ │ ├── 39-publishing.md │ │ ├── 50-running │ │ │ ├── 01-args-and-secrets.md │ │ │ ├── 02-networking.md │ │ │ ├── 03-certificates.md │ │ │ ├── 04-volumes.md │ │ │ ├── 06-linking-acorns.md │ │ │ ├── 20-labels.md │ │ │ ├── 30-troubleshooting.md │ │ │ ├── 40-upgrades.md │ │ │ ├── 45-auto-upgrades.md │ │ │ ├── 50-namespaces-and-service-accounts.md │ │ │ ├── 55-compute-resources.md │ │ │ ├── 60-projects.md │ │ │ ├── 65-update-acorns.md │ │ │ ├── 66-remove-acorns.md │ │ │ ├── 70-dev.md │ │ │ ├── 80-alpha-image-allow-rules.md │ │ │ ├── 90-events.md │ │ │ └── _category_.yaml │ │ ├── 55-integrations │ │ │ ├── 01-github-actions.md │ │ │ └── _category_.yaml │ │ └── 60-architecture │ │ │ ├── 01-ten-thousand-foot-view.md │ │ │ ├── 02-security-considerations.md │ │ │ └── _category_.yaml │ ├── version-0.8 │ │ ├── 10-home.md │ │ ├── 100-reference │ │ │ ├── 01-command-line │ │ │ │ ├── _category_.yaml │ │ │ │ ├── acorn.md │ │ │ │ ├── acorn_all.md │ │ │ │ ├── acorn_app.mdx │ │ │ │ ├── acorn_build.md │ │ │ │ ├── acorn_check.md │ │ │ │ ├── acorn_container.md │ │ │ │ ├── acorn_container_kill.md │ │ │ │ ├── acorn_copy.md │ │ │ │ ├── acorn_credential.md │ │ │ │ ├── acorn_credential_login.md │ │ │ │ ├── acorn_credential_logout.md │ │ │ │ ├── acorn_dev.md │ │ │ │ ├── acorn_events.md │ │ │ │ ├── acorn_exec.md │ │ │ │ ├── acorn_fmt.md │ │ │ │ ├── acorn_image.md │ │ │ │ ├── acorn_image_copy.md │ │ │ │ ├── acorn_image_details.md │ │ │ │ ├── acorn_image_rm.md │ │ │ │ ├── acorn_info.md │ │ │ │ ├── acorn_install.md │ │ │ │ ├── acorn_job.md │ │ │ │ ├── acorn_job_restart.md │ │ │ │ ├── acorn_login.md │ │ │ │ ├── acorn_logout.md │ │ │ │ ├── acorn_logs.md │ │ │ │ ├── acorn_offerings.md │ │ │ │ ├── acorn_offerings_computeclasses.md │ │ │ │ ├── acorn_offerings_regions.md │ │ │ │ ├── acorn_offerings_volumeclasses.md │ │ │ │ ├── acorn_port-forward.md │ │ │ │ ├── acorn_project.md │ │ │ │ ├── acorn_project_create.md │ │ │ │ ├── acorn_project_rm.md │ │ │ │ ├── acorn_project_update.md │ │ │ │ ├── acorn_project_use.md │ │ │ │ ├── acorn_ps.md │ │ │ │ ├── acorn_pull.md │ │ │ │ ├── acorn_push.md │ │ │ │ ├── acorn_render.md │ │ │ │ ├── acorn_rm.md │ │ │ │ ├── acorn_run.md │ │ │ │ ├── acorn_secret.md │ │ │ │ ├── acorn_secret_create.md │ │ │ │ ├── acorn_secret_encrypt.md │ │ │ │ ├── acorn_secret_reveal.md │ │ │ │ ├── acorn_secret_rm.md │ │ │ │ ├── acorn_start.md │ │ │ │ ├── acorn_stop.md │ │ │ │ ├── acorn_tag.md │ │ │ │ ├── acorn_uninstall.md │ │ │ │ ├── acorn_update.md │ │ │ │ ├── acorn_version.md │ │ │ │ ├── acorn_volume.md │ │ │ │ ├── acorn_volume_rm.md │ │ │ │ └── acorn_wait.md │ │ │ ├── 02-admin │ │ │ │ ├── 02-volumeclasses.md │ │ │ │ └── 03-computeclasses.md │ │ │ ├── 03-acornfile.md │ │ │ ├── 05-functions.md │ │ │ ├── 06-compute-resources.md │ │ │ ├── 07-encryption.md │ │ │ ├── 10-services.md │ │ │ └── _category_.yaml │ │ ├── 110-faq.md │ │ ├── 30-installation │ │ │ ├── 01-installing.md │ │ │ ├── 02-options.md │ │ │ ├── 03-upgrading.md │ │ │ ├── 100-uninstalling.md │ │ │ └── _category_.yaml │ │ ├── 37-getting-started.md │ │ ├── 38-authoring │ │ │ ├── 00-overview.md │ │ │ ├── 01-best-practices.md │ │ │ ├── 02-structure.md │ │ │ ├── 03-containers.md │ │ │ ├── 04-volumes.md │ │ │ ├── 05-secrets.md │ │ │ ├── 06-jobs.md │ │ │ ├── 07-args-and-profiles.md │ │ │ ├── 08-localdata.md │ │ │ ├── 09-permissions.md │ │ │ ├── 20-labels.md │ │ │ ├── 21-services.md │ │ │ ├── 30-advanced.md │ │ │ ├── 31-nested-acorns.md │ │ │ └── _category_.yaml │ │ ├── 39-publishing.md │ │ ├── 50-running │ │ │ ├── 01-args-and-secrets.md │ │ │ ├── 02-networking.md │ │ │ ├── 03-certificates.md │ │ │ ├── 04-volumes.md │ │ │ ├── 06-linking-acorns.md │ │ │ ├── 20-labels.md │ │ │ ├── 30-troubleshooting.md │ │ │ ├── 40-upgrades.md │ │ │ ├── 45-auto-upgrades.md │ │ │ ├── 50-namespaces-and-service-accounts.md │ │ │ ├── 55-compute-resources.md │ │ │ ├── 60-projects.md │ │ │ ├── 65-update-acorns.md │ │ │ ├── 66-remove-acorns.md │ │ │ ├── 70-dev.md │ │ │ ├── 80-alpha-image-allow-rules.md │ │ │ ├── 90-events.md │ │ │ └── _category_.yaml │ │ ├── 55-integrations │ │ │ ├── 01-github-actions.md │ │ │ └── _category_.yaml │ │ └── 60-architecture │ │ │ ├── 01-ten-thousand-foot-view.md │ │ │ ├── 02-security-considerations.md │ │ │ └── _category_.yaml │ └── version-0.9 │ │ ├── 10-home.md │ │ ├── 100-reference │ │ ├── 01-command-line │ │ │ ├── _category_.yaml │ │ │ ├── acorn.md │ │ │ ├── acorn_all.md │ │ │ ├── acorn_app.mdx │ │ │ ├── acorn_build.md │ │ │ ├── acorn_check.md │ │ │ ├── acorn_container.md │ │ │ ├── acorn_container_kill.md │ │ │ ├── acorn_copy.md │ │ │ ├── acorn_credential.md │ │ │ ├── acorn_credential_login.md │ │ │ ├── acorn_credential_logout.md │ │ │ ├── acorn_dev.md │ │ │ ├── acorn_events.md │ │ │ ├── acorn_exec.md │ │ │ ├── acorn_fmt.md │ │ │ ├── acorn_image.md │ │ │ ├── acorn_image_copy.md │ │ │ ├── acorn_image_details.md │ │ │ ├── acorn_image_rm.md │ │ │ ├── acorn_info.md │ │ │ ├── acorn_install.md │ │ │ ├── acorn_job.md │ │ │ ├── acorn_job_restart.md │ │ │ ├── acorn_login.md │ │ │ ├── acorn_logout.md │ │ │ ├── acorn_logs.md │ │ │ ├── acorn_offerings.md │ │ │ ├── acorn_offerings_computeclasses.md │ │ │ ├── acorn_offerings_regions.md │ │ │ ├── acorn_offerings_volumeclasses.md │ │ │ ├── acorn_port-forward.md │ │ │ ├── acorn_project.md │ │ │ ├── acorn_project_create.md │ │ │ ├── acorn_project_rm.md │ │ │ ├── acorn_project_update.md │ │ │ ├── acorn_project_use.md │ │ │ ├── acorn_ps.md │ │ │ ├── acorn_pull.md │ │ │ ├── acorn_push.md │ │ │ ├── acorn_render.md │ │ │ ├── acorn_rm.md │ │ │ ├── acorn_run.md │ │ │ ├── acorn_secret.md │ │ │ ├── acorn_secret_create.md │ │ │ ├── acorn_secret_encrypt.md │ │ │ ├── acorn_secret_reveal.md │ │ │ ├── acorn_secret_rm.md │ │ │ ├── acorn_start.md │ │ │ ├── acorn_stop.md │ │ │ ├── acorn_tag.md │ │ │ ├── acorn_uninstall.md │ │ │ ├── acorn_update.md │ │ │ ├── acorn_version.md │ │ │ ├── acorn_volume.md │ │ │ ├── acorn_volume_rm.md │ │ │ └── acorn_wait.md │ │ ├── 02-admin │ │ │ ├── 02-volumeclasses.md │ │ │ └── 03-computeclasses.md │ │ ├── 03-acornfile.md │ │ ├── 05-functions.md │ │ ├── 06-compute-resources.md │ │ ├── 07-encryption.md │ │ ├── 10-services.md │ │ └── _category_.yaml │ │ ├── 110-faq.md │ │ ├── 30-installation │ │ ├── 01-installing.md │ │ ├── 02-options.md │ │ ├── 03-upgrading.md │ │ ├── 100-uninstalling.md │ │ └── _category_.yaml │ │ ├── 37-getting-started.md │ │ ├── 38-authoring │ │ ├── 00-overview.md │ │ ├── 01-best-practices.md │ │ ├── 02-structure.md │ │ ├── 03-containers.md │ │ ├── 04-volumes.md │ │ ├── 05-secrets.md │ │ ├── 06-jobs.md │ │ ├── 07-args-and-profiles.md │ │ ├── 08-localdata.md │ │ ├── 09-permissions.md │ │ ├── 20-labels.md │ │ ├── 21-services.md │ │ ├── 30-advanced.md │ │ ├── 31-nested-acorns.md │ │ └── _category_.yaml │ │ ├── 39-publishing.md │ │ ├── 50-running │ │ ├── 01-args-and-secrets.md │ │ ├── 02-networking.md │ │ ├── 03-certificates.md │ │ ├── 04-volumes.md │ │ ├── 06-linking-acorns.md │ │ ├── 20-labels.md │ │ ├── 30-troubleshooting.md │ │ ├── 40-upgrades.md │ │ ├── 45-auto-upgrades.md │ │ ├── 50-namespaces-and-service-accounts.md │ │ ├── 55-compute-resources.md │ │ ├── 60-projects.md │ │ ├── 65-update-acorns.md │ │ ├── 66-remove-acorns.md │ │ ├── 70-dev.md │ │ ├── 80-alpha-image-allow-rules.md │ │ ├── 90-events.md │ │ └── _category_.yaml │ │ ├── 55-integrations │ │ ├── 01-github-actions.md │ │ └── _category_.yaml │ │ └── 60-architecture │ │ ├── 01-ten-thousand-foot-view.md │ │ ├── 02-security-considerations.md │ │ └── _category_.yaml ├── versioned_sidebars │ ├── version-0.10-sidebars.json │ ├── version-0.3-sidebars.json │ ├── version-0.4-sidebars.json │ ├── version-0.5-sidebars.json │ ├── version-0.6-sidebars.json │ ├── version-0.7-sidebars.json │ ├── version-0.8-sidebars.json │ └── version-0.9-sidebars.json ├── versions.json └── yarn.lock ├── generate.go ├── go.mod ├── go.sum ├── integration ├── build │ ├── build_test.go │ └── testdata │ │ ├── build-default │ │ └── Acornfile │ │ ├── contextdir │ │ ├── Acornfile │ │ ├── Dockerfile │ │ └── files │ │ │ └── index.html │ │ ├── dev │ │ └── Acornfile │ │ ├── fail │ │ ├── Acornfile │ │ └── Dockerfile │ │ ├── jobs │ │ ├── Acornfile │ │ ├── Dockerfile │ │ └── Dockerfile.sidecar │ │ ├── multiarch │ │ ├── Acornfile │ │ └── Dockerfile │ │ ├── multicontextdir │ │ ├── Acornfile │ │ ├── Dockerfile │ │ └── files │ │ │ ├── subdir │ │ │ └── token │ │ │ └── test.sh │ │ ├── nested │ │ ├── nested.Acornfile │ │ └── nginx.Acornfile │ │ ├── no-image-build │ │ └── Acornfile │ │ ├── sidecar │ │ ├── Acornfile │ │ ├── Dockerfile │ │ └── Dockerfile.sidecar │ │ ├── similar │ │ ├── one │ │ │ └── Acornfile │ │ └── two │ │ │ └── Acornfile │ │ ├── simple-two │ │ ├── Acornfile │ │ ├── one │ │ │ ├── Dockerfile │ │ │ └── data.txt │ │ └── two │ │ │ └── subdir │ │ │ ├── Dockerfile.txt │ │ │ └── subdir2 │ │ │ └── data.txt │ │ ├── simple │ │ ├── Acornfile │ │ └── Dockerfile │ │ └── target │ │ ├── Acornfile │ │ └── Dockerfile ├── client │ ├── apps │ │ ├── apps_test.go │ │ └── update_test.go │ ├── client.go │ ├── client_test.go │ ├── computeclass │ │ └── computeclass_test.go │ ├── containers │ │ └── containers_test.go │ ├── credentials │ │ └── credentials_test.go │ ├── depends_test.go │ ├── imagerules │ │ ├── imageallowrules_test.go │ │ ├── imageroleauthorizations_test.go │ │ ├── signature_test.go │ │ ├── testdata │ │ │ ├── cosign.key │ │ │ ├── cosign.pub │ │ │ ├── nested-perms │ │ │ │ ├── Acornfile │ │ │ │ └── nested.acorn │ │ │ └── serviceconsumer │ │ │ │ ├── Acornfile │ │ │ │ └── service.acorn │ │ └── util.go │ ├── images │ │ └── images_test.go │ ├── info │ │ └── info_test.go │ ├── jobs │ │ └── jobs_test.go │ ├── secrets │ │ └── secrets_test.go │ ├── testdata │ │ ├── dependson │ │ │ ├── Acornfile │ │ │ └── Acornfile2 │ │ ├── job │ │ │ └── Acornfile │ │ ├── nginx │ │ │ └── Acornfile │ │ ├── nginx2 │ │ │ └── Acornfile │ │ └── sidecar │ │ │ └── Acornfile │ └── volumes │ │ ├── volumeclasses_test.go │ │ └── volumes_test.go ├── dev │ └── dev_test.go ├── events │ ├── events_test.go │ └── testdata │ │ └── simple │ │ ├── Acornfile │ │ └── Dockerfile ├── helper │ ├── assertions.go │ ├── config.go │ ├── controller.go │ ├── ctx.go │ ├── must.go │ ├── project.go │ ├── secrets.go │ └── wait.go ├── log │ ├── log_test.go │ └── testdata │ │ ├── Acornfile │ │ └── Acornfile_hanging ├── projectconfig │ └── projectconfig_test.go ├── run │ ├── run_test.go │ └── testdata │ │ ├── cluster-volume-class-with-values │ │ ├── Acornfile │ │ └── Dockerfile │ │ ├── cluster-volume-class │ │ ├── Acornfile │ │ └── Dockerfile │ │ ├── computeclass │ │ ├── Acornfile │ │ └── Dockerfile │ │ ├── jobfinalize │ │ ├── Acornfile │ │ └── scripts │ │ │ └── run.sh │ │ ├── named │ │ └── Acornfile │ │ ├── networkpolicy │ │ ├── Acornfile │ │ ├── curl.Acornfile │ │ └── publish.Acornfile │ │ ├── no-class-with-values │ │ ├── Acornfile │ │ └── Dockerfile │ │ ├── params │ │ └── Acornfile │ │ ├── scaled │ │ ├── Acornfile │ │ └── Dockerfile │ │ ├── serviceconsumer │ │ ├── Acornfile │ │ └── service.acorn │ │ ├── simple │ │ ├── Acornfile │ │ └── Dockerfile │ │ ├── volume-bad-class │ │ ├── Acornfile │ │ └── Dockerfile │ │ ├── volume-custom-class │ │ ├── Acornfile │ │ └── Dockerfile │ │ └── volume │ │ ├── Acornfile │ │ ├── Dockerfile │ │ └── files │ │ └── a.txt ├── secrets │ ├── secret_test.go │ └── testdata │ │ ├── encryption │ │ └── Acornfile │ │ ├── generated-json │ │ └── Acornfile │ │ ├── generated │ │ └── Acornfile │ │ └── issue-552 │ │ └── Acornfile └── services │ ├── services_test.go │ └── testdata │ ├── ignorecleanup │ ├── Acornfile │ └── service │ │ └── Acornfile │ ├── info │ ├── Acornfile │ └── nested.acorn │ └── main │ ├── Acornfile │ └── service │ └── Acornfile ├── main.go ├── pkg ├── apis │ ├── admin.acorn.io │ │ ├── group.go │ │ └── v1 │ │ │ ├── computeclasses.go │ │ │ ├── doc.go │ │ │ ├── imageroleauthorizations.go │ │ │ ├── quotarequests.go │ │ │ ├── scheme.go │ │ │ ├── volumes.go │ │ │ └── zz_generated.deepcopy.go │ ├── api.acorn.io │ │ ├── group.go │ │ └── v1 │ │ │ ├── app.go │ │ │ ├── computeclass.go │ │ │ ├── conversion.go │ │ │ ├── doc.go │ │ │ ├── event.go │ │ │ ├── region.go │ │ │ ├── scheme.go │ │ │ ├── types.go │ │ │ └── zz_generated.deepcopy.go │ ├── internal.acorn.io │ │ ├── group.go │ │ └── v1 │ │ │ ├── appimage.go │ │ │ ├── appinstance.go │ │ │ ├── appspec.go │ │ │ ├── appspec_test.go │ │ │ ├── appstatus.go │ │ │ ├── build.go │ │ │ ├── computeclass.go │ │ │ ├── conditions.go │ │ │ ├── devsession.go │ │ │ ├── doc.go │ │ │ ├── event.go │ │ │ ├── imageallowrules.go │ │ │ ├── imageinstance.go │ │ │ ├── imageselector.go │ │ │ ├── labelsannotations.go │ │ │ ├── labelsannotations_test.go │ │ │ ├── map.go │ │ │ ├── map_test.go │ │ │ ├── memory.go │ │ │ ├── memory_test.go │ │ │ ├── ports.go │ │ │ ├── ports_test.go │ │ │ ├── projectinstance.go │ │ │ ├── schema.go │ │ │ ├── scheme.go │ │ │ ├── secrets.go │ │ │ ├── service.go │ │ │ ├── unmarshal.go │ │ │ ├── unmarshal_test.go │ │ │ ├── volumes.go │ │ │ └── zz_generated.deepcopy.go │ └── internal.admin.acorn.io │ │ ├── group.go │ │ └── v1 │ │ ├── baseresources.go │ │ ├── baseresources_test.go │ │ ├── computeclasses.go │ │ ├── computeclassresources.go │ │ ├── computeclassresources_test.go │ │ ├── default.go │ │ ├── doc.go │ │ ├── imageroleauthorizations.go │ │ ├── quotarequests.go │ │ ├── quotarequests_test.go │ │ ├── resources.go │ │ ├── scheme.go │ │ ├── volumeclassresources.go │ │ ├── volumeclassresources_test.go │ │ ├── volumes.go │ │ └── zz_generated.deepcopy.go ├── appdefinition │ ├── acornfile-schema.acorn │ ├── app-default.acorn │ ├── appdefinition.go │ ├── appdefinition_test.go │ ├── lookup.go │ ├── params.go │ ├── params_test.go │ └── schema.go ├── autoupgrade │ ├── client.go │ ├── daemon.go │ ├── daemon_test.go │ ├── tags.go │ ├── tags_test.go │ └── validate │ │ └── check.go ├── awspermissions │ └── awspermissions.go ├── build │ ├── app.go │ ├── assemble.go │ ├── authprovider │ │ └── provider.go │ ├── build.go │ ├── build_test.go │ ├── buildkit │ │ ├── build.go │ │ └── client.go │ ├── depot │ │ └── depot.go │ ├── platforms.go │ └── remotekeychain.go ├── buildclient │ ├── client.go │ ├── filesync.go │ ├── filesyncclient.go │ ├── messages.go │ └── progress.go ├── buildserver │ ├── delete.go │ ├── keys.go │ ├── server.go │ └── token.go ├── channels │ └── channels.go ├── cli │ ├── acorn.go │ ├── acorn_test.go │ ├── all.go │ ├── all_test.go │ ├── apiserver.go │ ├── auth.go │ ├── build.go │ ├── build_test.go │ ├── builder │ │ ├── builder.go │ │ └── table │ │ │ ├── fmt.go │ │ │ ├── funcs.go │ │ │ └── writer.go │ ├── buildserver.go │ ├── check.go │ ├── completion.go │ ├── completion_test.go │ ├── computeclasses.go │ ├── containers.go │ ├── containers_rm.go │ ├── containers_test.go │ ├── context.go │ ├── controller.go │ ├── copy.go │ ├── credential.go │ ├── credential_login.go │ ├── credential_logout.go │ ├── credential_test.go │ ├── dashboard.go │ ├── dev.go │ ├── dev_test.go │ ├── edit.go │ ├── errors.go │ ├── events.go │ ├── exec.go │ ├── fmt.go │ ├── images.go │ ├── images_detail.go │ ├── images_rm.go │ ├── images_sign.go │ ├── images_test.go │ ├── images_verify.go │ ├── info.go │ ├── info_test.go │ ├── install.go │ ├── jobs.go │ ├── jobs_restart.go │ ├── kube.go │ ├── local.go │ ├── local_logs.go │ ├── local_rm.go │ ├── local_server.go │ ├── local_start.go │ ├── local_stop.go │ ├── log.go │ ├── log_test.go │ ├── offerings.go │ ├── port_forward.go │ ├── project.go │ ├── project_create.go │ ├── project_rm.go │ ├── project_update.go │ ├── project_use.go │ ├── ps.go │ ├── ps_test.go │ ├── pull.go │ ├── pull_test.go │ ├── push.go │ ├── push_test.go │ ├── regions.go │ ├── regions_test.go │ ├── render.go │ ├── render_test.go │ ├── rm.go │ ├── rm_helper.go │ ├── rm_helper_test.go │ ├── run.go │ ├── run_test.go │ ├── secret.go │ ├── secret_create.go │ ├── secret_create_test.go │ ├── secret_edit.go │ ├── secret_encrypt.go │ ├── secret_expose.go │ ├── secret_rm.go │ ├── secret_test.go │ ├── secret_update.go │ ├── start.go │ ├── start_test.go │ ├── stop.go │ ├── stop_test.go │ ├── tag.go │ ├── tag_test.go │ ├── testdata │ │ ├── MockClient.go │ │ ├── TestAcorn │ │ │ └── acorn_info.golden │ │ ├── TestAll │ │ │ ├── acorn_all.golden │ │ │ ├── acorn_all_-i.golden │ │ │ ├── acorn_all_-o_json.golden │ │ │ └── acorn_all_-o_yaml.golden │ │ ├── TestInfo │ │ │ ├── acorn_info.golden │ │ │ ├── acorn_info_-A.golden │ │ │ ├── acorn_info_-o_json.golden │ │ │ ├── acorn_info_-o_yaml.golden │ │ │ └── acorn_info_empty_response.golden │ │ ├── TestRender │ │ │ └── acorn_render_.#01.golden │ │ ├── render │ │ │ └── Acornfile │ │ └── secret │ │ │ ├── secret.yaml │ │ │ └── value2.txt │ ├── uninstall.go │ ├── update.go │ ├── update_test.go │ ├── version.go │ ├── volume_classes.go │ ├── volume_classes_test.go │ ├── volume_rm.go │ ├── volumes.go │ ├── volumes_test.go │ └── wait.go ├── client │ ├── app.go │ ├── app_test.go │ ├── build.go │ ├── builder.go │ ├── client.go │ ├── computeclass.go │ ├── containers.go │ ├── credentials.go │ ├── deferred.go │ ├── error.go │ ├── event.go │ ├── exec.go │ ├── ignore.go │ ├── image.go │ ├── image_test.go │ ├── info.go │ ├── info_test.go │ ├── jobs.go │ ├── multi.go │ ├── port_forward.go │ ├── project.go │ ├── region.go │ ├── secrets.go │ ├── sign.go │ ├── term │ │ ├── exit.go │ │ └── term.go │ ├── verify.go │ └── volume.go ├── computeclasses │ └── computeclasses.go ├── condition │ ├── conditions.go │ └── conditions_test.go ├── config │ ├── cliconfig.go │ ├── config.go │ └── config_test.go ├── controller │ ├── acornimagebuildinstance │ │ └── buildinstance.go │ ├── appdefinition │ │ ├── acorn.go │ │ ├── acorn_test.go │ │ ├── computeclass_test.go │ │ ├── consumer.go │ │ ├── consumer_test.go │ │ ├── depends.go │ │ ├── depends_test.go │ │ ├── deploy.go │ │ ├── deploy_test.go │ │ ├── error.go │ │ ├── files_test.go │ │ ├── generation.go │ │ ├── imagepulled.go │ │ ├── ingress_test.go │ │ ├── jobs.go │ │ ├── jobs_test.go │ │ ├── links_test.go │ │ ├── memory_test.go │ │ ├── namespace.go │ │ ├── namespace_test.go │ │ ├── parse.go │ │ ├── parse_test.go │ │ ├── permissions.go │ │ ├── permissions_test.go │ │ ├── pre_stop_test.go │ │ ├── pullappimage.go │ │ ├── pullappimage_test.go │ │ ├── pullsecrets.go │ │ ├── pullsecrets_test.go │ │ ├── router.go │ │ ├── router_test.go │ │ ├── secret_test.go │ │ ├── service_test.go │ │ ├── serviceaccount.go │ │ ├── sleep_dev.go │ │ ├── sleep_image.go │ │ ├── testdata │ │ │ ├── TestComputeMem.golden │ │ │ ├── acorn │ │ │ │ ├── basic │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ └── labels │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ ├── addacornprojectlabel │ │ │ │ ├── existing.yaml │ │ │ │ └── input.yaml │ │ │ ├── addacornprojectlabelalreadyexists │ │ │ │ ├── existing.yaml │ │ │ │ └── input.yaml │ │ │ ├── assignnamespace │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ ├── autoupgrade │ │ │ │ ├── with-local-image │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ └── without-local-image │ │ │ │ │ └── input.yaml │ │ │ ├── computeclass │ │ │ │ ├── all-set-overwrite-computeclass │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── all-set │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── container │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── different-computeclass │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── generic-resources │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── job │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── overwrite-acornfile-computeclass │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── sidecar │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.yaml.d │ │ │ │ │ │ ├── appinstance.yaml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ │ ├── secret.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ │ └── input.yaml │ │ │ │ ├── two-containers │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ └── with-acornfile-computeclass │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ ├── cronjob │ │ │ │ ├── expected.yaml │ │ │ │ ├── expected.yaml.d │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ └── input.yaml │ │ │ ├── depends-ready │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ ├── depends │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ ├── deployspec │ │ │ │ ├── basic │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── filter-user-labels-namespace │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── filter-user-labels │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── karpenter │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── labels-namespace │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── labels │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── metrics │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── no-user-labels-namespace │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── no-user-labels │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── pre-stop │ │ │ │ │ ├── basic │ │ │ │ │ │ ├── expected.golden │ │ │ │ │ │ └── input.yaml │ │ │ │ │ ├── dev │ │ │ │ │ │ ├── expected.golden │ │ │ │ │ │ └── input.yaml │ │ │ │ │ ├── job │ │ │ │ │ │ ├── expected.golden │ │ │ │ │ │ └── input.yaml │ │ │ │ │ ├── no-ports │ │ │ │ │ │ ├── expected.golden │ │ │ │ │ │ └── input.yaml │ │ │ │ │ ├── ports-only-sidecar │ │ │ │ │ │ ├── expected.golden │ │ │ │ │ │ └── input.yaml │ │ │ │ │ └── stateful │ │ │ │ │ │ ├── existing.yaml │ │ │ │ │ │ ├── expected.golden │ │ │ │ │ │ └── input.yaml │ │ │ │ ├── scale │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ └── stop │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ ├── files-bug │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ ├── files │ │ │ │ ├── existing.yaml.d │ │ │ │ │ └── secret.yaml │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ ├── globalenv │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ ├── ingress │ │ │ │ ├── basic │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── clusterdomainport │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── labels-namespace │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── labels │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── letsencrypt │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ └── prefix │ │ │ │ │ ├── prefix-1-namespace │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ │ ├── prefix-1 │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ │ ├── prefix-2-namespace │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ │ └── prefix-2 │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ ├── interpolation │ │ │ │ ├── existing.yaml.d │ │ │ │ │ └── secret.yaml │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ ├── job │ │ │ │ ├── basic │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── event-jobs-create-app │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── event-jobs-delete-app │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── event-jobs-start-app │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── event-jobs-stop-app │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── event-jobs-update-app-with-create │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── event-jobs-update-app │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── event-jobs-update-create-job │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── event-jobs-update-generation-one │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── labels-namespace │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ └── labels │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ ├── link │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ ├── memory │ │ │ │ ├── all-set-overwrite │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── all-set │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── container │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── job │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── overwrite-acornfile-memory │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── sidecar │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── two-containers │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ └── with-acornfile-memory │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ ├── parseappimage │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ ├── parsedevmode │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ ├── permissions │ │ │ │ ├── both │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── bothwithnopermissions │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── container │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── containerwithnamespace │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── differentpermissions │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── job │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── multiplecontainers │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ └── multiplejobs │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ ├── probes │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ ├── propagation_basic │ │ │ │ ├── existing.yaml │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ ├── propagation_noconfig │ │ │ │ ├── existing.yaml │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ ├── pullsecrets │ │ │ │ ├── custom │ │ │ │ │ ├── existing.yaml.d │ │ │ │ │ │ └── secret.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ └── default │ │ │ │ │ ├── existing.yaml.d │ │ │ │ │ └── secret.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ ├── router │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ ├── secret │ │ │ │ ├── existing.yaml.d │ │ │ │ │ └── secret.yaml │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ ├── service │ │ │ │ ├── alias │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ └── basic │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ ├── template │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ └── volumes │ │ │ │ ├── cluster-default-with-bind-combos │ │ │ │ ├── existing.yaml │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ │ ├── configure-but-no-bind │ │ │ │ ├── existing.yaml │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ │ ├── contextdir │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ │ ├── defaults │ │ │ │ ├── existing.yaml │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ │ ├── empty │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ │ ├── ephemeral-bound │ │ │ │ ├── existing.yaml │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ │ ├── ephemeral │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ │ ├── inactive-class │ │ │ │ ├── existing.yaml │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ │ ├── named-bound │ │ │ │ ├── existing.yaml │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ │ ├── named │ │ │ │ ├── existing.yaml │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ │ ├── no-default-class │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ │ ├── preload │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ │ └── reuse-existing │ │ │ │ ├── existing.yaml │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ ├── volume.go │ │ ├── volume_bind.go │ │ └── volume_test.go │ ├── appstatus │ │ ├── acorns.go │ │ ├── appstatus.go │ │ ├── blocked.go │ │ ├── check.go │ │ ├── check_test.go │ │ ├── cli_status.go │ │ ├── containers.go │ │ ├── endpoints.go │ │ ├── functions.go │ │ ├── jobs.go │ │ ├── ready.go │ │ ├── replicas.go │ │ ├── routers.go │ │ ├── secrets.go │ │ ├── services.go │ │ └── volumes.go │ ├── builder │ │ ├── builder.go │ │ ├── depot.go │ │ └── registry.go │ ├── config │ │ ├── autoupgrade.go │ │ ├── devconfig.go │ │ ├── dns.go │ │ └── dns_test.go │ ├── controller.go │ ├── data.go │ ├── defaults │ │ ├── defaults.go │ │ ├── memory.go │ │ ├── memory_test.go │ │ ├── region.go │ │ ├── region_test.go │ │ ├── testdata │ │ │ ├── memory │ │ │ │ ├── all-set-overwrite │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── all-set │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── container │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── job │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── overwrite-acornfile-memory │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── removed-container │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── same-generation │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── sidecar │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── two-ccc-defaults-should-error │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.yaml │ │ │ │ │ └── input.yaml │ │ │ │ ├── two-containers │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── two-pcc-defaults-should-error │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.yaml │ │ │ │ │ └── input.yaml │ │ │ │ └── with-acornfile-memory │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ ├── region │ │ │ │ ├── default │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── project-default-status │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ └── region-on-spec │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ └── volumeclass │ │ │ │ ├── cluster-and-project-class-same-name │ │ │ │ ├── existing.yaml │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ │ ├── volume-class-defaults-same-gen │ │ │ │ ├── existing.yaml │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ │ ├── volume-class-defaults-set │ │ │ │ ├── existing.yaml │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ │ ├── volume-class-fill-cluster-default │ │ │ │ ├── existing.yaml │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ │ ├── volume-class-fill-defaults-with-bind │ │ │ │ ├── existing.yaml │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ │ ├── volume-class-fill-defaults │ │ │ │ ├── existing.yaml │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ │ ├── volume-class-fill-project-default │ │ │ │ ├── existing.yaml │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ │ ├── volume-class-fill-size │ │ │ │ ├── existing.yaml │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ │ ├── volume-class-two-cluster-defaults │ │ │ │ ├── existing.yaml │ │ │ │ ├── expected.yaml │ │ │ │ └── input.yaml │ │ │ │ └── volume-class-two-project-defaults │ │ │ │ ├── existing.yaml │ │ │ │ ├── expected.yaml │ │ │ │ └── input.yaml │ │ ├── volumeclass.go │ │ └── volumeclass_test.go │ ├── devsession │ │ └── devsession.go │ ├── eventinstance │ │ └── eventinstance.go │ ├── gc │ │ └── gc.go │ ├── images │ │ └── images.go │ ├── ingress │ │ ├── dns.go │ │ ├── dns_test.go │ │ └── testdata │ │ │ └── ingress │ │ │ ├── existing.yaml │ │ │ ├── expected.yaml │ │ │ └── input.yaml │ ├── jobs │ │ ├── finalize.go │ │ └── output.go │ ├── local │ │ ├── pods.go │ │ ├── services.go │ │ └── storage.go │ ├── namespace │ │ ├── gc.go │ │ └── namespace.go │ ├── networkpolicy │ │ ├── networkpolicy.go │ │ ├── networkpolicy_test.go │ │ └── testdata │ │ │ └── networkpolicy │ │ │ ├── appinstance │ │ │ ├── existing.yaml │ │ │ ├── expected.golden │ │ │ └── input.yaml │ │ │ ├── builder │ │ │ ├── existing.yaml │ │ │ ├── expected.golden │ │ │ └── input.yaml │ │ │ ├── externalname │ │ │ ├── existing.yaml │ │ │ ├── expected.golden │ │ │ └── input.yaml │ │ │ ├── ingress │ │ │ ├── existing.yaml │ │ │ ├── expected.golden │ │ │ └── input.yaml │ │ │ └── service │ │ │ ├── existing.yaml │ │ │ ├── expected.golden │ │ │ └── input.yaml │ ├── permissions │ │ ├── checkimageallowed.go │ │ ├── consumerpermissions.go │ │ ├── ira.go │ │ └── permissions_check.go │ ├── pvc │ │ └── markandsave.go │ ├── quota │ │ ├── quota.go │ │ ├── quota_test.go │ │ └── testdata │ │ │ ├── basic │ │ │ ├── existing.yaml │ │ │ ├── expected.golden │ │ │ └── input.yaml │ │ │ ├── implicit-pv-bind │ │ │ ├── existing.yaml │ │ │ ├── expected.golden │ │ │ └── input.yaml │ │ │ ├── not-enforced │ │ │ ├── existing.yaml │ │ │ ├── expected.golden │ │ │ └── input.yaml │ │ │ ├── only-all-set │ │ │ ├── existing.yaml │ │ │ ├── expected.golden │ │ │ └── input.yaml │ │ │ └── status-default-volume-size │ │ │ ├── existing.yaml │ │ │ ├── expected.golden │ │ │ └── input.yaml │ ├── resolvedofferings │ │ ├── computeclass.go │ │ ├── computeclass_test.go │ │ ├── region.go │ │ ├── region_test.go │ │ ├── resolvedofferings.go │ │ ├── testdata │ │ │ ├── computeclass │ │ │ │ ├── acornfile-override-compute-class │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── all-set-overwrite │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── all-set │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── compute-class-default │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── container │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── job │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── overwrite-acornfile-memory │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── removed-container │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── same-generation │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── sidecar │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── two-ccc-defaults-should-error │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.yaml │ │ │ │ │ └── input.yaml │ │ │ │ ├── two-containers │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── two-pcc-defaults-should-error │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.yaml │ │ │ │ │ └── input.yaml │ │ │ │ ├── user-override-compute-class │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── with-acornfile-memory-and-spec-override │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ └── with-acornfile-memory │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ ├── region │ │ │ │ ├── default │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── project-default-status │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ └── region-on-spec │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ └── volumeclass │ │ │ │ ├── cluster-and-project-class-same-name │ │ │ │ ├── existing.yaml │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ │ ├── volume-class-defaults-same-gen │ │ │ │ ├── existing.yaml │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ │ ├── volume-class-fill-cluster-default │ │ │ │ ├── existing.yaml │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ │ ├── volume-class-fill-defaults-with-bind │ │ │ │ ├── existing.yaml │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ │ ├── volume-class-fill-defaults │ │ │ │ ├── existing.yaml │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ │ ├── volume-class-fill-project-default │ │ │ │ ├── existing.yaml │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ │ ├── volume-class-fill-size │ │ │ │ ├── existing.yaml │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ │ ├── volume-class-two-cluster-defaults │ │ │ │ ├── existing.yaml │ │ │ │ ├── expected.yaml │ │ │ │ └── input.yaml │ │ │ │ └── volume-class-two-project-defaults │ │ │ │ ├── existing.yaml │ │ │ │ ├── expected.yaml │ │ │ │ └── input.yaml │ │ ├── volumeclass.go │ │ └── volumeclass_test.go │ ├── routes.go │ ├── scheduling │ │ ├── computeclass_test.go │ │ ├── memory_test.go │ │ ├── scheduling.go │ │ ├── testdata │ │ │ ├── computeclass │ │ │ │ ├── all-set-overwrite-computeclass │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── all-set │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── container │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── different-computeclass │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── different-digest-generation │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── generic-resources │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── invalid-priority-class-should-error │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── job │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── overwrite-acornfile-computeclass │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── priority-class │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── removed-container │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── request-scaler-floor │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── request-scaler-values │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── request-scaler │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── same-digest-generation │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── same-generation │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── sidecar │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.yaml │ │ │ │ │ └── input.yaml │ │ │ │ ├── two-ccc-defaults-should-error │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.yaml │ │ │ │ │ └── input.yaml │ │ │ │ ├── two-containers │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── two-pcc-defaults-should-error │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.yaml │ │ │ │ │ └── input.yaml │ │ │ │ └── with-acornfile-computeclass │ │ │ │ │ ├── existing.yaml │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ ├── memory │ │ │ │ ├── all-set-overwrite │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── all-set │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── container │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── job │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── overwrite-acornfile-memory │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── removed-container │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── same-generation │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── sidecar │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ ├── two-containers │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ │ └── with-acornfile-memory │ │ │ │ │ ├── expected.golden │ │ │ │ │ └── input.yaml │ │ │ └── tolerations │ │ │ │ ├── container │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ │ ├── job │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ │ └── removed-container │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ └── toleration_test.go │ ├── secrets │ │ ├── dns.go │ │ ├── dns_test.go │ │ ├── secret.go │ │ ├── secret_test.go │ │ └── testdata │ │ │ ├── binding │ │ │ ├── existing.yaml │ │ │ ├── expected.golden │ │ │ └── input.yaml │ │ │ ├── dns │ │ │ ├── create-ingress-acorndns-enabled │ │ │ │ ├── existing.yaml │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ └── create-ingress-cluster-domain │ │ │ │ ├── existing.yaml │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ ├── secret-encrypted │ │ │ ├── existing.yaml.d │ │ │ │ ├── namespace.yaml │ │ │ │ └── secret.yaml │ │ │ ├── expected.golden │ │ │ └── input.yaml │ │ │ └── secret-image │ │ │ ├── expected.golden │ │ │ └── input.yaml │ ├── service │ │ ├── service.go │ │ ├── service_test.go │ │ └── testdata │ │ │ ├── ingress │ │ │ ├── basic │ │ │ │ ├── existing.yaml │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ ├── cert-manager │ │ │ │ ├── existing.yaml │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ ├── clusterdomainport │ │ │ │ ├── existing.yaml │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ ├── customdomainwithannotations │ │ │ │ ├── existing.yaml │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ ├── customdomainwithcerts │ │ │ │ ├── existing.yaml │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ ├── labels-namespace │ │ │ │ ├── existing.yaml │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ ├── labels │ │ │ │ ├── existing.yaml │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ ├── letsencrypt │ │ │ │ ├── existing.yaml │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ └── prefix │ │ │ │ ├── prefix-1-namespace │ │ │ │ ├── existing.yaml │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ │ ├── prefix-1 │ │ │ │ ├── existing.yaml │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ │ ├── prefix-2-namespace │ │ │ │ ├── existing.yaml │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ │ └── prefix-2 │ │ │ │ ├── existing.yaml │ │ │ │ ├── expected.golden │ │ │ │ └── input.yaml │ │ │ ├── router │ │ │ ├── existing.yaml │ │ │ ├── expected.golden │ │ │ └── input.yaml │ │ │ ├── secret │ │ │ ├── existing.yaml │ │ │ ├── expected.golden │ │ │ └── input.yaml │ │ │ └── service │ │ │ ├── basic │ │ │ ├── expected.golden │ │ │ └── input.yaml │ │ │ ├── bind-no-protocol │ │ │ ├── existing.yaml │ │ │ ├── expected.golden │ │ │ └── input.yaml │ │ │ └── tcp-http-overlap │ │ │ ├── expected.golden │ │ │ └── input.yaml │ └── tls │ │ ├── certs.go │ │ ├── letsencrypt.go │ │ └── provider.go ├── cosign │ ├── cosign.go │ ├── cosign_test.go │ ├── errors.go │ ├── find.go │ ├── github.go │ ├── keys.go │ ├── keys_test.go │ ├── manager.go │ ├── registry.go │ ├── testdata │ │ ├── img.oci │ │ │ ├── blobs │ │ │ │ └── sha256 │ │ │ │ │ ├── 245864d0312e7e33201eff111cfc071727f4eaa9edd10a395c367077e200cad2 │ │ │ │ │ ├── 5606fef872b8dc3cd502beae59f7d9485ec52eddc372256da5ea9faaa9cb5cf8 │ │ │ │ │ └── eee76ab891bcc907e483395d2d2b6924cc0aae88cae124087ba62b372bd05dac │ │ │ ├── index.json │ │ │ └── oci-layout │ │ ├── invalidkey1.key │ │ ├── invalidkey1.pub │ │ ├── keys │ │ │ ├── openssh-ed25519-pw_foobar.key │ │ │ ├── openssh-ed25519-pw_foobar.pub │ │ │ ├── openssh-rsa-nopw.key │ │ │ └── openssh-rsa-nopw.pub │ │ ├── sig_notok_1.oci │ │ │ ├── blobs │ │ │ │ └── sha256 │ │ │ │ │ ├── 2660a9b71fe930cf09694b1cb802e8b8e7ab9f2d173d5d2663caf5f1481ae240 │ │ │ │ │ ├── c9de821e3d89858c994fc0bdb17435109f984847963248eedc204848adb8269e │ │ │ │ │ └── f5fe0617ba57efa1779cb7eb8ac83d4479d733b60afe2b05a9c339f50d639c8a │ │ │ ├── index.json │ │ │ └── oci-layout │ │ ├── sig_notok_2.oci │ │ │ ├── blobs │ │ │ │ └── sha256 │ │ │ │ │ ├── 1835551c0c2e46cce89e4d708dacbf0bccdae207335517b9fefb8a8f5ac13b41 │ │ │ │ │ ├── 3c1e9781522d836a400b67ad65599e7ace6ebc4a739ee4eefc163127474d73b1 │ │ │ │ │ ├── 5c5206c66d21e4a20a2b054c5cb2a4827cfc7c54c5dc548c50366cec53b43264 │ │ │ │ │ └── c9de821e3d89858c994fc0bdb17435109f984847963248eedc204848adb8269e │ │ │ ├── index.json │ │ │ └── oci-layout │ │ ├── sig_ok_1.oci │ │ │ ├── blobs │ │ │ │ └── sha256 │ │ │ │ │ ├── 1a5634a500d044cfb6067558a3aed035e39992fe03406bdb743f336cd5837c6c │ │ │ │ │ ├── 47090d4fb6ba13979d00c00cdccd1dfd80f60cfbbfaf4f0f1df0999a3df3597a │ │ │ │ │ ├── 5c5206c66d21e4a20a2b054c5cb2a4827cfc7c54c5dc548c50366cec53b43264 │ │ │ │ │ └── c9de821e3d89858c994fc0bdb17435109f984847963248eedc204848adb8269e │ │ │ ├── index.json │ │ │ └── oci-layout │ │ ├── validkey1.key │ │ └── validkey1.pub │ └── types.go ├── crds │ └── crds.go ├── credentials │ ├── helper.go │ └── store.go ├── deployargs │ └── args.go ├── dev │ ├── dev.go │ ├── ports.go │ └── sync.go ├── digest │ └── digest.go ├── dns │ ├── client.go │ ├── daemon.go │ ├── helpers.go │ ├── helpers_test.go │ ├── model.go │ └── ratelimit.go ├── dockerconfig │ └── dockerconfig.go ├── edit │ └── edit.go ├── encryption │ ├── encryption.go │ └── nacl │ │ ├── decrypt.go │ │ ├── encrypt.go │ │ ├── errors.go │ │ └── keys.go ├── event │ ├── event.go │ ├── id.go │ ├── id_test.go │ └── truncate.go ├── externalid │ └── externalid.go ├── imagedetails │ ├── details.go │ └── imagedetails.go ├── imagemetadatacache │ └── imagemetadatacache.go ├── imagepattern │ └── pattern.go ├── imagerules │ ├── imageallowrules.go │ ├── imageroleauthorizations.go │ └── util │ │ └── helpers.go ├── images │ ├── find.go │ ├── keychain.go │ ├── operations.go │ └── write.go ├── imageselector │ ├── match.go │ ├── name │ │ ├── name.go │ │ └── name_test.go │ └── signatures │ │ ├── annotations │ │ └── selector.go │ │ └── signatures.go ├── imagesource │ ├── helper.go │ ├── platforms_test.go │ └── testdata │ │ └── params │ │ ├── Acornfile │ │ └── test.cue ├── imagesystem │ ├── builder.go │ ├── buildertemplate.go │ ├── registry.go │ ├── registry_test.go │ ├── registrytemplate.go │ └── transport.go ├── info │ └── info.go ├── install │ ├── apiserver.yaml │ ├── check.go │ ├── controller.yaml │ ├── coredns.yaml │ ├── dev.go │ ├── install.go │ ├── local.yaml │ ├── namespace.yaml │ ├── progress │ │ ├── progress_factory.go │ │ └── stream.go │ ├── role.yaml │ └── traefik.yaml ├── jobs │ └── jobs.go ├── k8schannel │ ├── dialer.go │ └── websocket.go ├── k8sclient │ ├── client.go │ └── mapper.go ├── labels │ └── labels.go ├── local │ ├── docker.go │ ├── server_generic.go │ ├── server_linux.go │ └── webhook │ │ ├── patch.go │ │ └── server.go ├── log │ ├── default_log.go │ ├── log.go │ ├── log_test.go │ └── output.go ├── login │ └── login.go ├── logserver │ ├── init │ │ └── init.go │ └── logserver.go ├── manager │ ├── client.go │ ├── manager.go │ └── urls.go ├── mocks │ ├── dns │ │ └── mock.go │ ├── k8s │ │ └── mock.go │ └── mock_client.go ├── namespace │ └── namespace.go ├── openapi │ └── generated │ │ └── openapi_generated.go ├── pdb │ └── pdb.go ├── podstatus │ └── pod.go ├── portforward │ └── portforward.go ├── ports │ ├── ports.go │ ├── ports_test.go │ └── publish.go ├── profiles │ ├── default.go │ ├── production.go │ └── profiles.go ├── progressbar │ └── print.go ├── project │ ├── client.go │ ├── client_test.go │ ├── handlers.go │ ├── handlers_test.go │ ├── operations.go │ └── testdata │ │ ├── createnamespace │ │ ├── with-labels-anns │ │ │ ├── expected.golden │ │ │ └── input.yaml │ │ └── without-labels-anns │ │ │ ├── expected.golden │ │ │ └── input.yaml │ │ └── setsupportedregions │ │ ├── all-supported-regions-with-default │ │ ├── expected.golden │ │ └── input.yaml │ │ ├── no-default │ │ ├── expected.golden │ │ └── input.yaml │ │ ├── with-default-and-supported │ │ ├── expected.golden │ │ └── input.yaml │ │ └── with-supported-regions │ │ ├── expected.golden │ │ └── input.yaml ├── prompt │ └── prompt.go ├── proxy │ └── proxy.go ├── publicname │ ├── container.go │ ├── publicname.go │ ├── publicname_test.go │ └── strategy.go ├── publish │ ├── cert.go │ ├── ingress.go │ ├── ingress_test.go │ ├── router.go │ └── servicelb.go ├── pullsecret │ └── pullsecrets.go ├── ref │ ├── expr.go │ └── expr_test.go ├── replace │ ├── interpolate.go │ ├── interpolate_test.go │ ├── replace.go │ └── replace_test.go ├── roles │ └── roles.go ├── rulerequest │ ├── handle.go │ └── perms.go ├── run │ └── run.go ├── scheme │ └── scheme.go ├── secrets │ ├── generate.go │ ├── generate_test.go │ ├── interpolation.go │ └── secret.go ├── server │ ├── registry │ │ ├── apigroups │ │ │ ├── acorn │ │ │ │ ├── apigroup.go │ │ │ │ ├── apps │ │ │ │ │ ├── confirmupgrade.go │ │ │ │ │ ├── events.go │ │ │ │ │ ├── icon.go │ │ │ │ │ ├── ignorecleanup.go │ │ │ │ │ ├── ignorecleanup_test.go │ │ │ │ │ ├── info.go │ │ │ │ │ ├── logs.go │ │ │ │ │ ├── nested_validator.go │ │ │ │ │ ├── nested_validator_test.go │ │ │ │ │ ├── pull.go │ │ │ │ │ ├── storage.go │ │ │ │ │ ├── strategy.go │ │ │ │ │ ├── translator.go │ │ │ │ │ ├── validator.go │ │ │ │ │ └── validator_test.go │ │ │ │ ├── builders │ │ │ │ │ ├── port.go │ │ │ │ │ ├── strategy.go │ │ │ │ │ └── translator.go │ │ │ │ ├── builds │ │ │ │ │ ├── storage.go │ │ │ │ │ ├── strategy.go │ │ │ │ │ └── translator.go │ │ │ │ ├── containers │ │ │ │ │ ├── exec.go │ │ │ │ │ ├── port_forward.go │ │ │ │ │ ├── storage.go │ │ │ │ │ ├── translator.go │ │ │ │ │ └── translator_test.go │ │ │ │ ├── credentials │ │ │ │ │ ├── store.go │ │ │ │ │ ├── strategy.go │ │ │ │ │ └── translator.go │ │ │ │ ├── devsessions │ │ │ │ │ ├── storage.go │ │ │ │ │ ├── strategy.go │ │ │ │ │ └── translator.go │ │ │ │ ├── events │ │ │ │ │ ├── storage.go │ │ │ │ │ ├── strategy.go │ │ │ │ │ ├── strategy_test.go │ │ │ │ │ └── translator.go │ │ │ │ ├── imageallowrules │ │ │ │ │ ├── storage.go │ │ │ │ │ ├── translator.go │ │ │ │ │ └── validator.go │ │ │ │ ├── images │ │ │ │ │ ├── detail.go │ │ │ │ │ ├── pull.go │ │ │ │ │ ├── push.go │ │ │ │ │ ├── sign.go │ │ │ │ │ ├── storage.go │ │ │ │ │ ├── storage_test.go │ │ │ │ │ ├── strategy.go │ │ │ │ │ ├── tag.go │ │ │ │ │ ├── translator.go │ │ │ │ │ └── verify.go │ │ │ │ ├── info │ │ │ │ │ ├── storage.go │ │ │ │ │ └── strategy.go │ │ │ │ ├── jobs │ │ │ │ │ ├── restart.go │ │ │ │ │ ├── storage.go │ │ │ │ │ └── strategy.go │ │ │ │ ├── projects │ │ │ │ │ ├── storage.go │ │ │ │ │ ├── translator.go │ │ │ │ │ ├── validator.go │ │ │ │ │ └── validator_test.go │ │ │ │ ├── regions │ │ │ │ │ ├── storage.go │ │ │ │ │ └── strategy.go │ │ │ │ ├── secrets │ │ │ │ │ ├── expose.go │ │ │ │ │ ├── storage.go │ │ │ │ │ ├── strategy.go │ │ │ │ │ ├── translator.go │ │ │ │ │ └── validator.go │ │ │ │ └── volumes │ │ │ │ │ ├── class │ │ │ │ │ ├── storage.go │ │ │ │ │ └── strategy.go │ │ │ │ │ ├── policyswitcher.go │ │ │ │ │ ├── storage.go │ │ │ │ │ └── translator.go │ │ │ └── admin │ │ │ │ ├── apigroup.go │ │ │ │ ├── computeclass │ │ │ │ ├── storage.go │ │ │ │ ├── strategy.go │ │ │ │ ├── translator.go │ │ │ │ └── validator.go │ │ │ │ ├── imageroleauthorizations │ │ │ │ ├── storage.go │ │ │ │ ├── translator.go │ │ │ │ └── validator.go │ │ │ │ ├── quotarequest │ │ │ │ ├── storage.go │ │ │ │ └── translator.go │ │ │ │ └── volumeclass │ │ │ │ ├── storage.go │ │ │ │ ├── translator.go │ │ │ │ └── validator.go │ │ ├── middleware │ │ │ └── middleware.go │ │ └── registry.go │ └── server.go ├── services │ ├── acorn.go │ ├── acorn_test.go │ └── services.go ├── streams │ └── io.go ├── system │ ├── constants.go │ ├── image.go │ ├── k8s.go │ └── resources.go ├── tables │ ├── converter.go │ └── tables.go ├── tags │ └── tags.go ├── term │ ├── quiet.go │ └── spinner.go ├── tolerations │ └── tolerations.go ├── uninstall │ └── uninstall.go ├── vcs │ ├── vcs.go │ └── vcs_test.go ├── version │ └── version.go ├── volume │ ├── testdata │ │ ├── default-storage-class │ │ │ ├── expected.golden │ │ │ └── input.yaml │ │ ├── ephemeral-manually-managed │ │ │ ├── expected.golden │ │ │ └── input.yaml │ │ ├── ephemeral-user-changed │ │ │ ├── existing.yaml │ │ │ ├── expected.golden │ │ │ └── input.yaml │ │ ├── ephemeral │ │ │ ├── expected.golden │ │ │ └── input.yaml │ │ ├── manually-managed │ │ │ ├── existing.yaml │ │ │ ├── expected.golden │ │ │ └── input.yaml │ │ └── user-changed-volume-class │ │ │ ├── existing.yaml │ │ │ ├── expected.golden │ │ │ └── input.yaml │ ├── volume.go │ └── volume_test.go └── wait │ └── wait.go ├── scripts ├── 40-copy-resolv-nameserver.sh ├── acorn-busybox-init ├── acorn-helper-init ├── acorn-job-get-output ├── acorn-job-helper-init ├── acorn-job-helper-shutdown ├── ds-containerd-config-path-entry ├── k3s-config.yaml └── setup-binfmt └── tools ├── gendocs └── main.go ├── header.txt ├── notarize └── vendor.go /.ackrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/.ackrc -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sh text eol=lf -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/main-release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/.github/workflows/main-release.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.github/workflows/validate-docs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/.github/workflows/validate-docs.yaml -------------------------------------------------------------------------------- /.github/workflows/validate-renovate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/.github/workflows/validate-renovate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/SECURITY.md -------------------------------------------------------------------------------- /channels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/channels.yaml -------------------------------------------------------------------------------- /cosign.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/cosign.pub -------------------------------------------------------------------------------- /docs/.ackrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/.ackrc -------------------------------------------------------------------------------- /docs/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/.dockerignore -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/.nvmrc: -------------------------------------------------------------------------------- 1 | 16.18.1 2 | -------------------------------------------------------------------------------- /docs/Acornfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/Acornfile -------------------------------------------------------------------------------- /docs/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/Dockerfile -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/babel.config.js -------------------------------------------------------------------------------- /docs/diagram-source/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/diagram-source/README.md -------------------------------------------------------------------------------- /docs/diagram-source/architecture.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/diagram-source/architecture.drawio -------------------------------------------------------------------------------- /docs/docs/10-home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/docs/10-home.md -------------------------------------------------------------------------------- /docs/docs/100-reference/01-command-line/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: 'Command Line' 2 | -------------------------------------------------------------------------------- /docs/docs/100-reference/01-command-line/acorn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/docs/100-reference/01-command-line/acorn.md -------------------------------------------------------------------------------- /docs/docs/100-reference/01-command-line/acorn_all.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/docs/100-reference/01-command-line/acorn_all.md -------------------------------------------------------------------------------- /docs/docs/100-reference/01-command-line/acorn_app.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/docs/100-reference/01-command-line/acorn_app.mdx -------------------------------------------------------------------------------- /docs/docs/100-reference/01-command-line/acorn_copy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/docs/100-reference/01-command-line/acorn_copy.md -------------------------------------------------------------------------------- /docs/docs/100-reference/01-command-line/acorn_dev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/docs/100-reference/01-command-line/acorn_dev.md -------------------------------------------------------------------------------- /docs/docs/100-reference/01-command-line/acorn_edit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/docs/100-reference/01-command-line/acorn_edit.md -------------------------------------------------------------------------------- /docs/docs/100-reference/01-command-line/acorn_exec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/docs/100-reference/01-command-line/acorn_exec.md -------------------------------------------------------------------------------- /docs/docs/100-reference/01-command-line/acorn_fmt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/docs/100-reference/01-command-line/acorn_fmt.md -------------------------------------------------------------------------------- /docs/docs/100-reference/01-command-line/acorn_info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/docs/100-reference/01-command-line/acorn_info.md -------------------------------------------------------------------------------- /docs/docs/100-reference/01-command-line/acorn_job.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/docs/100-reference/01-command-line/acorn_job.md -------------------------------------------------------------------------------- /docs/docs/100-reference/01-command-line/acorn_logs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/docs/100-reference/01-command-line/acorn_logs.md -------------------------------------------------------------------------------- /docs/docs/100-reference/01-command-line/acorn_ps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/docs/100-reference/01-command-line/acorn_ps.md -------------------------------------------------------------------------------- /docs/docs/100-reference/01-command-line/acorn_pull.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/docs/100-reference/01-command-line/acorn_pull.md -------------------------------------------------------------------------------- /docs/docs/100-reference/01-command-line/acorn_push.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/docs/100-reference/01-command-line/acorn_push.md -------------------------------------------------------------------------------- /docs/docs/100-reference/01-command-line/acorn_rm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/docs/100-reference/01-command-line/acorn_rm.md -------------------------------------------------------------------------------- /docs/docs/100-reference/01-command-line/acorn_run.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/docs/100-reference/01-command-line/acorn_run.md -------------------------------------------------------------------------------- /docs/docs/100-reference/01-command-line/acorn_stop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/docs/100-reference/01-command-line/acorn_stop.md -------------------------------------------------------------------------------- /docs/docs/100-reference/01-command-line/acorn_tag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/docs/100-reference/01-command-line/acorn_tag.md -------------------------------------------------------------------------------- /docs/docs/100-reference/01-command-line/acorn_wait.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/docs/100-reference/01-command-line/acorn_wait.md -------------------------------------------------------------------------------- /docs/docs/100-reference/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: Reference 2 | -------------------------------------------------------------------------------- /docs/docs/110-faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/docs/110-faq.md -------------------------------------------------------------------------------- /docs/docs/30-installation/01-installing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/docs/30-installation/01-installing.md -------------------------------------------------------------------------------- /docs/docs/30-installation/02-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/docs/30-installation/02-options.md -------------------------------------------------------------------------------- /docs/docs/30-installation/03-upgrading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/docs/30-installation/03-upgrading.md -------------------------------------------------------------------------------- /docs/docs/30-installation/100-uninstalling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/docs/30-installation/100-uninstalling.md -------------------------------------------------------------------------------- /docs/docs/30-installation/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: Installation 2 | -------------------------------------------------------------------------------- /docs/docs/37-getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/docs/37-getting-started.md -------------------------------------------------------------------------------- /docs/docs/40-admin/02-volumeclasses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/docs/40-admin/02-volumeclasses.md -------------------------------------------------------------------------------- /docs/docs/40-admin/03-computeclasses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/docs/40-admin/03-computeclasses.md -------------------------------------------------------------------------------- /docs/docs/40-admin/80-alpha-image-allow-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/docs/40-admin/80-alpha-image-allow-rules.md -------------------------------------------------------------------------------- /docs/docs/60-architecture/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: Architecture 2 | -------------------------------------------------------------------------------- /docs/docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/docusaurus.config.js -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/sidebars.js -------------------------------------------------------------------------------- /docs/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/src/css/custom.css -------------------------------------------------------------------------------- /docs/src/theme/prism-include-languages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/src/theme/prism-include-languages.js -------------------------------------------------------------------------------- /docs/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/static/diagrams/architecture.drawio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/static/diagrams/architecture.drawio.svg -------------------------------------------------------------------------------- /docs/static/img/acorn.workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/static/img/acorn.workflow.png -------------------------------------------------------------------------------- /docs/static/img/build_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/static/img/build_output.png -------------------------------------------------------------------------------- /docs/static/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/static/img/favicon.png -------------------------------------------------------------------------------- /docs/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/static/img/logo.svg -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.10/10-home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/versioned_docs/version-0.10/10-home.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.10/100-reference/01-command-line/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: 'Command Line' 2 | -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.10/100-reference/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: Reference 2 | -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.10/110-faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/versioned_docs/version-0.10/110-faq.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.10/30-installation/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: Installation 2 | -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.10/60-architecture/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: Architecture 2 | -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.3/10-home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/versioned_docs/version-0.3/10-home.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.3/100-reference/01-command-line/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: 'Command Line' 2 | -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.3/100-reference/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: Reference 2 | -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.3/110-faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/versioned_docs/version-0.3/110-faq.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.3/30-installation/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: Installation 2 | -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.3/37-getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/versioned_docs/version-0.3/37-getting-started.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.3/38-authoring/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: Authoring Acornfiles 2 | -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.3/39-publishing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/versioned_docs/version-0.3/39-publishing.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.3/50-running/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: Running Acorn Apps 2 | -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.3/55-integrations/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: Integrations 2 | -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.3/60-architecture/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: Architecture 2 | -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.4/10-home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/versioned_docs/version-0.4/10-home.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.4/100-reference/01-command-line/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: 'Command Line' 2 | -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.4/100-reference/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: Reference 2 | -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.4/110-faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/versioned_docs/version-0.4/110-faq.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.4/30-installation/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: Installation 2 | -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.4/37-getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/versioned_docs/version-0.4/37-getting-started.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.4/38-authoring/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: Authoring Acornfiles 2 | -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.4/39-publishing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/versioned_docs/version-0.4/39-publishing.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.4/50-running/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: Running Acorn Apps 2 | -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.4/55-integrations/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: Integrations 2 | -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.4/60-architecture/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: Architecture 2 | -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5/10-home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/versioned_docs/version-0.5/10-home.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5/100-reference/01-command-line/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: 'Command Line' 2 | -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5/100-reference/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: Reference 2 | -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5/110-faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/versioned_docs/version-0.5/110-faq.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5/30-installation/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: Installation 2 | -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5/37-getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/versioned_docs/version-0.5/37-getting-started.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5/38-authoring/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: Authoring Acornfiles 2 | -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5/39-publishing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/versioned_docs/version-0.5/39-publishing.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5/50-running/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: Running Acorn Apps 2 | -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5/55-integrations/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: Integrations 2 | -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5/60-architecture/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: Architecture 2 | -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.6/10-home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/versioned_docs/version-0.6/10-home.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.6/100-reference/01-command-line/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: 'Command Line' 2 | -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.6/100-reference/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: Reference 2 | -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.6/110-faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/versioned_docs/version-0.6/110-faq.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.6/30-installation/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: Installation 2 | -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.6/37-getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/versioned_docs/version-0.6/37-getting-started.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.6/38-authoring/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: Authoring Acornfiles 2 | -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.6/39-publishing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/versioned_docs/version-0.6/39-publishing.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.6/50-running/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: Running Acorn Apps 2 | -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.6/55-integrations/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: Integrations 2 | -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.6/60-architecture/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: Architecture 2 | -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.7/10-home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/versioned_docs/version-0.7/10-home.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.7/100-reference/01-command-line/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: 'Command Line' 2 | -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.7/100-reference/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: Reference 2 | -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.7/110-faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/versioned_docs/version-0.7/110-faq.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.7/30-installation/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: Installation 2 | -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.7/37-getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/versioned_docs/version-0.7/37-getting-started.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.7/38-authoring/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: Authoring Acornfiles 2 | -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.7/39-publishing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/versioned_docs/version-0.7/39-publishing.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.7/50-running/70-dev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/versioned_docs/version-0.7/50-running/70-dev.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.7/50-running/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: Running Acorn Apps 2 | -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.7/55-integrations/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: Integrations 2 | -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.7/60-architecture/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: Architecture 2 | -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.8/10-home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/versioned_docs/version-0.8/10-home.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.8/100-reference/01-command-line/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: 'Command Line' 2 | -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.8/100-reference/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: Reference 2 | -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.8/110-faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/versioned_docs/version-0.8/110-faq.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.8/30-installation/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: Installation 2 | -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.8/37-getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/versioned_docs/version-0.8/37-getting-started.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.8/38-authoring/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: Authoring Acornfiles 2 | -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.8/39-publishing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/versioned_docs/version-0.8/39-publishing.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.8/50-running/70-dev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/versioned_docs/version-0.8/50-running/70-dev.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.8/50-running/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: Running Acorn Apps 2 | -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.8/55-integrations/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: Integrations 2 | -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.8/60-architecture/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: Architecture 2 | -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.9/10-home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/versioned_docs/version-0.9/10-home.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.9/100-reference/01-command-line/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: 'Command Line' 2 | -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.9/100-reference/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: Reference 2 | -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.9/110-faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/versioned_docs/version-0.9/110-faq.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.9/30-installation/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: Installation 2 | -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.9/37-getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/versioned_docs/version-0.9/37-getting-started.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.9/38-authoring/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: Authoring Acornfiles 2 | -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.9/39-publishing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/versioned_docs/version-0.9/39-publishing.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.9/50-running/70-dev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/versioned_docs/version-0.9/50-running/70-dev.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.9/50-running/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: Running Acorn Apps 2 | -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.9/55-integrations/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: Integrations 2 | -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.9/60-architecture/_category_.yaml: -------------------------------------------------------------------------------- 1 | label: Architecture 2 | -------------------------------------------------------------------------------- /docs/versioned_sidebars/version-0.10-sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/versioned_sidebars/version-0.10-sidebars.json -------------------------------------------------------------------------------- /docs/versioned_sidebars/version-0.3-sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/versioned_sidebars/version-0.3-sidebars.json -------------------------------------------------------------------------------- /docs/versioned_sidebars/version-0.4-sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/versioned_sidebars/version-0.4-sidebars.json -------------------------------------------------------------------------------- /docs/versioned_sidebars/version-0.5-sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/versioned_sidebars/version-0.5-sidebars.json -------------------------------------------------------------------------------- /docs/versioned_sidebars/version-0.6-sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/versioned_sidebars/version-0.6-sidebars.json -------------------------------------------------------------------------------- /docs/versioned_sidebars/version-0.7-sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/versioned_sidebars/version-0.7-sidebars.json -------------------------------------------------------------------------------- /docs/versioned_sidebars/version-0.8-sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/versioned_sidebars/version-0.8-sidebars.json -------------------------------------------------------------------------------- /docs/versioned_sidebars/version-0.9-sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/versioned_sidebars/version-0.9-sidebars.json -------------------------------------------------------------------------------- /docs/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/versions.json -------------------------------------------------------------------------------- /docs/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/docs/yarn.lock -------------------------------------------------------------------------------- /generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/generate.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/go.sum -------------------------------------------------------------------------------- /integration/build/build_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/build/build_test.go -------------------------------------------------------------------------------- /integration/build/testdata/build-default/Acornfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/build/testdata/build-default/Acornfile -------------------------------------------------------------------------------- /integration/build/testdata/contextdir/Acornfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/build/testdata/contextdir/Acornfile -------------------------------------------------------------------------------- /integration/build/testdata/contextdir/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/build/testdata/contextdir/Dockerfile -------------------------------------------------------------------------------- /integration/build/testdata/contextdir/files/index.html: -------------------------------------------------------------------------------- 1 |

HI

-------------------------------------------------------------------------------- /integration/build/testdata/dev/Acornfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/build/testdata/dev/Acornfile -------------------------------------------------------------------------------- /integration/build/testdata/fail/Acornfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/build/testdata/fail/Acornfile -------------------------------------------------------------------------------- /integration/build/testdata/fail/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM doesntexist -------------------------------------------------------------------------------- /integration/build/testdata/jobs/Acornfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/build/testdata/jobs/Acornfile -------------------------------------------------------------------------------- /integration/build/testdata/jobs/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM ghcr.io/acorn-io/images-mirror/busybox:latest -------------------------------------------------------------------------------- /integration/build/testdata/jobs/Dockerfile.sidecar: -------------------------------------------------------------------------------- 1 | FROM ghcr.io/acorn-io/images-mirror/busybox:latest 2 | CMD ["sidecar"] -------------------------------------------------------------------------------- /integration/build/testdata/multiarch/Acornfile: -------------------------------------------------------------------------------- 1 | containers: web: build: "." -------------------------------------------------------------------------------- /integration/build/testdata/multiarch/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM ghcr.io/acorn-io/images-mirror/alpine:latest 2 | RUN apk -U add bash -------------------------------------------------------------------------------- /integration/build/testdata/multicontextdir/Acornfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/build/testdata/multicontextdir/Acornfile -------------------------------------------------------------------------------- /integration/build/testdata/multicontextdir/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/build/testdata/multicontextdir/Dockerfile -------------------------------------------------------------------------------- /integration/build/testdata/multicontextdir/files/subdir/token: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /integration/build/testdata/nested/nested.Acornfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/build/testdata/nested/nested.Acornfile -------------------------------------------------------------------------------- /integration/build/testdata/nested/nginx.Acornfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/build/testdata/nested/nginx.Acornfile -------------------------------------------------------------------------------- /integration/build/testdata/no-image-build/Acornfile: -------------------------------------------------------------------------------- 1 | containers: web: {} -------------------------------------------------------------------------------- /integration/build/testdata/sidecar/Acornfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/build/testdata/sidecar/Acornfile -------------------------------------------------------------------------------- /integration/build/testdata/sidecar/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM ghcr.io/acorn-io/images-mirror/busybox:latest -------------------------------------------------------------------------------- /integration/build/testdata/sidecar/Dockerfile.sidecar: -------------------------------------------------------------------------------- 1 | FROM ghcr.io/acorn-io/images-mirror/busybox:latest 2 | CMD ["sidecar"] -------------------------------------------------------------------------------- /integration/build/testdata/similar/one/Acornfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/build/testdata/similar/one/Acornfile -------------------------------------------------------------------------------- /integration/build/testdata/similar/two/Acornfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/build/testdata/similar/two/Acornfile -------------------------------------------------------------------------------- /integration/build/testdata/simple-two/Acornfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/build/testdata/simple-two/Acornfile -------------------------------------------------------------------------------- /integration/build/testdata/simple-two/one/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM ghcr.io/acorn-io/images-mirror/busybox:latest 2 | COPY data.txt / -------------------------------------------------------------------------------- /integration/build/testdata/simple-two/one/data.txt: -------------------------------------------------------------------------------- 1 | one -------------------------------------------------------------------------------- /integration/build/testdata/simple-two/two/subdir/Dockerfile.txt: -------------------------------------------------------------------------------- 1 | FROM ghcr.io/acorn-io/images-mirror/busybox:latest 2 | COPY data.txt / -------------------------------------------------------------------------------- /integration/build/testdata/simple-two/two/subdir/subdir2/data.txt: -------------------------------------------------------------------------------- 1 | two -------------------------------------------------------------------------------- /integration/build/testdata/simple/Acornfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/build/testdata/simple/Acornfile -------------------------------------------------------------------------------- /integration/build/testdata/simple/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM ghcr.io/acorn-io/images-mirror/busybox:latest -------------------------------------------------------------------------------- /integration/build/testdata/target/Acornfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/build/testdata/target/Acornfile -------------------------------------------------------------------------------- /integration/build/testdata/target/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/build/testdata/target/Dockerfile -------------------------------------------------------------------------------- /integration/client/apps/apps_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/client/apps/apps_test.go -------------------------------------------------------------------------------- /integration/client/apps/update_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/client/apps/update_test.go -------------------------------------------------------------------------------- /integration/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/client/client.go -------------------------------------------------------------------------------- /integration/client/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/client/client_test.go -------------------------------------------------------------------------------- /integration/client/computeclass/computeclass_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/client/computeclass/computeclass_test.go -------------------------------------------------------------------------------- /integration/client/containers/containers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/client/containers/containers_test.go -------------------------------------------------------------------------------- /integration/client/credentials/credentials_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/client/credentials/credentials_test.go -------------------------------------------------------------------------------- /integration/client/depends_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/client/depends_test.go -------------------------------------------------------------------------------- /integration/client/imagerules/imageallowrules_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/client/imagerules/imageallowrules_test.go -------------------------------------------------------------------------------- /integration/client/imagerules/signature_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/client/imagerules/signature_test.go -------------------------------------------------------------------------------- /integration/client/imagerules/testdata/cosign.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/client/imagerules/testdata/cosign.key -------------------------------------------------------------------------------- /integration/client/imagerules/testdata/cosign.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/client/imagerules/testdata/cosign.pub -------------------------------------------------------------------------------- /integration/client/imagerules/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/client/imagerules/util.go -------------------------------------------------------------------------------- /integration/client/images/images_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/client/images/images_test.go -------------------------------------------------------------------------------- /integration/client/info/info_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/client/info/info_test.go -------------------------------------------------------------------------------- /integration/client/jobs/jobs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/client/jobs/jobs_test.go -------------------------------------------------------------------------------- /integration/client/secrets/secrets_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/client/secrets/secrets_test.go -------------------------------------------------------------------------------- /integration/client/testdata/dependson/Acornfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/client/testdata/dependson/Acornfile -------------------------------------------------------------------------------- /integration/client/testdata/dependson/Acornfile2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/client/testdata/dependson/Acornfile2 -------------------------------------------------------------------------------- /integration/client/testdata/job/Acornfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/client/testdata/job/Acornfile -------------------------------------------------------------------------------- /integration/client/testdata/nginx/Acornfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/client/testdata/nginx/Acornfile -------------------------------------------------------------------------------- /integration/client/testdata/nginx2/Acornfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/client/testdata/nginx2/Acornfile -------------------------------------------------------------------------------- /integration/client/testdata/sidecar/Acornfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/client/testdata/sidecar/Acornfile -------------------------------------------------------------------------------- /integration/client/volumes/volumeclasses_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/client/volumes/volumeclasses_test.go -------------------------------------------------------------------------------- /integration/client/volumes/volumes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/client/volumes/volumes_test.go -------------------------------------------------------------------------------- /integration/dev/dev_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/dev/dev_test.go -------------------------------------------------------------------------------- /integration/events/events_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/events/events_test.go -------------------------------------------------------------------------------- /integration/events/testdata/simple/Acornfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/events/testdata/simple/Acornfile -------------------------------------------------------------------------------- /integration/events/testdata/simple/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM ghcr.io/acorn-io/images-mirror/nginx:latest -------------------------------------------------------------------------------- /integration/helper/assertions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/helper/assertions.go -------------------------------------------------------------------------------- /integration/helper/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/helper/config.go -------------------------------------------------------------------------------- /integration/helper/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/helper/controller.go -------------------------------------------------------------------------------- /integration/helper/ctx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/helper/ctx.go -------------------------------------------------------------------------------- /integration/helper/must.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/helper/must.go -------------------------------------------------------------------------------- /integration/helper/project.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/helper/project.go -------------------------------------------------------------------------------- /integration/helper/secrets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/helper/secrets.go -------------------------------------------------------------------------------- /integration/helper/wait.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/helper/wait.go -------------------------------------------------------------------------------- /integration/log/log_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/log/log_test.go -------------------------------------------------------------------------------- /integration/log/testdata/Acornfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/log/testdata/Acornfile -------------------------------------------------------------------------------- /integration/log/testdata/Acornfile_hanging: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/log/testdata/Acornfile_hanging -------------------------------------------------------------------------------- /integration/projectconfig/projectconfig_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/projectconfig/projectconfig_test.go -------------------------------------------------------------------------------- /integration/run/run_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/run/run_test.go -------------------------------------------------------------------------------- /integration/run/testdata/cluster-volume-class-with-values/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM ghcr.io/acorn-io/images-mirror/nginx:latest -------------------------------------------------------------------------------- /integration/run/testdata/cluster-volume-class/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM ghcr.io/acorn-io/images-mirror/nginx:latest -------------------------------------------------------------------------------- /integration/run/testdata/computeclass/Acornfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/run/testdata/computeclass/Acornfile -------------------------------------------------------------------------------- /integration/run/testdata/computeclass/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM ghcr.io/acorn-io/images-mirror/nginx:latest -------------------------------------------------------------------------------- /integration/run/testdata/jobfinalize/Acornfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/run/testdata/jobfinalize/Acornfile -------------------------------------------------------------------------------- /integration/run/testdata/jobfinalize/scripts/run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -x -e 3 | [ "$ACORN_EVENT" = "delete" ] 4 | -------------------------------------------------------------------------------- /integration/run/testdata/named/Acornfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/run/testdata/named/Acornfile -------------------------------------------------------------------------------- /integration/run/testdata/networkpolicy/Acornfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/run/testdata/networkpolicy/Acornfile -------------------------------------------------------------------------------- /integration/run/testdata/networkpolicy/curl.Acornfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/run/testdata/networkpolicy/curl.Acornfile -------------------------------------------------------------------------------- /integration/run/testdata/no-class-with-values/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM ghcr.io/acorn-io/images-mirror/nginx:latest -------------------------------------------------------------------------------- /integration/run/testdata/params/Acornfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/run/testdata/params/Acornfile -------------------------------------------------------------------------------- /integration/run/testdata/scaled/Acornfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/run/testdata/scaled/Acornfile -------------------------------------------------------------------------------- /integration/run/testdata/scaled/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM ghcr.io/acorn-io/images-mirror/nginx:latest -------------------------------------------------------------------------------- /integration/run/testdata/serviceconsumer/Acornfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/run/testdata/serviceconsumer/Acornfile -------------------------------------------------------------------------------- /integration/run/testdata/simple/Acornfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/run/testdata/simple/Acornfile -------------------------------------------------------------------------------- /integration/run/testdata/simple/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM ghcr.io/acorn-io/images-mirror/nginx:latest -------------------------------------------------------------------------------- /integration/run/testdata/volume-bad-class/Acornfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/run/testdata/volume-bad-class/Acornfile -------------------------------------------------------------------------------- /integration/run/testdata/volume-bad-class/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM ghcr.io/acorn-io/images-mirror/nginx:latest -------------------------------------------------------------------------------- /integration/run/testdata/volume-custom-class/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM ghcr.io/acorn-io/images-mirror/nginx:latest -------------------------------------------------------------------------------- /integration/run/testdata/volume/Acornfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/run/testdata/volume/Acornfile -------------------------------------------------------------------------------- /integration/run/testdata/volume/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM ghcr.io/acorn-io/images-mirror/nginx:latest -------------------------------------------------------------------------------- /integration/run/testdata/volume/files/a.txt: -------------------------------------------------------------------------------- 1 | hi -------------------------------------------------------------------------------- /integration/secrets/secret_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/secrets/secret_test.go -------------------------------------------------------------------------------- /integration/secrets/testdata/encryption/Acornfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/secrets/testdata/encryption/Acornfile -------------------------------------------------------------------------------- /integration/secrets/testdata/generated-json/Acornfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/secrets/testdata/generated-json/Acornfile -------------------------------------------------------------------------------- /integration/secrets/testdata/generated/Acornfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/secrets/testdata/generated/Acornfile -------------------------------------------------------------------------------- /integration/secrets/testdata/issue-552/Acornfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/secrets/testdata/issue-552/Acornfile -------------------------------------------------------------------------------- /integration/services/services_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/services/services_test.go -------------------------------------------------------------------------------- /integration/services/testdata/ignorecleanup/Acornfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/services/testdata/ignorecleanup/Acornfile -------------------------------------------------------------------------------- /integration/services/testdata/info/Acornfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/services/testdata/info/Acornfile -------------------------------------------------------------------------------- /integration/services/testdata/info/nested.acorn: -------------------------------------------------------------------------------- 1 | info: "nested message" 2 | -------------------------------------------------------------------------------- /integration/services/testdata/main/Acornfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/services/testdata/main/Acornfile -------------------------------------------------------------------------------- /integration/services/testdata/main/service/Acornfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/integration/services/testdata/main/service/Acornfile -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/main.go -------------------------------------------------------------------------------- /pkg/apis/admin.acorn.io/group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/admin.acorn.io/group.go -------------------------------------------------------------------------------- /pkg/apis/admin.acorn.io/v1/computeclasses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/admin.acorn.io/v1/computeclasses.go -------------------------------------------------------------------------------- /pkg/apis/admin.acorn.io/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/admin.acorn.io/v1/doc.go -------------------------------------------------------------------------------- /pkg/apis/admin.acorn.io/v1/imageroleauthorizations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/admin.acorn.io/v1/imageroleauthorizations.go -------------------------------------------------------------------------------- /pkg/apis/admin.acorn.io/v1/quotarequests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/admin.acorn.io/v1/quotarequests.go -------------------------------------------------------------------------------- /pkg/apis/admin.acorn.io/v1/scheme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/admin.acorn.io/v1/scheme.go -------------------------------------------------------------------------------- /pkg/apis/admin.acorn.io/v1/volumes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/admin.acorn.io/v1/volumes.go -------------------------------------------------------------------------------- /pkg/apis/admin.acorn.io/v1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/admin.acorn.io/v1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /pkg/apis/api.acorn.io/group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/api.acorn.io/group.go -------------------------------------------------------------------------------- /pkg/apis/api.acorn.io/v1/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/api.acorn.io/v1/app.go -------------------------------------------------------------------------------- /pkg/apis/api.acorn.io/v1/computeclass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/api.acorn.io/v1/computeclass.go -------------------------------------------------------------------------------- /pkg/apis/api.acorn.io/v1/conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/api.acorn.io/v1/conversion.go -------------------------------------------------------------------------------- /pkg/apis/api.acorn.io/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/api.acorn.io/v1/doc.go -------------------------------------------------------------------------------- /pkg/apis/api.acorn.io/v1/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/api.acorn.io/v1/event.go -------------------------------------------------------------------------------- /pkg/apis/api.acorn.io/v1/region.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/api.acorn.io/v1/region.go -------------------------------------------------------------------------------- /pkg/apis/api.acorn.io/v1/scheme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/api.acorn.io/v1/scheme.go -------------------------------------------------------------------------------- /pkg/apis/api.acorn.io/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/api.acorn.io/v1/types.go -------------------------------------------------------------------------------- /pkg/apis/api.acorn.io/v1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/api.acorn.io/v1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /pkg/apis/internal.acorn.io/group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/internal.acorn.io/group.go -------------------------------------------------------------------------------- /pkg/apis/internal.acorn.io/v1/appimage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/internal.acorn.io/v1/appimage.go -------------------------------------------------------------------------------- /pkg/apis/internal.acorn.io/v1/appinstance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/internal.acorn.io/v1/appinstance.go -------------------------------------------------------------------------------- /pkg/apis/internal.acorn.io/v1/appspec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/internal.acorn.io/v1/appspec.go -------------------------------------------------------------------------------- /pkg/apis/internal.acorn.io/v1/appspec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/internal.acorn.io/v1/appspec_test.go -------------------------------------------------------------------------------- /pkg/apis/internal.acorn.io/v1/appstatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/internal.acorn.io/v1/appstatus.go -------------------------------------------------------------------------------- /pkg/apis/internal.acorn.io/v1/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/internal.acorn.io/v1/build.go -------------------------------------------------------------------------------- /pkg/apis/internal.acorn.io/v1/computeclass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/internal.acorn.io/v1/computeclass.go -------------------------------------------------------------------------------- /pkg/apis/internal.acorn.io/v1/conditions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/internal.acorn.io/v1/conditions.go -------------------------------------------------------------------------------- /pkg/apis/internal.acorn.io/v1/devsession.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/internal.acorn.io/v1/devsession.go -------------------------------------------------------------------------------- /pkg/apis/internal.acorn.io/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/internal.acorn.io/v1/doc.go -------------------------------------------------------------------------------- /pkg/apis/internal.acorn.io/v1/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/internal.acorn.io/v1/event.go -------------------------------------------------------------------------------- /pkg/apis/internal.acorn.io/v1/imageallowrules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/internal.acorn.io/v1/imageallowrules.go -------------------------------------------------------------------------------- /pkg/apis/internal.acorn.io/v1/imageinstance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/internal.acorn.io/v1/imageinstance.go -------------------------------------------------------------------------------- /pkg/apis/internal.acorn.io/v1/imageselector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/internal.acorn.io/v1/imageselector.go -------------------------------------------------------------------------------- /pkg/apis/internal.acorn.io/v1/labelsannotations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/internal.acorn.io/v1/labelsannotations.go -------------------------------------------------------------------------------- /pkg/apis/internal.acorn.io/v1/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/internal.acorn.io/v1/map.go -------------------------------------------------------------------------------- /pkg/apis/internal.acorn.io/v1/map_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/internal.acorn.io/v1/map_test.go -------------------------------------------------------------------------------- /pkg/apis/internal.acorn.io/v1/memory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/internal.acorn.io/v1/memory.go -------------------------------------------------------------------------------- /pkg/apis/internal.acorn.io/v1/memory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/internal.acorn.io/v1/memory_test.go -------------------------------------------------------------------------------- /pkg/apis/internal.acorn.io/v1/ports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/internal.acorn.io/v1/ports.go -------------------------------------------------------------------------------- /pkg/apis/internal.acorn.io/v1/ports_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/internal.acorn.io/v1/ports_test.go -------------------------------------------------------------------------------- /pkg/apis/internal.acorn.io/v1/projectinstance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/internal.acorn.io/v1/projectinstance.go -------------------------------------------------------------------------------- /pkg/apis/internal.acorn.io/v1/schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/internal.acorn.io/v1/schema.go -------------------------------------------------------------------------------- /pkg/apis/internal.acorn.io/v1/scheme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/internal.acorn.io/v1/scheme.go -------------------------------------------------------------------------------- /pkg/apis/internal.acorn.io/v1/secrets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/internal.acorn.io/v1/secrets.go -------------------------------------------------------------------------------- /pkg/apis/internal.acorn.io/v1/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/internal.acorn.io/v1/service.go -------------------------------------------------------------------------------- /pkg/apis/internal.acorn.io/v1/unmarshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/internal.acorn.io/v1/unmarshal.go -------------------------------------------------------------------------------- /pkg/apis/internal.acorn.io/v1/unmarshal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/internal.acorn.io/v1/unmarshal_test.go -------------------------------------------------------------------------------- /pkg/apis/internal.acorn.io/v1/volumes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/internal.acorn.io/v1/volumes.go -------------------------------------------------------------------------------- /pkg/apis/internal.admin.acorn.io/group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/internal.admin.acorn.io/group.go -------------------------------------------------------------------------------- /pkg/apis/internal.admin.acorn.io/v1/baseresources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/internal.admin.acorn.io/v1/baseresources.go -------------------------------------------------------------------------------- /pkg/apis/internal.admin.acorn.io/v1/computeclasses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/internal.admin.acorn.io/v1/computeclasses.go -------------------------------------------------------------------------------- /pkg/apis/internal.admin.acorn.io/v1/default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/internal.admin.acorn.io/v1/default.go -------------------------------------------------------------------------------- /pkg/apis/internal.admin.acorn.io/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/internal.admin.acorn.io/v1/doc.go -------------------------------------------------------------------------------- /pkg/apis/internal.admin.acorn.io/v1/quotarequests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/internal.admin.acorn.io/v1/quotarequests.go -------------------------------------------------------------------------------- /pkg/apis/internal.admin.acorn.io/v1/resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/internal.admin.acorn.io/v1/resources.go -------------------------------------------------------------------------------- /pkg/apis/internal.admin.acorn.io/v1/scheme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/internal.admin.acorn.io/v1/scheme.go -------------------------------------------------------------------------------- /pkg/apis/internal.admin.acorn.io/v1/volumes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/apis/internal.admin.acorn.io/v1/volumes.go -------------------------------------------------------------------------------- /pkg/appdefinition/acornfile-schema.acorn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/appdefinition/acornfile-schema.acorn -------------------------------------------------------------------------------- /pkg/appdefinition/app-default.acorn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/appdefinition/app-default.acorn -------------------------------------------------------------------------------- /pkg/appdefinition/appdefinition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/appdefinition/appdefinition.go -------------------------------------------------------------------------------- /pkg/appdefinition/appdefinition_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/appdefinition/appdefinition_test.go -------------------------------------------------------------------------------- /pkg/appdefinition/lookup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/appdefinition/lookup.go -------------------------------------------------------------------------------- /pkg/appdefinition/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/appdefinition/params.go -------------------------------------------------------------------------------- /pkg/appdefinition/params_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/appdefinition/params_test.go -------------------------------------------------------------------------------- /pkg/appdefinition/schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/appdefinition/schema.go -------------------------------------------------------------------------------- /pkg/autoupgrade/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/autoupgrade/client.go -------------------------------------------------------------------------------- /pkg/autoupgrade/daemon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/autoupgrade/daemon.go -------------------------------------------------------------------------------- /pkg/autoupgrade/daemon_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/autoupgrade/daemon_test.go -------------------------------------------------------------------------------- /pkg/autoupgrade/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/autoupgrade/tags.go -------------------------------------------------------------------------------- /pkg/autoupgrade/tags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/autoupgrade/tags_test.go -------------------------------------------------------------------------------- /pkg/autoupgrade/validate/check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/autoupgrade/validate/check.go -------------------------------------------------------------------------------- /pkg/awspermissions/awspermissions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/awspermissions/awspermissions.go -------------------------------------------------------------------------------- /pkg/build/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/build/app.go -------------------------------------------------------------------------------- /pkg/build/assemble.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/build/assemble.go -------------------------------------------------------------------------------- /pkg/build/authprovider/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/build/authprovider/provider.go -------------------------------------------------------------------------------- /pkg/build/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/build/build.go -------------------------------------------------------------------------------- /pkg/build/build_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/build/build_test.go -------------------------------------------------------------------------------- /pkg/build/buildkit/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/build/buildkit/build.go -------------------------------------------------------------------------------- /pkg/build/buildkit/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/build/buildkit/client.go -------------------------------------------------------------------------------- /pkg/build/depot/depot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/build/depot/depot.go -------------------------------------------------------------------------------- /pkg/build/platforms.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/build/platforms.go -------------------------------------------------------------------------------- /pkg/build/remotekeychain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/build/remotekeychain.go -------------------------------------------------------------------------------- /pkg/buildclient/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/buildclient/client.go -------------------------------------------------------------------------------- /pkg/buildclient/filesync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/buildclient/filesync.go -------------------------------------------------------------------------------- /pkg/buildclient/filesyncclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/buildclient/filesyncclient.go -------------------------------------------------------------------------------- /pkg/buildclient/messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/buildclient/messages.go -------------------------------------------------------------------------------- /pkg/buildclient/progress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/buildclient/progress.go -------------------------------------------------------------------------------- /pkg/buildserver/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/buildserver/delete.go -------------------------------------------------------------------------------- /pkg/buildserver/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/buildserver/keys.go -------------------------------------------------------------------------------- /pkg/buildserver/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/buildserver/server.go -------------------------------------------------------------------------------- /pkg/buildserver/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/buildserver/token.go -------------------------------------------------------------------------------- /pkg/channels/channels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/channels/channels.go -------------------------------------------------------------------------------- /pkg/cli/acorn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/acorn.go -------------------------------------------------------------------------------- /pkg/cli/acorn_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/acorn_test.go -------------------------------------------------------------------------------- /pkg/cli/all.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/all.go -------------------------------------------------------------------------------- /pkg/cli/all_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/all_test.go -------------------------------------------------------------------------------- /pkg/cli/apiserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/apiserver.go -------------------------------------------------------------------------------- /pkg/cli/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/auth.go -------------------------------------------------------------------------------- /pkg/cli/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/build.go -------------------------------------------------------------------------------- /pkg/cli/build_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/build_test.go -------------------------------------------------------------------------------- /pkg/cli/builder/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/builder/builder.go -------------------------------------------------------------------------------- /pkg/cli/builder/table/fmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/builder/table/fmt.go -------------------------------------------------------------------------------- /pkg/cli/builder/table/funcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/builder/table/funcs.go -------------------------------------------------------------------------------- /pkg/cli/builder/table/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/builder/table/writer.go -------------------------------------------------------------------------------- /pkg/cli/buildserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/buildserver.go -------------------------------------------------------------------------------- /pkg/cli/check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/check.go -------------------------------------------------------------------------------- /pkg/cli/completion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/completion.go -------------------------------------------------------------------------------- /pkg/cli/completion_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/completion_test.go -------------------------------------------------------------------------------- /pkg/cli/computeclasses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/computeclasses.go -------------------------------------------------------------------------------- /pkg/cli/containers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/containers.go -------------------------------------------------------------------------------- /pkg/cli/containers_rm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/containers_rm.go -------------------------------------------------------------------------------- /pkg/cli/containers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/containers_test.go -------------------------------------------------------------------------------- /pkg/cli/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/context.go -------------------------------------------------------------------------------- /pkg/cli/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/controller.go -------------------------------------------------------------------------------- /pkg/cli/copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/copy.go -------------------------------------------------------------------------------- /pkg/cli/credential.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/credential.go -------------------------------------------------------------------------------- /pkg/cli/credential_login.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/credential_login.go -------------------------------------------------------------------------------- /pkg/cli/credential_logout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/credential_logout.go -------------------------------------------------------------------------------- /pkg/cli/credential_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/credential_test.go -------------------------------------------------------------------------------- /pkg/cli/dashboard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/dashboard.go -------------------------------------------------------------------------------- /pkg/cli/dev.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/dev.go -------------------------------------------------------------------------------- /pkg/cli/dev_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/dev_test.go -------------------------------------------------------------------------------- /pkg/cli/edit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/edit.go -------------------------------------------------------------------------------- /pkg/cli/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/errors.go -------------------------------------------------------------------------------- /pkg/cli/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/events.go -------------------------------------------------------------------------------- /pkg/cli/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/exec.go -------------------------------------------------------------------------------- /pkg/cli/fmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/fmt.go -------------------------------------------------------------------------------- /pkg/cli/images.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/images.go -------------------------------------------------------------------------------- /pkg/cli/images_detail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/images_detail.go -------------------------------------------------------------------------------- /pkg/cli/images_rm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/images_rm.go -------------------------------------------------------------------------------- /pkg/cli/images_sign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/images_sign.go -------------------------------------------------------------------------------- /pkg/cli/images_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/images_test.go -------------------------------------------------------------------------------- /pkg/cli/images_verify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/images_verify.go -------------------------------------------------------------------------------- /pkg/cli/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/info.go -------------------------------------------------------------------------------- /pkg/cli/info_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/info_test.go -------------------------------------------------------------------------------- /pkg/cli/install.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/install.go -------------------------------------------------------------------------------- /pkg/cli/jobs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/jobs.go -------------------------------------------------------------------------------- /pkg/cli/jobs_restart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/jobs_restart.go -------------------------------------------------------------------------------- /pkg/cli/kube.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/kube.go -------------------------------------------------------------------------------- /pkg/cli/local.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/local.go -------------------------------------------------------------------------------- /pkg/cli/local_logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/local_logs.go -------------------------------------------------------------------------------- /pkg/cli/local_rm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/local_rm.go -------------------------------------------------------------------------------- /pkg/cli/local_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/local_server.go -------------------------------------------------------------------------------- /pkg/cli/local_start.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/local_start.go -------------------------------------------------------------------------------- /pkg/cli/local_stop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/local_stop.go -------------------------------------------------------------------------------- /pkg/cli/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/log.go -------------------------------------------------------------------------------- /pkg/cli/log_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/log_test.go -------------------------------------------------------------------------------- /pkg/cli/offerings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/offerings.go -------------------------------------------------------------------------------- /pkg/cli/port_forward.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/port_forward.go -------------------------------------------------------------------------------- /pkg/cli/project.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/project.go -------------------------------------------------------------------------------- /pkg/cli/project_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/project_create.go -------------------------------------------------------------------------------- /pkg/cli/project_rm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/project_rm.go -------------------------------------------------------------------------------- /pkg/cli/project_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/project_update.go -------------------------------------------------------------------------------- /pkg/cli/project_use.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/project_use.go -------------------------------------------------------------------------------- /pkg/cli/ps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/ps.go -------------------------------------------------------------------------------- /pkg/cli/ps_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/ps_test.go -------------------------------------------------------------------------------- /pkg/cli/pull.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/pull.go -------------------------------------------------------------------------------- /pkg/cli/pull_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/pull_test.go -------------------------------------------------------------------------------- /pkg/cli/push.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/push.go -------------------------------------------------------------------------------- /pkg/cli/push_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/push_test.go -------------------------------------------------------------------------------- /pkg/cli/regions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/regions.go -------------------------------------------------------------------------------- /pkg/cli/regions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/regions_test.go -------------------------------------------------------------------------------- /pkg/cli/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/render.go -------------------------------------------------------------------------------- /pkg/cli/render_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/render_test.go -------------------------------------------------------------------------------- /pkg/cli/rm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/rm.go -------------------------------------------------------------------------------- /pkg/cli/rm_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/rm_helper.go -------------------------------------------------------------------------------- /pkg/cli/rm_helper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/rm_helper_test.go -------------------------------------------------------------------------------- /pkg/cli/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/run.go -------------------------------------------------------------------------------- /pkg/cli/run_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/run_test.go -------------------------------------------------------------------------------- /pkg/cli/secret.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/secret.go -------------------------------------------------------------------------------- /pkg/cli/secret_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/secret_create.go -------------------------------------------------------------------------------- /pkg/cli/secret_create_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/secret_create_test.go -------------------------------------------------------------------------------- /pkg/cli/secret_edit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/secret_edit.go -------------------------------------------------------------------------------- /pkg/cli/secret_encrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/secret_encrypt.go -------------------------------------------------------------------------------- /pkg/cli/secret_expose.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/secret_expose.go -------------------------------------------------------------------------------- /pkg/cli/secret_rm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/secret_rm.go -------------------------------------------------------------------------------- /pkg/cli/secret_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/secret_test.go -------------------------------------------------------------------------------- /pkg/cli/secret_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/secret_update.go -------------------------------------------------------------------------------- /pkg/cli/start.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/start.go -------------------------------------------------------------------------------- /pkg/cli/start_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/start_test.go -------------------------------------------------------------------------------- /pkg/cli/stop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/stop.go -------------------------------------------------------------------------------- /pkg/cli/stop_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/stop_test.go -------------------------------------------------------------------------------- /pkg/cli/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/tag.go -------------------------------------------------------------------------------- /pkg/cli/tag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/tag_test.go -------------------------------------------------------------------------------- /pkg/cli/testdata/MockClient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/testdata/MockClient.go -------------------------------------------------------------------------------- /pkg/cli/testdata/TestAcorn/acorn_info.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/testdata/TestAcorn/acorn_info.golden -------------------------------------------------------------------------------- /pkg/cli/testdata/TestAll/acorn_all.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/testdata/TestAll/acorn_all.golden -------------------------------------------------------------------------------- /pkg/cli/testdata/TestAll/acorn_all_-i.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/testdata/TestAll/acorn_all_-i.golden -------------------------------------------------------------------------------- /pkg/cli/testdata/TestAll/acorn_all_-o_json.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/testdata/TestAll/acorn_all_-o_json.golden -------------------------------------------------------------------------------- /pkg/cli/testdata/TestAll/acorn_all_-o_yaml.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/testdata/TestAll/acorn_all_-o_yaml.golden -------------------------------------------------------------------------------- /pkg/cli/testdata/TestInfo/acorn_info.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/testdata/TestInfo/acorn_info.golden -------------------------------------------------------------------------------- /pkg/cli/testdata/TestInfo/acorn_info_-A.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/testdata/TestInfo/acorn_info_-A.golden -------------------------------------------------------------------------------- /pkg/cli/testdata/TestInfo/acorn_info_-o_json.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/testdata/TestInfo/acorn_info_-o_json.golden -------------------------------------------------------------------------------- /pkg/cli/testdata/TestInfo/acorn_info_-o_yaml.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/testdata/TestInfo/acorn_info_-o_yaml.golden -------------------------------------------------------------------------------- /pkg/cli/testdata/TestRender/acorn_render_.#01.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/testdata/TestRender/acorn_render_.#01.golden -------------------------------------------------------------------------------- /pkg/cli/testdata/render/Acornfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/testdata/render/Acornfile -------------------------------------------------------------------------------- /pkg/cli/testdata/secret/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/testdata/secret/secret.yaml -------------------------------------------------------------------------------- /pkg/cli/testdata/secret/value2.txt: -------------------------------------------------------------------------------- 1 | value2 -------------------------------------------------------------------------------- /pkg/cli/uninstall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/uninstall.go -------------------------------------------------------------------------------- /pkg/cli/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/update.go -------------------------------------------------------------------------------- /pkg/cli/update_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/update_test.go -------------------------------------------------------------------------------- /pkg/cli/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/version.go -------------------------------------------------------------------------------- /pkg/cli/volume_classes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/volume_classes.go -------------------------------------------------------------------------------- /pkg/cli/volume_classes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/volume_classes_test.go -------------------------------------------------------------------------------- /pkg/cli/volume_rm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/volume_rm.go -------------------------------------------------------------------------------- /pkg/cli/volumes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/volumes.go -------------------------------------------------------------------------------- /pkg/cli/volumes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/volumes_test.go -------------------------------------------------------------------------------- /pkg/cli/wait.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cli/wait.go -------------------------------------------------------------------------------- /pkg/client/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/client/app.go -------------------------------------------------------------------------------- /pkg/client/app_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/client/app_test.go -------------------------------------------------------------------------------- /pkg/client/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/client/build.go -------------------------------------------------------------------------------- /pkg/client/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/client/builder.go -------------------------------------------------------------------------------- /pkg/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/client/client.go -------------------------------------------------------------------------------- /pkg/client/computeclass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/client/computeclass.go -------------------------------------------------------------------------------- /pkg/client/containers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/client/containers.go -------------------------------------------------------------------------------- /pkg/client/credentials.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/client/credentials.go -------------------------------------------------------------------------------- /pkg/client/deferred.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/client/deferred.go -------------------------------------------------------------------------------- /pkg/client/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/client/error.go -------------------------------------------------------------------------------- /pkg/client/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/client/event.go -------------------------------------------------------------------------------- /pkg/client/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/client/exec.go -------------------------------------------------------------------------------- /pkg/client/ignore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/client/ignore.go -------------------------------------------------------------------------------- /pkg/client/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/client/image.go -------------------------------------------------------------------------------- /pkg/client/image_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/client/image_test.go -------------------------------------------------------------------------------- /pkg/client/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/client/info.go -------------------------------------------------------------------------------- /pkg/client/info_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/client/info_test.go -------------------------------------------------------------------------------- /pkg/client/jobs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/client/jobs.go -------------------------------------------------------------------------------- /pkg/client/multi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/client/multi.go -------------------------------------------------------------------------------- /pkg/client/port_forward.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/client/port_forward.go -------------------------------------------------------------------------------- /pkg/client/project.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/client/project.go -------------------------------------------------------------------------------- /pkg/client/region.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/client/region.go -------------------------------------------------------------------------------- /pkg/client/secrets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/client/secrets.go -------------------------------------------------------------------------------- /pkg/client/sign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/client/sign.go -------------------------------------------------------------------------------- /pkg/client/term/exit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/client/term/exit.go -------------------------------------------------------------------------------- /pkg/client/term/term.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/client/term/term.go -------------------------------------------------------------------------------- /pkg/client/verify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/client/verify.go -------------------------------------------------------------------------------- /pkg/client/volume.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/client/volume.go -------------------------------------------------------------------------------- /pkg/computeclasses/computeclasses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/computeclasses/computeclasses.go -------------------------------------------------------------------------------- /pkg/condition/conditions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/condition/conditions.go -------------------------------------------------------------------------------- /pkg/condition/conditions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/condition/conditions_test.go -------------------------------------------------------------------------------- /pkg/config/cliconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/config/cliconfig.go -------------------------------------------------------------------------------- /pkg/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/config/config.go -------------------------------------------------------------------------------- /pkg/config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/config/config_test.go -------------------------------------------------------------------------------- /pkg/controller/appdefinition/acorn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appdefinition/acorn.go -------------------------------------------------------------------------------- /pkg/controller/appdefinition/acorn_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appdefinition/acorn_test.go -------------------------------------------------------------------------------- /pkg/controller/appdefinition/computeclass_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appdefinition/computeclass_test.go -------------------------------------------------------------------------------- /pkg/controller/appdefinition/consumer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appdefinition/consumer.go -------------------------------------------------------------------------------- /pkg/controller/appdefinition/consumer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appdefinition/consumer_test.go -------------------------------------------------------------------------------- /pkg/controller/appdefinition/depends.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appdefinition/depends.go -------------------------------------------------------------------------------- /pkg/controller/appdefinition/depends_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appdefinition/depends_test.go -------------------------------------------------------------------------------- /pkg/controller/appdefinition/deploy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appdefinition/deploy.go -------------------------------------------------------------------------------- /pkg/controller/appdefinition/deploy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appdefinition/deploy_test.go -------------------------------------------------------------------------------- /pkg/controller/appdefinition/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appdefinition/error.go -------------------------------------------------------------------------------- /pkg/controller/appdefinition/files_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appdefinition/files_test.go -------------------------------------------------------------------------------- /pkg/controller/appdefinition/generation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appdefinition/generation.go -------------------------------------------------------------------------------- /pkg/controller/appdefinition/imagepulled.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appdefinition/imagepulled.go -------------------------------------------------------------------------------- /pkg/controller/appdefinition/ingress_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appdefinition/ingress_test.go -------------------------------------------------------------------------------- /pkg/controller/appdefinition/jobs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appdefinition/jobs.go -------------------------------------------------------------------------------- /pkg/controller/appdefinition/jobs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appdefinition/jobs_test.go -------------------------------------------------------------------------------- /pkg/controller/appdefinition/links_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appdefinition/links_test.go -------------------------------------------------------------------------------- /pkg/controller/appdefinition/memory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appdefinition/memory_test.go -------------------------------------------------------------------------------- /pkg/controller/appdefinition/namespace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appdefinition/namespace.go -------------------------------------------------------------------------------- /pkg/controller/appdefinition/namespace_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appdefinition/namespace_test.go -------------------------------------------------------------------------------- /pkg/controller/appdefinition/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appdefinition/parse.go -------------------------------------------------------------------------------- /pkg/controller/appdefinition/parse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appdefinition/parse_test.go -------------------------------------------------------------------------------- /pkg/controller/appdefinition/permissions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appdefinition/permissions.go -------------------------------------------------------------------------------- /pkg/controller/appdefinition/permissions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appdefinition/permissions_test.go -------------------------------------------------------------------------------- /pkg/controller/appdefinition/pre_stop_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appdefinition/pre_stop_test.go -------------------------------------------------------------------------------- /pkg/controller/appdefinition/pullappimage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appdefinition/pullappimage.go -------------------------------------------------------------------------------- /pkg/controller/appdefinition/pullappimage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appdefinition/pullappimage_test.go -------------------------------------------------------------------------------- /pkg/controller/appdefinition/pullsecrets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appdefinition/pullsecrets.go -------------------------------------------------------------------------------- /pkg/controller/appdefinition/pullsecrets_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appdefinition/pullsecrets_test.go -------------------------------------------------------------------------------- /pkg/controller/appdefinition/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appdefinition/router.go -------------------------------------------------------------------------------- /pkg/controller/appdefinition/router_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appdefinition/router_test.go -------------------------------------------------------------------------------- /pkg/controller/appdefinition/secret_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appdefinition/secret_test.go -------------------------------------------------------------------------------- /pkg/controller/appdefinition/service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appdefinition/service_test.go -------------------------------------------------------------------------------- /pkg/controller/appdefinition/serviceaccount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appdefinition/serviceaccount.go -------------------------------------------------------------------------------- /pkg/controller/appdefinition/sleep_dev.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appdefinition/sleep_dev.go -------------------------------------------------------------------------------- /pkg/controller/appdefinition/sleep_image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appdefinition/sleep_image.go -------------------------------------------------------------------------------- /pkg/controller/appdefinition/testdata/link/input.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appdefinition/testdata/link/input.yaml -------------------------------------------------------------------------------- /pkg/controller/appdefinition/volume.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appdefinition/volume.go -------------------------------------------------------------------------------- /pkg/controller/appdefinition/volume_bind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appdefinition/volume_bind.go -------------------------------------------------------------------------------- /pkg/controller/appdefinition/volume_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appdefinition/volume_test.go -------------------------------------------------------------------------------- /pkg/controller/appstatus/acorns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appstatus/acorns.go -------------------------------------------------------------------------------- /pkg/controller/appstatus/appstatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appstatus/appstatus.go -------------------------------------------------------------------------------- /pkg/controller/appstatus/blocked.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appstatus/blocked.go -------------------------------------------------------------------------------- /pkg/controller/appstatus/check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appstatus/check.go -------------------------------------------------------------------------------- /pkg/controller/appstatus/check_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appstatus/check_test.go -------------------------------------------------------------------------------- /pkg/controller/appstatus/cli_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appstatus/cli_status.go -------------------------------------------------------------------------------- /pkg/controller/appstatus/containers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appstatus/containers.go -------------------------------------------------------------------------------- /pkg/controller/appstatus/endpoints.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appstatus/endpoints.go -------------------------------------------------------------------------------- /pkg/controller/appstatus/functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appstatus/functions.go -------------------------------------------------------------------------------- /pkg/controller/appstatus/jobs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appstatus/jobs.go -------------------------------------------------------------------------------- /pkg/controller/appstatus/ready.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appstatus/ready.go -------------------------------------------------------------------------------- /pkg/controller/appstatus/replicas.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appstatus/replicas.go -------------------------------------------------------------------------------- /pkg/controller/appstatus/routers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appstatus/routers.go -------------------------------------------------------------------------------- /pkg/controller/appstatus/secrets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appstatus/secrets.go -------------------------------------------------------------------------------- /pkg/controller/appstatus/services.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appstatus/services.go -------------------------------------------------------------------------------- /pkg/controller/appstatus/volumes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/appstatus/volumes.go -------------------------------------------------------------------------------- /pkg/controller/builder/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/builder/builder.go -------------------------------------------------------------------------------- /pkg/controller/builder/depot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/builder/depot.go -------------------------------------------------------------------------------- /pkg/controller/builder/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/builder/registry.go -------------------------------------------------------------------------------- /pkg/controller/config/autoupgrade.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/config/autoupgrade.go -------------------------------------------------------------------------------- /pkg/controller/config/devconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/config/devconfig.go -------------------------------------------------------------------------------- /pkg/controller/config/dns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/config/dns.go -------------------------------------------------------------------------------- /pkg/controller/config/dns_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/config/dns_test.go -------------------------------------------------------------------------------- /pkg/controller/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/controller.go -------------------------------------------------------------------------------- /pkg/controller/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/data.go -------------------------------------------------------------------------------- /pkg/controller/defaults/defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/defaults/defaults.go -------------------------------------------------------------------------------- /pkg/controller/defaults/memory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/defaults/memory.go -------------------------------------------------------------------------------- /pkg/controller/defaults/memory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/defaults/memory_test.go -------------------------------------------------------------------------------- /pkg/controller/defaults/region.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/defaults/region.go -------------------------------------------------------------------------------- /pkg/controller/defaults/region_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/defaults/region_test.go -------------------------------------------------------------------------------- /pkg/controller/defaults/volumeclass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/defaults/volumeclass.go -------------------------------------------------------------------------------- /pkg/controller/defaults/volumeclass_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/defaults/volumeclass_test.go -------------------------------------------------------------------------------- /pkg/controller/devsession/devsession.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/devsession/devsession.go -------------------------------------------------------------------------------- /pkg/controller/eventinstance/eventinstance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/eventinstance/eventinstance.go -------------------------------------------------------------------------------- /pkg/controller/gc/gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/gc/gc.go -------------------------------------------------------------------------------- /pkg/controller/images/images.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/images/images.go -------------------------------------------------------------------------------- /pkg/controller/ingress/dns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/ingress/dns.go -------------------------------------------------------------------------------- /pkg/controller/ingress/dns_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/ingress/dns_test.go -------------------------------------------------------------------------------- /pkg/controller/ingress/testdata/ingress/existing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/ingress/testdata/ingress/existing.yaml -------------------------------------------------------------------------------- /pkg/controller/ingress/testdata/ingress/expected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/ingress/testdata/ingress/expected.yaml -------------------------------------------------------------------------------- /pkg/controller/ingress/testdata/ingress/input.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/ingress/testdata/ingress/input.yaml -------------------------------------------------------------------------------- /pkg/controller/jobs/finalize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/jobs/finalize.go -------------------------------------------------------------------------------- /pkg/controller/jobs/output.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/jobs/output.go -------------------------------------------------------------------------------- /pkg/controller/local/pods.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/local/pods.go -------------------------------------------------------------------------------- /pkg/controller/local/services.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/local/services.go -------------------------------------------------------------------------------- /pkg/controller/local/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/local/storage.go -------------------------------------------------------------------------------- /pkg/controller/namespace/gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/namespace/gc.go -------------------------------------------------------------------------------- /pkg/controller/namespace/namespace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/namespace/namespace.go -------------------------------------------------------------------------------- /pkg/controller/networkpolicy/networkpolicy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/networkpolicy/networkpolicy.go -------------------------------------------------------------------------------- /pkg/controller/networkpolicy/networkpolicy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/networkpolicy/networkpolicy_test.go -------------------------------------------------------------------------------- /pkg/controller/permissions/checkimageallowed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/permissions/checkimageallowed.go -------------------------------------------------------------------------------- /pkg/controller/permissions/consumerpermissions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/permissions/consumerpermissions.go -------------------------------------------------------------------------------- /pkg/controller/permissions/ira.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/permissions/ira.go -------------------------------------------------------------------------------- /pkg/controller/permissions/permissions_check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/permissions/permissions_check.go -------------------------------------------------------------------------------- /pkg/controller/pvc/markandsave.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/pvc/markandsave.go -------------------------------------------------------------------------------- /pkg/controller/quota/quota.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/quota/quota.go -------------------------------------------------------------------------------- /pkg/controller/quota/quota_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/quota/quota_test.go -------------------------------------------------------------------------------- /pkg/controller/quota/testdata/basic/existing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/quota/testdata/basic/existing.yaml -------------------------------------------------------------------------------- /pkg/controller/quota/testdata/basic/expected.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/quota/testdata/basic/expected.golden -------------------------------------------------------------------------------- /pkg/controller/quota/testdata/basic/input.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/quota/testdata/basic/input.yaml -------------------------------------------------------------------------------- /pkg/controller/quota/testdata/not-enforced/expected.golden: -------------------------------------------------------------------------------- 1 | "" 2 | -------------------------------------------------------------------------------- /pkg/controller/quota/testdata/not-enforced/input.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/quota/testdata/not-enforced/input.yaml -------------------------------------------------------------------------------- /pkg/controller/quota/testdata/only-all-set/input.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/quota/testdata/only-all-set/input.yaml -------------------------------------------------------------------------------- /pkg/controller/resolvedofferings/computeclass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/resolvedofferings/computeclass.go -------------------------------------------------------------------------------- /pkg/controller/resolvedofferings/computeclass_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/resolvedofferings/computeclass_test.go -------------------------------------------------------------------------------- /pkg/controller/resolvedofferings/region.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/resolvedofferings/region.go -------------------------------------------------------------------------------- /pkg/controller/resolvedofferings/region_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/resolvedofferings/region_test.go -------------------------------------------------------------------------------- /pkg/controller/resolvedofferings/resolvedofferings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/resolvedofferings/resolvedofferings.go -------------------------------------------------------------------------------- /pkg/controller/resolvedofferings/volumeclass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/resolvedofferings/volumeclass.go -------------------------------------------------------------------------------- /pkg/controller/resolvedofferings/volumeclass_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/resolvedofferings/volumeclass_test.go -------------------------------------------------------------------------------- /pkg/controller/routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/routes.go -------------------------------------------------------------------------------- /pkg/controller/scheduling/computeclass_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/scheduling/computeclass_test.go -------------------------------------------------------------------------------- /pkg/controller/scheduling/memory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/scheduling/memory_test.go -------------------------------------------------------------------------------- /pkg/controller/scheduling/scheduling.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/scheduling/scheduling.go -------------------------------------------------------------------------------- /pkg/controller/scheduling/toleration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/scheduling/toleration_test.go -------------------------------------------------------------------------------- /pkg/controller/secrets/dns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/secrets/dns.go -------------------------------------------------------------------------------- /pkg/controller/secrets/dns_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/secrets/dns_test.go -------------------------------------------------------------------------------- /pkg/controller/secrets/secret.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/secrets/secret.go -------------------------------------------------------------------------------- /pkg/controller/secrets/secret_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/secrets/secret_test.go -------------------------------------------------------------------------------- /pkg/controller/secrets/testdata/binding/existing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/secrets/testdata/binding/existing.yaml -------------------------------------------------------------------------------- /pkg/controller/secrets/testdata/binding/input.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/secrets/testdata/binding/input.yaml -------------------------------------------------------------------------------- /pkg/controller/service/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/service/service.go -------------------------------------------------------------------------------- /pkg/controller/service/service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/service/service_test.go -------------------------------------------------------------------------------- /pkg/controller/service/testdata/router/existing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/service/testdata/router/existing.yaml -------------------------------------------------------------------------------- /pkg/controller/service/testdata/router/input.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/service/testdata/router/input.yaml -------------------------------------------------------------------------------- /pkg/controller/service/testdata/secret/existing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/service/testdata/secret/existing.yaml -------------------------------------------------------------------------------- /pkg/controller/service/testdata/secret/input.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/service/testdata/secret/input.yaml -------------------------------------------------------------------------------- /pkg/controller/tls/certs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/tls/certs.go -------------------------------------------------------------------------------- /pkg/controller/tls/letsencrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/tls/letsencrypt.go -------------------------------------------------------------------------------- /pkg/controller/tls/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/controller/tls/provider.go -------------------------------------------------------------------------------- /pkg/cosign/cosign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cosign/cosign.go -------------------------------------------------------------------------------- /pkg/cosign/cosign_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cosign/cosign_test.go -------------------------------------------------------------------------------- /pkg/cosign/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cosign/errors.go -------------------------------------------------------------------------------- /pkg/cosign/find.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cosign/find.go -------------------------------------------------------------------------------- /pkg/cosign/github.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cosign/github.go -------------------------------------------------------------------------------- /pkg/cosign/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cosign/keys.go -------------------------------------------------------------------------------- /pkg/cosign/keys_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cosign/keys_test.go -------------------------------------------------------------------------------- /pkg/cosign/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cosign/manager.go -------------------------------------------------------------------------------- /pkg/cosign/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cosign/registry.go -------------------------------------------------------------------------------- /pkg/cosign/testdata/img.oci/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cosign/testdata/img.oci/index.json -------------------------------------------------------------------------------- /pkg/cosign/testdata/img.oci/oci-layout: -------------------------------------------------------------------------------- 1 | { 2 | "imageLayoutVersion": "1.0.0" 3 | } -------------------------------------------------------------------------------- /pkg/cosign/testdata/invalidkey1.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cosign/testdata/invalidkey1.key -------------------------------------------------------------------------------- /pkg/cosign/testdata/invalidkey1.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cosign/testdata/invalidkey1.pub -------------------------------------------------------------------------------- /pkg/cosign/testdata/keys/openssh-rsa-nopw.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cosign/testdata/keys/openssh-rsa-nopw.key -------------------------------------------------------------------------------- /pkg/cosign/testdata/keys/openssh-rsa-nopw.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cosign/testdata/keys/openssh-rsa-nopw.pub -------------------------------------------------------------------------------- /pkg/cosign/testdata/sig_notok_1.oci/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cosign/testdata/sig_notok_1.oci/index.json -------------------------------------------------------------------------------- /pkg/cosign/testdata/sig_notok_1.oci/oci-layout: -------------------------------------------------------------------------------- 1 | { 2 | "imageLayoutVersion": "1.0.0" 3 | } -------------------------------------------------------------------------------- /pkg/cosign/testdata/sig_notok_2.oci/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cosign/testdata/sig_notok_2.oci/index.json -------------------------------------------------------------------------------- /pkg/cosign/testdata/sig_notok_2.oci/oci-layout: -------------------------------------------------------------------------------- 1 | { 2 | "imageLayoutVersion": "1.0.0" 3 | } -------------------------------------------------------------------------------- /pkg/cosign/testdata/sig_ok_1.oci/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cosign/testdata/sig_ok_1.oci/index.json -------------------------------------------------------------------------------- /pkg/cosign/testdata/sig_ok_1.oci/oci-layout: -------------------------------------------------------------------------------- 1 | { 2 | "imageLayoutVersion": "1.0.0" 3 | } -------------------------------------------------------------------------------- /pkg/cosign/testdata/validkey1.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cosign/testdata/validkey1.key -------------------------------------------------------------------------------- /pkg/cosign/testdata/validkey1.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cosign/testdata/validkey1.pub -------------------------------------------------------------------------------- /pkg/cosign/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/cosign/types.go -------------------------------------------------------------------------------- /pkg/crds/crds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/crds/crds.go -------------------------------------------------------------------------------- /pkg/credentials/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/credentials/helper.go -------------------------------------------------------------------------------- /pkg/credentials/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/credentials/store.go -------------------------------------------------------------------------------- /pkg/deployargs/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/deployargs/args.go -------------------------------------------------------------------------------- /pkg/dev/dev.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/dev/dev.go -------------------------------------------------------------------------------- /pkg/dev/ports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/dev/ports.go -------------------------------------------------------------------------------- /pkg/dev/sync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/dev/sync.go -------------------------------------------------------------------------------- /pkg/digest/digest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/digest/digest.go -------------------------------------------------------------------------------- /pkg/dns/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/dns/client.go -------------------------------------------------------------------------------- /pkg/dns/daemon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/dns/daemon.go -------------------------------------------------------------------------------- /pkg/dns/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/dns/helpers.go -------------------------------------------------------------------------------- /pkg/dns/helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/dns/helpers_test.go -------------------------------------------------------------------------------- /pkg/dns/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/dns/model.go -------------------------------------------------------------------------------- /pkg/dns/ratelimit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/dns/ratelimit.go -------------------------------------------------------------------------------- /pkg/dockerconfig/dockerconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/dockerconfig/dockerconfig.go -------------------------------------------------------------------------------- /pkg/edit/edit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/edit/edit.go -------------------------------------------------------------------------------- /pkg/encryption/encryption.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/encryption/encryption.go -------------------------------------------------------------------------------- /pkg/encryption/nacl/decrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/encryption/nacl/decrypt.go -------------------------------------------------------------------------------- /pkg/encryption/nacl/encrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/encryption/nacl/encrypt.go -------------------------------------------------------------------------------- /pkg/encryption/nacl/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/encryption/nacl/errors.go -------------------------------------------------------------------------------- /pkg/encryption/nacl/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/encryption/nacl/keys.go -------------------------------------------------------------------------------- /pkg/event/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/event/event.go -------------------------------------------------------------------------------- /pkg/event/id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/event/id.go -------------------------------------------------------------------------------- /pkg/event/id_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/event/id_test.go -------------------------------------------------------------------------------- /pkg/event/truncate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/event/truncate.go -------------------------------------------------------------------------------- /pkg/externalid/externalid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/externalid/externalid.go -------------------------------------------------------------------------------- /pkg/imagedetails/details.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/imagedetails/details.go -------------------------------------------------------------------------------- /pkg/imagedetails/imagedetails.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/imagedetails/imagedetails.go -------------------------------------------------------------------------------- /pkg/imagemetadatacache/imagemetadatacache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/imagemetadatacache/imagemetadatacache.go -------------------------------------------------------------------------------- /pkg/imagepattern/pattern.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/imagepattern/pattern.go -------------------------------------------------------------------------------- /pkg/imagerules/imageallowrules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/imagerules/imageallowrules.go -------------------------------------------------------------------------------- /pkg/imagerules/imageroleauthorizations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/imagerules/imageroleauthorizations.go -------------------------------------------------------------------------------- /pkg/imagerules/util/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/imagerules/util/helpers.go -------------------------------------------------------------------------------- /pkg/images/find.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/images/find.go -------------------------------------------------------------------------------- /pkg/images/keychain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/images/keychain.go -------------------------------------------------------------------------------- /pkg/images/operations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/images/operations.go -------------------------------------------------------------------------------- /pkg/images/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/images/write.go -------------------------------------------------------------------------------- /pkg/imageselector/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/imageselector/match.go -------------------------------------------------------------------------------- /pkg/imageselector/name/name.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/imageselector/name/name.go -------------------------------------------------------------------------------- /pkg/imageselector/name/name_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/imageselector/name/name_test.go -------------------------------------------------------------------------------- /pkg/imageselector/signatures/annotations/selector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/imageselector/signatures/annotations/selector.go -------------------------------------------------------------------------------- /pkg/imageselector/signatures/signatures.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/imageselector/signatures/signatures.go -------------------------------------------------------------------------------- /pkg/imagesource/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/imagesource/helper.go -------------------------------------------------------------------------------- /pkg/imagesource/platforms_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/imagesource/platforms_test.go -------------------------------------------------------------------------------- /pkg/imagesource/testdata/params/Acornfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/imagesource/testdata/params/Acornfile -------------------------------------------------------------------------------- /pkg/imagesource/testdata/params/test.cue: -------------------------------------------------------------------------------- 1 | nested: { 2 | val: "foo" 3 | } -------------------------------------------------------------------------------- /pkg/imagesystem/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/imagesystem/builder.go -------------------------------------------------------------------------------- /pkg/imagesystem/buildertemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/imagesystem/buildertemplate.go -------------------------------------------------------------------------------- /pkg/imagesystem/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/imagesystem/registry.go -------------------------------------------------------------------------------- /pkg/imagesystem/registry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/imagesystem/registry_test.go -------------------------------------------------------------------------------- /pkg/imagesystem/registrytemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/imagesystem/registrytemplate.go -------------------------------------------------------------------------------- /pkg/imagesystem/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/imagesystem/transport.go -------------------------------------------------------------------------------- /pkg/info/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/info/info.go -------------------------------------------------------------------------------- /pkg/install/apiserver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/install/apiserver.yaml -------------------------------------------------------------------------------- /pkg/install/check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/install/check.go -------------------------------------------------------------------------------- /pkg/install/controller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/install/controller.yaml -------------------------------------------------------------------------------- /pkg/install/coredns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/install/coredns.yaml -------------------------------------------------------------------------------- /pkg/install/dev.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/install/dev.go -------------------------------------------------------------------------------- /pkg/install/install.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/install/install.go -------------------------------------------------------------------------------- /pkg/install/local.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/install/local.yaml -------------------------------------------------------------------------------- /pkg/install/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/install/namespace.yaml -------------------------------------------------------------------------------- /pkg/install/progress/progress_factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/install/progress/progress_factory.go -------------------------------------------------------------------------------- /pkg/install/progress/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/install/progress/stream.go -------------------------------------------------------------------------------- /pkg/install/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/install/role.yaml -------------------------------------------------------------------------------- /pkg/install/traefik.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/install/traefik.yaml -------------------------------------------------------------------------------- /pkg/jobs/jobs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/jobs/jobs.go -------------------------------------------------------------------------------- /pkg/k8schannel/dialer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/k8schannel/dialer.go -------------------------------------------------------------------------------- /pkg/k8schannel/websocket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/k8schannel/websocket.go -------------------------------------------------------------------------------- /pkg/k8sclient/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/k8sclient/client.go -------------------------------------------------------------------------------- /pkg/k8sclient/mapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/k8sclient/mapper.go -------------------------------------------------------------------------------- /pkg/labels/labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/labels/labels.go -------------------------------------------------------------------------------- /pkg/local/docker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/local/docker.go -------------------------------------------------------------------------------- /pkg/local/server_generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/local/server_generic.go -------------------------------------------------------------------------------- /pkg/local/server_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/local/server_linux.go -------------------------------------------------------------------------------- /pkg/local/webhook/patch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/local/webhook/patch.go -------------------------------------------------------------------------------- /pkg/local/webhook/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/local/webhook/server.go -------------------------------------------------------------------------------- /pkg/log/default_log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/log/default_log.go -------------------------------------------------------------------------------- /pkg/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/log/log.go -------------------------------------------------------------------------------- /pkg/log/log_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/log/log_test.go -------------------------------------------------------------------------------- /pkg/log/output.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/log/output.go -------------------------------------------------------------------------------- /pkg/login/login.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/login/login.go -------------------------------------------------------------------------------- /pkg/logserver/init/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/logserver/init/init.go -------------------------------------------------------------------------------- /pkg/logserver/logserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/logserver/logserver.go -------------------------------------------------------------------------------- /pkg/manager/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/manager/client.go -------------------------------------------------------------------------------- /pkg/manager/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/manager/manager.go -------------------------------------------------------------------------------- /pkg/manager/urls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/manager/urls.go -------------------------------------------------------------------------------- /pkg/mocks/dns/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/mocks/dns/mock.go -------------------------------------------------------------------------------- /pkg/mocks/k8s/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/mocks/k8s/mock.go -------------------------------------------------------------------------------- /pkg/mocks/mock_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/mocks/mock_client.go -------------------------------------------------------------------------------- /pkg/namespace/namespace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/namespace/namespace.go -------------------------------------------------------------------------------- /pkg/openapi/generated/openapi_generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/openapi/generated/openapi_generated.go -------------------------------------------------------------------------------- /pkg/pdb/pdb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/pdb/pdb.go -------------------------------------------------------------------------------- /pkg/podstatus/pod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/podstatus/pod.go -------------------------------------------------------------------------------- /pkg/portforward/portforward.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/portforward/portforward.go -------------------------------------------------------------------------------- /pkg/ports/ports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/ports/ports.go -------------------------------------------------------------------------------- /pkg/ports/ports_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/ports/ports_test.go -------------------------------------------------------------------------------- /pkg/ports/publish.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/ports/publish.go -------------------------------------------------------------------------------- /pkg/profiles/default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/profiles/default.go -------------------------------------------------------------------------------- /pkg/profiles/production.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/profiles/production.go -------------------------------------------------------------------------------- /pkg/profiles/profiles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/profiles/profiles.go -------------------------------------------------------------------------------- /pkg/progressbar/print.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/progressbar/print.go -------------------------------------------------------------------------------- /pkg/project/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/project/client.go -------------------------------------------------------------------------------- /pkg/project/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/project/client_test.go -------------------------------------------------------------------------------- /pkg/project/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/project/handlers.go -------------------------------------------------------------------------------- /pkg/project/handlers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/project/handlers_test.go -------------------------------------------------------------------------------- /pkg/project/operations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/project/operations.go -------------------------------------------------------------------------------- /pkg/prompt/prompt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/prompt/prompt.go -------------------------------------------------------------------------------- /pkg/proxy/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/proxy/proxy.go -------------------------------------------------------------------------------- /pkg/publicname/container.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/publicname/container.go -------------------------------------------------------------------------------- /pkg/publicname/publicname.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/publicname/publicname.go -------------------------------------------------------------------------------- /pkg/publicname/publicname_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/publicname/publicname_test.go -------------------------------------------------------------------------------- /pkg/publicname/strategy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/publicname/strategy.go -------------------------------------------------------------------------------- /pkg/publish/cert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/publish/cert.go -------------------------------------------------------------------------------- /pkg/publish/ingress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/publish/ingress.go -------------------------------------------------------------------------------- /pkg/publish/ingress_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/publish/ingress_test.go -------------------------------------------------------------------------------- /pkg/publish/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/publish/router.go -------------------------------------------------------------------------------- /pkg/publish/servicelb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/publish/servicelb.go -------------------------------------------------------------------------------- /pkg/pullsecret/pullsecrets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/pullsecret/pullsecrets.go -------------------------------------------------------------------------------- /pkg/ref/expr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/ref/expr.go -------------------------------------------------------------------------------- /pkg/ref/expr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/ref/expr_test.go -------------------------------------------------------------------------------- /pkg/replace/interpolate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/replace/interpolate.go -------------------------------------------------------------------------------- /pkg/replace/interpolate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/replace/interpolate_test.go -------------------------------------------------------------------------------- /pkg/replace/replace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/replace/replace.go -------------------------------------------------------------------------------- /pkg/replace/replace_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/replace/replace_test.go -------------------------------------------------------------------------------- /pkg/roles/roles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/roles/roles.go -------------------------------------------------------------------------------- /pkg/rulerequest/handle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/rulerequest/handle.go -------------------------------------------------------------------------------- /pkg/rulerequest/perms.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/rulerequest/perms.go -------------------------------------------------------------------------------- /pkg/run/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/run/run.go -------------------------------------------------------------------------------- /pkg/scheme/scheme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/scheme/scheme.go -------------------------------------------------------------------------------- /pkg/secrets/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/secrets/generate.go -------------------------------------------------------------------------------- /pkg/secrets/generate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/secrets/generate_test.go -------------------------------------------------------------------------------- /pkg/secrets/interpolation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/secrets/interpolation.go -------------------------------------------------------------------------------- /pkg/secrets/secret.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/secrets/secret.go -------------------------------------------------------------------------------- /pkg/server/registry/apigroups/acorn/apigroup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/server/registry/apigroups/acorn/apigroup.go -------------------------------------------------------------------------------- /pkg/server/registry/apigroups/acorn/apps/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/server/registry/apigroups/acorn/apps/events.go -------------------------------------------------------------------------------- /pkg/server/registry/apigroups/acorn/apps/icon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/server/registry/apigroups/acorn/apps/icon.go -------------------------------------------------------------------------------- /pkg/server/registry/apigroups/acorn/apps/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/server/registry/apigroups/acorn/apps/info.go -------------------------------------------------------------------------------- /pkg/server/registry/apigroups/acorn/apps/logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/server/registry/apigroups/acorn/apps/logs.go -------------------------------------------------------------------------------- /pkg/server/registry/apigroups/acorn/apps/pull.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/server/registry/apigroups/acorn/apps/pull.go -------------------------------------------------------------------------------- /pkg/server/registry/apigroups/acorn/apps/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/server/registry/apigroups/acorn/apps/storage.go -------------------------------------------------------------------------------- /pkg/server/registry/apigroups/acorn/apps/strategy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/server/registry/apigroups/acorn/apps/strategy.go -------------------------------------------------------------------------------- /pkg/server/registry/apigroups/acorn/apps/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/server/registry/apigroups/acorn/apps/validator.go -------------------------------------------------------------------------------- /pkg/server/registry/apigroups/acorn/builders/port.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/server/registry/apigroups/acorn/builders/port.go -------------------------------------------------------------------------------- /pkg/server/registry/apigroups/acorn/builds/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/server/registry/apigroups/acorn/builds/storage.go -------------------------------------------------------------------------------- /pkg/server/registry/apigroups/acorn/images/pull.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/server/registry/apigroups/acorn/images/pull.go -------------------------------------------------------------------------------- /pkg/server/registry/apigroups/acorn/images/push.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/server/registry/apigroups/acorn/images/push.go -------------------------------------------------------------------------------- /pkg/server/registry/apigroups/acorn/images/sign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/server/registry/apigroups/acorn/images/sign.go -------------------------------------------------------------------------------- /pkg/server/registry/apigroups/acorn/images/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/server/registry/apigroups/acorn/images/tag.go -------------------------------------------------------------------------------- /pkg/server/registry/apigroups/admin/apigroup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/server/registry/apigroups/admin/apigroup.go -------------------------------------------------------------------------------- /pkg/server/registry/middleware/middleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/server/registry/middleware/middleware.go -------------------------------------------------------------------------------- /pkg/server/registry/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/server/registry/registry.go -------------------------------------------------------------------------------- /pkg/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/server/server.go -------------------------------------------------------------------------------- /pkg/services/acorn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/services/acorn.go -------------------------------------------------------------------------------- /pkg/services/acorn_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/services/acorn_test.go -------------------------------------------------------------------------------- /pkg/services/services.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/services/services.go -------------------------------------------------------------------------------- /pkg/streams/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/streams/io.go -------------------------------------------------------------------------------- /pkg/system/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/system/constants.go -------------------------------------------------------------------------------- /pkg/system/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/system/image.go -------------------------------------------------------------------------------- /pkg/system/resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/system/resources.go -------------------------------------------------------------------------------- /pkg/tables/converter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/tables/converter.go -------------------------------------------------------------------------------- /pkg/tables/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/tables/tables.go -------------------------------------------------------------------------------- /pkg/tags/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/tags/tags.go -------------------------------------------------------------------------------- /pkg/term/quiet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/term/quiet.go -------------------------------------------------------------------------------- /pkg/term/spinner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/term/spinner.go -------------------------------------------------------------------------------- /pkg/tolerations/tolerations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/tolerations/tolerations.go -------------------------------------------------------------------------------- /pkg/uninstall/uninstall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/uninstall/uninstall.go -------------------------------------------------------------------------------- /pkg/vcs/vcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/vcs/vcs.go -------------------------------------------------------------------------------- /pkg/vcs/vcs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/vcs/vcs_test.go -------------------------------------------------------------------------------- /pkg/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/version/version.go -------------------------------------------------------------------------------- /pkg/volume/testdata/ephemeral-manually-managed/expected.golden: -------------------------------------------------------------------------------- 1 | "" 2 | -------------------------------------------------------------------------------- /pkg/volume/testdata/ephemeral/expected.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/volume/testdata/ephemeral/expected.golden -------------------------------------------------------------------------------- /pkg/volume/testdata/ephemeral/input.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/volume/testdata/ephemeral/input.yaml -------------------------------------------------------------------------------- /pkg/volume/testdata/manually-managed/existing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/volume/testdata/manually-managed/existing.yaml -------------------------------------------------------------------------------- /pkg/volume/testdata/manually-managed/expected.golden: -------------------------------------------------------------------------------- 1 | "" 2 | -------------------------------------------------------------------------------- /pkg/volume/testdata/manually-managed/input.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/volume/testdata/manually-managed/input.yaml -------------------------------------------------------------------------------- /pkg/volume/volume.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/volume/volume.go -------------------------------------------------------------------------------- /pkg/volume/volume_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/volume/volume_test.go -------------------------------------------------------------------------------- /pkg/wait/wait.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/pkg/wait/wait.go -------------------------------------------------------------------------------- /scripts/40-copy-resolv-nameserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/scripts/40-copy-resolv-nameserver.sh -------------------------------------------------------------------------------- /scripts/acorn-busybox-init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/scripts/acorn-busybox-init -------------------------------------------------------------------------------- /scripts/acorn-helper-init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/scripts/acorn-helper-init -------------------------------------------------------------------------------- /scripts/acorn-job-get-output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/scripts/acorn-job-get-output -------------------------------------------------------------------------------- /scripts/acorn-job-helper-init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/scripts/acorn-job-helper-init -------------------------------------------------------------------------------- /scripts/acorn-job-helper-shutdown: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cat /tmp/.fifo 3 | -------------------------------------------------------------------------------- /scripts/ds-containerd-config-path-entry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/scripts/ds-containerd-config-path-entry -------------------------------------------------------------------------------- /scripts/k3s-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/scripts/k3s-config.yaml -------------------------------------------------------------------------------- /scripts/setup-binfmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/scripts/setup-binfmt -------------------------------------------------------------------------------- /tools/gendocs/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/tools/gendocs/main.go -------------------------------------------------------------------------------- /tools/header.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/notarize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/tools/notarize -------------------------------------------------------------------------------- /tools/vendor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorn-io/runtime/HEAD/tools/vendor.go --------------------------------------------------------------------------------