This repository has been archived by the owner on Nov 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Docker credentials fails for secrets created with kubectl v1.13.0 #1596
Labels
Comments
@awh tracked this down to kubernetes/kubernetes@9f5c2ae, which redefines Unclear whether it was deliberate or not ... |
So... any ETA on fixing this? |
Looks like it's been fixed in kubectl, in time for 1.14: kubernetes/kubernetes#72344 I am inclined to add an entry to troubleshooting.md advising people to create secrets with a kubectl either side of 1.13. |
@squaremo thanks, updated |
@dananichev Oh, so it's fixed in 1.13.2? Hurrah! |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
If you create a dockerconfigjson secret for use as an imagePullSecret, using kubectl v.1.13.0, fluxd is not able to parse it when it comes to scanning the image registry.
The reason is that the format generated by v1.13.0 is different to that prior: using v.1.12,
Using v1.13.0:
It's the lack of an
auth
field that trips fluxd up; but the capitalisation might also cause a problem. It's unclear whether this was an entirely deliberate change; we can probably work around it by looking forUsername
andPassword
fields (in preference to decodingauth
, even).The text was updated successfully, but these errors were encountered: