-
What is the correct way to specify imagePullSecret for the task/workflow pods? I'm trying to use a private Docker registry and currently get the "Container with unready status" error |
Beta Was this translation helpful? Give feedback.
Answered by
kumare3
Jun 8, 2021
Replies: 1 comment 1 reply
-
There are a few ways to do this,
|
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
kumare3
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There are a few ways to do this,
Manually
: Update the default service account (or if using a specific serviceaccount then update that account) to add the imagePullSecrets. As explained hereAutomatically
: For every new project added to Flyte, Flyte runs a specific component called theClusterResourceManager
, which is responsible to keep the cluster in sync with these various requirements. This is an optional component. It essentially applies some K8s resource with a few templatable parameters to all namespaces that flyte will use.- For Helm an example can be seen here. The example shows how to patch the default service account.
- For kustomize similarly - Add the template here and refer…