You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When configuring image pull secrets when using private docker repositories for both postgres and dependency track the charts require different format image pull secrets and dependency track only reads them from global
The dependency track chart expects image pull secrets in the values:
global:
imagePullSecrets:
- name: regcred
The postgres chart expects image pull secrets in the values:
global:
imagePullSecrets:
- regcred
Version of Helm and Kubernetes:
Which chart:
Dependency Track
How to reproduce it (as minimally and precisely as possible):
Rather than using global values for the image pull secrets could you add .Values.imagePullSecrets value to the dependency track chart and default to the global value if it's null
The text was updated successfully, but these errors were encountered:
…crets
conflict between postgres and dependency track image pull secrets mean you can't use private repositories for both postgres and dependency track images. this standardises to bitnami approach
BREAKING CHANGE: re: evryfs#183
Signed-off-by: Matt Searle <[email protected]>
Describe the bug
When configuring image pull secrets when using private docker repositories for both postgres and dependency track the charts require different format image pull secrets and dependency track only reads them from global
The dependency track chart expects image pull secrets in the values:
The postgres chart expects image pull secrets in the values:
Version of Helm and Kubernetes:
Which chart:
Dependency Track
How to reproduce it (as minimally and precisely as possible):
Using values
What happened:
What you expected to happen:
Anything else we need to know:
Rather than using global values for the image pull secrets could you add
.Values.imagePullSecrets
value to the dependency track chart and default to the global value if it's nullThe text was updated successfully, but these errors were encountered: