-
Notifications
You must be signed in to change notification settings - Fork 121
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support imagePullSecrets in ServingRuntime #214
Comments
Hi @njhill , I tested this method but found that it is a system-wide configuration on the |
#### Motivation fix #214 #### Modifications 1. Update servingRuntime CRDs to include imagePullSecrets 2. pass imagePullSecrets from Configuration and ServingRuntimePodSpec to deployment.Spec.Template and add tests 3. add docs in Configuration #### Result The user is able to pass imagePullSecrets from configuration and servingRuntime to runtime pod and uses images from the private image registry. Signed-off-by: Lize Cai <lize.cai@sap.com>
#### Motivation fix opendatahub-io#214 #### Modifications 1. Update servingRuntime CRDs to include imagePullSecrets 2. pass imagePullSecrets from Configuration and ServingRuntimePodSpec to deployment.Spec.Template and add tests 3. add docs in Configuration #### Result The user is able to pass imagePullSecrets from configuration and servingRuntime to runtime pod and uses images from the private image registry. Signed-off-by: Lize Cai <lize.cai@sap.com>
Is your feature request related to a problem? If so, please describe.
Most of our use cases are using
custom
servingRuntime which are built by the users. In this case, the servingRuntime image mostly will be stored in the user's private image registry.However, the current ServingRuntime CRD doesn't have the
imagePullSecrets
, so we are not able to provide it to the user.Describe your proposed solution
support
imagePullSecrets
underServingRuntime.spec
Describe alternatives you have considered
Similiar to InferenceService CRD, ServingRuntime should be able to support most of the Pod Spec.
Additional context
The text was updated successfully, but these errors were encountered: