├── .dockerignore ├── .github └── workflows │ ├── back-port.yaml │ ├── commands.yaml │ ├── e2e.yaml │ ├── lint.yaml │ └── release.yaml ├── .gitignore ├── .golangci.yaml ├── DEVELOPMENT.md ├── Dockerfile ├── Dockerfile-kaniko ├── Makefile ├── PROJECT ├── README.md ├── apis └── resources │ └── v1alpha1 │ ├── bento_types.go │ ├── bentorequest_types.go │ ├── doc.go │ ├── groupversion_info.go │ ├── register.go │ └── zz_generated.deepcopy.go ├── bento-downloader ├── Dockerfile └── Makefile ├── common ├── common.go └── consts.go ├── config ├── crd │ ├── bases │ │ ├── resources.yatai.ai_bentoes.yaml │ │ └── resources.yatai.ai_bentorequests.yaml │ ├── kustomization.yaml │ ├── kustomizeconfig.yaml │ └── patches │ │ ├── cainjection_in_bentoes.yaml │ │ ├── cainjection_in_resources_bentorequests.yaml │ │ ├── webhook_in_bentoes.yaml │ │ └── webhook_in_resources_bentorequests.yaml ├── default │ ├── kustomization.yaml │ ├── manager_auth_proxy_patch.yaml │ └── manager_config_patch.yaml ├── manager │ ├── controller_manager_config.yaml │ ├── kustomization.yaml │ └── manager.yaml ├── manifests │ └── kustomization.yaml ├── prometheus │ ├── kustomization.yaml │ └── monitor.yaml ├── rbac │ ├── auth_proxy_client_clusterrole.yaml │ ├── auth_proxy_role.yaml │ ├── auth_proxy_role_binding.yaml │ ├── auth_proxy_service.yaml │ ├── bento_editor_role.yaml │ ├── bento_viewer_role.yaml │ ├── kustomization.yaml │ ├── leader_election_role.yaml │ ├── leader_election_role_binding.yaml │ ├── resources_bentorequest_editor_role.yaml │ ├── resources_bentorequest_viewer_role.yaml │ ├── role.yaml │ ├── role_binding.yaml │ └── service_account.yaml ├── samples │ ├── kustomization.yaml │ ├── resources_v1alpha1_bento.yaml │ └── resources_v1alpha1_bentorequest.yaml └── scorecard │ ├── bases │ └── config.yaml │ ├── kustomization.yaml │ └── patches │ ├── basic.config.yaml │ └── olm.config.yaml ├── controllers └── resources │ └── bentorequest_controller.go ├── generated └── resources │ ├── clientset │ └── versioned │ │ ├── clientset.go │ │ ├── doc.go │ │ ├── fake │ │ ├── clientset_generated.go │ │ ├── doc.go │ │ └── register.go │ │ ├── scheme │ │ ├── doc.go │ │ └── register.go │ │ └── typed │ │ └── resources │ │ └── v1alpha1 │ │ ├── bento.go │ │ ├── bentorequest.go │ │ ├── doc.go │ │ ├── fake │ │ ├── doc.go │ │ ├── fake_bento.go │ │ ├── fake_bentorequest.go │ │ └── fake_resources_client.go │ │ ├── generated_expansion.go │ │ └── resources_client.go │ ├── informers │ └── externalversions │ │ ├── factory.go │ │ ├── generic.go │ │ ├── internalinterfaces │ │ └── factory_interfaces.go │ │ └── resources │ │ ├── interface.go │ │ └── v1alpha1 │ │ ├── bento.go │ │ ├── bentorequest.go │ │ └── interface.go │ └── listers │ └── resources │ └── v1alpha1 │ ├── bento.go │ ├── bentorequest.go │ └── expansion_generated.go ├── go.mod ├── go.sum ├── hack ├── boilerplate.go.txt ├── tools.go └── update-codegen.sh ├── helm ├── yatai-image-builder-crds │ ├── .helmignore │ ├── Chart.yaml │ ├── Makefile │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ └── bentorequest.yaml │ └── values.yaml └── yatai-image-builder │ ├── Chart.yaml │ ├── Makefile │ ├── README.md │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── builder-configmap.yaml │ ├── builder-serviceaccount.yaml │ ├── certificate.yaml │ ├── clusterrole-yatai-with-bento-request.yaml │ ├── clusterrole.yaml │ ├── clusterrolebinding-yatai-with-bento-request.yaml │ ├── clusterrolebinding.yaml │ ├── deployment.yaml │ ├── issuer.yaml │ ├── range-role.yaml │ ├── range-rolebinding.yaml │ ├── role-in-yatai-system-namespace.yaml │ ├── role-yatai-in-yatai-system-namespace.yaml │ ├── role-yatai-with-bento-request.yaml │ ├── role-yatai-with-yatai-image-builder.yaml │ ├── role.yaml │ ├── rolebinding-in-yatai-system-namespace.yaml │ ├── rolebinding-yatai-in-yatai-system-namespace.yaml │ ├── rolebinding-yatai-with-bento-request.yaml │ ├── rolebinding-yatai-with-yatai-image-builder.yaml │ ├── rolebinding.yaml │ ├── secret-env.yaml │ ├── secret-shared-env.yaml │ ├── secret-yatai-common-env.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ ├── servicemonitor.yaml │ └── tests │ │ └── test-connection.yaml │ └── values.yaml ├── main.go ├── scripts ├── delete-yatai-image-builder.sh ├── quick-install-yatai-image-builder.sh └── start-dev.sh ├── tests ├── e2e │ ├── e2e_suite_test.go │ ├── e2e_test.go │ ├── example.yaml │ └── installation_test.sh ├── gh-actions │ ├── install_helm.sh │ ├── install_kind.sh │ └── kind-cluster-1-24.yaml └── utils │ └── utils.go ├── version └── version.go └── yatai-client └── client.go /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/back-port.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/.github/workflows/back-port.yaml -------------------------------------------------------------------------------- /.github/workflows/commands.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/.github/workflows/commands.yaml -------------------------------------------------------------------------------- /.github/workflows/e2e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/.github/workflows/e2e.yaml -------------------------------------------------------------------------------- /.github/workflows/lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/.github/workflows/lint.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/.golangci.yaml -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile-kaniko: -------------------------------------------------------------------------------- 1 | FROM gcr.io/kaniko-project/executor:debug 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/Makefile -------------------------------------------------------------------------------- /PROJECT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/PROJECT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/README.md -------------------------------------------------------------------------------- /apis/resources/v1alpha1/bento_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/apis/resources/v1alpha1/bento_types.go -------------------------------------------------------------------------------- /apis/resources/v1alpha1/bentorequest_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/apis/resources/v1alpha1/bentorequest_types.go -------------------------------------------------------------------------------- /apis/resources/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/apis/resources/v1alpha1/doc.go -------------------------------------------------------------------------------- /apis/resources/v1alpha1/groupversion_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/apis/resources/v1alpha1/groupversion_info.go -------------------------------------------------------------------------------- /apis/resources/v1alpha1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/apis/resources/v1alpha1/register.go -------------------------------------------------------------------------------- /apis/resources/v1alpha1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/apis/resources/v1alpha1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /bento-downloader/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/bento-downloader/Dockerfile -------------------------------------------------------------------------------- /bento-downloader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/bento-downloader/Makefile -------------------------------------------------------------------------------- /common/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/common/common.go -------------------------------------------------------------------------------- /common/consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/common/consts.go -------------------------------------------------------------------------------- /config/crd/bases/resources.yatai.ai_bentoes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/config/crd/bases/resources.yatai.ai_bentoes.yaml -------------------------------------------------------------------------------- /config/crd/bases/resources.yatai.ai_bentorequests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/config/crd/bases/resources.yatai.ai_bentorequests.yaml -------------------------------------------------------------------------------- /config/crd/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/config/crd/kustomization.yaml -------------------------------------------------------------------------------- /config/crd/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/config/crd/kustomizeconfig.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_bentoes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/config/crd/patches/cainjection_in_bentoes.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_resources_bentorequests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/config/crd/patches/cainjection_in_resources_bentorequests.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_bentoes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/config/crd/patches/webhook_in_bentoes.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_resources_bentorequests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/config/crd/patches/webhook_in_resources_bentorequests.yaml -------------------------------------------------------------------------------- /config/default/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/config/default/kustomization.yaml -------------------------------------------------------------------------------- /config/default/manager_auth_proxy_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/config/default/manager_auth_proxy_patch.yaml -------------------------------------------------------------------------------- /config/default/manager_config_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/config/default/manager_config_patch.yaml -------------------------------------------------------------------------------- /config/manager/controller_manager_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/config/manager/controller_manager_config.yaml -------------------------------------------------------------------------------- /config/manager/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/config/manager/kustomization.yaml -------------------------------------------------------------------------------- /config/manager/manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/config/manager/manager.yaml -------------------------------------------------------------------------------- /config/manifests/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/config/manifests/kustomization.yaml -------------------------------------------------------------------------------- /config/prometheus/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - monitor.yaml 3 | -------------------------------------------------------------------------------- /config/prometheus/monitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/config/prometheus/monitor.yaml -------------------------------------------------------------------------------- /config/rbac/auth_proxy_client_clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/config/rbac/auth_proxy_client_clusterrole.yaml -------------------------------------------------------------------------------- /config/rbac/auth_proxy_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/config/rbac/auth_proxy_role.yaml -------------------------------------------------------------------------------- /config/rbac/auth_proxy_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/config/rbac/auth_proxy_role_binding.yaml -------------------------------------------------------------------------------- /config/rbac/auth_proxy_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/config/rbac/auth_proxy_service.yaml -------------------------------------------------------------------------------- /config/rbac/bento_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/config/rbac/bento_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/bento_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/config/rbac/bento_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/config/rbac/kustomization.yaml -------------------------------------------------------------------------------- /config/rbac/leader_election_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/config/rbac/leader_election_role.yaml -------------------------------------------------------------------------------- /config/rbac/leader_election_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/config/rbac/leader_election_role_binding.yaml -------------------------------------------------------------------------------- /config/rbac/resources_bentorequest_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/config/rbac/resources_bentorequest_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/resources_bentorequest_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/config/rbac/resources_bentorequest_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/config/rbac/role.yaml -------------------------------------------------------------------------------- /config/rbac/role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/config/rbac/role_binding.yaml -------------------------------------------------------------------------------- /config/rbac/service_account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/config/rbac/service_account.yaml -------------------------------------------------------------------------------- /config/samples/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/config/samples/kustomization.yaml -------------------------------------------------------------------------------- /config/samples/resources_v1alpha1_bento.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/config/samples/resources_v1alpha1_bento.yaml -------------------------------------------------------------------------------- /config/samples/resources_v1alpha1_bentorequest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/config/samples/resources_v1alpha1_bentorequest.yaml -------------------------------------------------------------------------------- /config/scorecard/bases/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/config/scorecard/bases/config.yaml -------------------------------------------------------------------------------- /config/scorecard/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/config/scorecard/kustomization.yaml -------------------------------------------------------------------------------- /config/scorecard/patches/basic.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/config/scorecard/patches/basic.config.yaml -------------------------------------------------------------------------------- /config/scorecard/patches/olm.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/config/scorecard/patches/olm.config.yaml -------------------------------------------------------------------------------- /controllers/resources/bentorequest_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/controllers/resources/bentorequest_controller.go -------------------------------------------------------------------------------- /generated/resources/clientset/versioned/clientset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/generated/resources/clientset/versioned/clientset.go -------------------------------------------------------------------------------- /generated/resources/clientset/versioned/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/generated/resources/clientset/versioned/doc.go -------------------------------------------------------------------------------- /generated/resources/clientset/versioned/fake/clientset_generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/generated/resources/clientset/versioned/fake/clientset_generated.go -------------------------------------------------------------------------------- /generated/resources/clientset/versioned/fake/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/generated/resources/clientset/versioned/fake/doc.go -------------------------------------------------------------------------------- /generated/resources/clientset/versioned/fake/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/generated/resources/clientset/versioned/fake/register.go -------------------------------------------------------------------------------- /generated/resources/clientset/versioned/scheme/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/generated/resources/clientset/versioned/scheme/doc.go -------------------------------------------------------------------------------- /generated/resources/clientset/versioned/scheme/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/generated/resources/clientset/versioned/scheme/register.go -------------------------------------------------------------------------------- /generated/resources/clientset/versioned/typed/resources/v1alpha1/bento.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/generated/resources/clientset/versioned/typed/resources/v1alpha1/bento.go -------------------------------------------------------------------------------- /generated/resources/clientset/versioned/typed/resources/v1alpha1/bentorequest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/generated/resources/clientset/versioned/typed/resources/v1alpha1/bentorequest.go -------------------------------------------------------------------------------- /generated/resources/clientset/versioned/typed/resources/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/generated/resources/clientset/versioned/typed/resources/v1alpha1/doc.go -------------------------------------------------------------------------------- /generated/resources/clientset/versioned/typed/resources/v1alpha1/fake/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/generated/resources/clientset/versioned/typed/resources/v1alpha1/fake/doc.go -------------------------------------------------------------------------------- /generated/resources/clientset/versioned/typed/resources/v1alpha1/fake/fake_bento.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/generated/resources/clientset/versioned/typed/resources/v1alpha1/fake/fake_bento.go -------------------------------------------------------------------------------- /generated/resources/clientset/versioned/typed/resources/v1alpha1/fake/fake_bentorequest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/generated/resources/clientset/versioned/typed/resources/v1alpha1/fake/fake_bentorequest.go -------------------------------------------------------------------------------- /generated/resources/clientset/versioned/typed/resources/v1alpha1/fake/fake_resources_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/generated/resources/clientset/versioned/typed/resources/v1alpha1/fake/fake_resources_client.go -------------------------------------------------------------------------------- /generated/resources/clientset/versioned/typed/resources/v1alpha1/generated_expansion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/generated/resources/clientset/versioned/typed/resources/v1alpha1/generated_expansion.go -------------------------------------------------------------------------------- /generated/resources/clientset/versioned/typed/resources/v1alpha1/resources_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/generated/resources/clientset/versioned/typed/resources/v1alpha1/resources_client.go -------------------------------------------------------------------------------- /generated/resources/informers/externalversions/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/generated/resources/informers/externalversions/factory.go -------------------------------------------------------------------------------- /generated/resources/informers/externalversions/generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/generated/resources/informers/externalversions/generic.go -------------------------------------------------------------------------------- /generated/resources/informers/externalversions/internalinterfaces/factory_interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/generated/resources/informers/externalversions/internalinterfaces/factory_interfaces.go -------------------------------------------------------------------------------- /generated/resources/informers/externalversions/resources/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/generated/resources/informers/externalversions/resources/interface.go -------------------------------------------------------------------------------- /generated/resources/informers/externalversions/resources/v1alpha1/bento.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/generated/resources/informers/externalversions/resources/v1alpha1/bento.go -------------------------------------------------------------------------------- /generated/resources/informers/externalversions/resources/v1alpha1/bentorequest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/generated/resources/informers/externalversions/resources/v1alpha1/bentorequest.go -------------------------------------------------------------------------------- /generated/resources/informers/externalversions/resources/v1alpha1/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/generated/resources/informers/externalversions/resources/v1alpha1/interface.go -------------------------------------------------------------------------------- /generated/resources/listers/resources/v1alpha1/bento.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/generated/resources/listers/resources/v1alpha1/bento.go -------------------------------------------------------------------------------- /generated/resources/listers/resources/v1alpha1/bentorequest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/generated/resources/listers/resources/v1alpha1/bentorequest.go -------------------------------------------------------------------------------- /generated/resources/listers/resources/v1alpha1/expansion_generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/generated/resources/listers/resources/v1alpha1/expansion_generated.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/go.sum -------------------------------------------------------------------------------- /hack/boilerplate.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/hack/boilerplate.go.txt -------------------------------------------------------------------------------- /hack/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/hack/tools.go -------------------------------------------------------------------------------- /hack/update-codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/hack/update-codegen.sh -------------------------------------------------------------------------------- /helm/yatai-image-builder-crds/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/helm/yatai-image-builder-crds/.helmignore -------------------------------------------------------------------------------- /helm/yatai-image-builder-crds/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/helm/yatai-image-builder-crds/Chart.yaml -------------------------------------------------------------------------------- /helm/yatai-image-builder-crds/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/helm/yatai-image-builder-crds/Makefile -------------------------------------------------------------------------------- /helm/yatai-image-builder-crds/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/helm/yatai-image-builder-crds/templates/NOTES.txt -------------------------------------------------------------------------------- /helm/yatai-image-builder-crds/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/helm/yatai-image-builder-crds/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/yatai-image-builder-crds/templates/bentorequest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/helm/yatai-image-builder-crds/templates/bentorequest.yaml -------------------------------------------------------------------------------- /helm/yatai-image-builder-crds/values.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /helm/yatai-image-builder/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/helm/yatai-image-builder/Chart.yaml -------------------------------------------------------------------------------- /helm/yatai-image-builder/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/helm/yatai-image-builder/Makefile -------------------------------------------------------------------------------- /helm/yatai-image-builder/README.md: -------------------------------------------------------------------------------- 1 | # yatai-image-builder helm chart 2 | -------------------------------------------------------------------------------- /helm/yatai-image-builder/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/helm/yatai-image-builder/templates/NOTES.txt -------------------------------------------------------------------------------- /helm/yatai-image-builder/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/helm/yatai-image-builder/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/yatai-image-builder/templates/builder-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/helm/yatai-image-builder/templates/builder-configmap.yaml -------------------------------------------------------------------------------- /helm/yatai-image-builder/templates/builder-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/helm/yatai-image-builder/templates/builder-serviceaccount.yaml -------------------------------------------------------------------------------- /helm/yatai-image-builder/templates/certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/helm/yatai-image-builder/templates/certificate.yaml -------------------------------------------------------------------------------- /helm/yatai-image-builder/templates/clusterrole-yatai-with-bento-request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/helm/yatai-image-builder/templates/clusterrole-yatai-with-bento-request.yaml -------------------------------------------------------------------------------- /helm/yatai-image-builder/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/helm/yatai-image-builder/templates/clusterrole.yaml -------------------------------------------------------------------------------- /helm/yatai-image-builder/templates/clusterrolebinding-yatai-with-bento-request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/helm/yatai-image-builder/templates/clusterrolebinding-yatai-with-bento-request.yaml -------------------------------------------------------------------------------- /helm/yatai-image-builder/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/helm/yatai-image-builder/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /helm/yatai-image-builder/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/helm/yatai-image-builder/templates/deployment.yaml -------------------------------------------------------------------------------- /helm/yatai-image-builder/templates/issuer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/helm/yatai-image-builder/templates/issuer.yaml -------------------------------------------------------------------------------- /helm/yatai-image-builder/templates/range-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/helm/yatai-image-builder/templates/range-role.yaml -------------------------------------------------------------------------------- /helm/yatai-image-builder/templates/range-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/helm/yatai-image-builder/templates/range-rolebinding.yaml -------------------------------------------------------------------------------- /helm/yatai-image-builder/templates/role-in-yatai-system-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/helm/yatai-image-builder/templates/role-in-yatai-system-namespace.yaml -------------------------------------------------------------------------------- /helm/yatai-image-builder/templates/role-yatai-in-yatai-system-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/helm/yatai-image-builder/templates/role-yatai-in-yatai-system-namespace.yaml -------------------------------------------------------------------------------- /helm/yatai-image-builder/templates/role-yatai-with-bento-request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/helm/yatai-image-builder/templates/role-yatai-with-bento-request.yaml -------------------------------------------------------------------------------- /helm/yatai-image-builder/templates/role-yatai-with-yatai-image-builder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/helm/yatai-image-builder/templates/role-yatai-with-yatai-image-builder.yaml -------------------------------------------------------------------------------- /helm/yatai-image-builder/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/helm/yatai-image-builder/templates/role.yaml -------------------------------------------------------------------------------- /helm/yatai-image-builder/templates/rolebinding-in-yatai-system-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/helm/yatai-image-builder/templates/rolebinding-in-yatai-system-namespace.yaml -------------------------------------------------------------------------------- /helm/yatai-image-builder/templates/rolebinding-yatai-in-yatai-system-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/helm/yatai-image-builder/templates/rolebinding-yatai-in-yatai-system-namespace.yaml -------------------------------------------------------------------------------- /helm/yatai-image-builder/templates/rolebinding-yatai-with-bento-request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/helm/yatai-image-builder/templates/rolebinding-yatai-with-bento-request.yaml -------------------------------------------------------------------------------- /helm/yatai-image-builder/templates/rolebinding-yatai-with-yatai-image-builder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/helm/yatai-image-builder/templates/rolebinding-yatai-with-yatai-image-builder.yaml -------------------------------------------------------------------------------- /helm/yatai-image-builder/templates/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/helm/yatai-image-builder/templates/rolebinding.yaml -------------------------------------------------------------------------------- /helm/yatai-image-builder/templates/secret-env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/helm/yatai-image-builder/templates/secret-env.yaml -------------------------------------------------------------------------------- /helm/yatai-image-builder/templates/secret-shared-env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/helm/yatai-image-builder/templates/secret-shared-env.yaml -------------------------------------------------------------------------------- /helm/yatai-image-builder/templates/secret-yatai-common-env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/helm/yatai-image-builder/templates/secret-yatai-common-env.yaml -------------------------------------------------------------------------------- /helm/yatai-image-builder/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/helm/yatai-image-builder/templates/service.yaml -------------------------------------------------------------------------------- /helm/yatai-image-builder/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/helm/yatai-image-builder/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helm/yatai-image-builder/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/helm/yatai-image-builder/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /helm/yatai-image-builder/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/helm/yatai-image-builder/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /helm/yatai-image-builder/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/helm/yatai-image-builder/values.yaml -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/main.go -------------------------------------------------------------------------------- /scripts/delete-yatai-image-builder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/scripts/delete-yatai-image-builder.sh -------------------------------------------------------------------------------- /scripts/quick-install-yatai-image-builder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/scripts/quick-install-yatai-image-builder.sh -------------------------------------------------------------------------------- /scripts/start-dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/scripts/start-dev.sh -------------------------------------------------------------------------------- /tests/e2e/e2e_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/tests/e2e/e2e_suite_test.go -------------------------------------------------------------------------------- /tests/e2e/e2e_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/tests/e2e/e2e_test.go -------------------------------------------------------------------------------- /tests/e2e/example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/tests/e2e/example.yaml -------------------------------------------------------------------------------- /tests/e2e/installation_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/tests/e2e/installation_test.sh -------------------------------------------------------------------------------- /tests/gh-actions/install_helm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/tests/gh-actions/install_helm.sh -------------------------------------------------------------------------------- /tests/gh-actions/install_kind.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/tests/gh-actions/install_kind.sh -------------------------------------------------------------------------------- /tests/gh-actions/kind-cluster-1-24.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/tests/gh-actions/kind-cluster-1-24.yaml -------------------------------------------------------------------------------- /tests/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/tests/utils/utils.go -------------------------------------------------------------------------------- /version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/version/version.go -------------------------------------------------------------------------------- /yatai-client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/yatai-image-builder/HEAD/yatai-client/client.go --------------------------------------------------------------------------------