mirror of
https://github.com/fosrl/pangolin.git
synced 2026-05-21 01:11:38 -05:00
[GH-ISSUE #2174] docker label for blueprints is not accepting an array for sso-roles #2086
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @trexwe on GitHub (Dec 28, 2025).
Original GitHub issue: https://github.com/fosrl/pangolin/issues/2174
Originally assigned to: @oschwartz10612 on GitHub.
Describe the Bug
I'm adding docker labels to my containers, and I want to add the auth.sso-roles label.
I've tried:
[...].auth.sso-roles=Member
[...].auth.sso-roles=[Member]
[...].auth.sso-roles[0]=Member
[...].auth.sso-roles=["Member"]
The error I'm getting in the newt log:
I must not have the right syntax for an array, but I can't figure it out. Please help, or please fix the documentation or code so that it accepts the [0] array like other labels that take arrays with the [0]= syntax.
Environment
To Reproduce
add docker labels to a resource, with sso-roles as one of them.
Expected Behavior
Ingest the sso-roles label correctly
@Noggog commented on GitHub (Jan 3, 2026):
Hmm, after some playing around, this did work for me:
@LunkSnee commented on GitHub (Jan 12, 2026):
Thanks, Noggog. Did it work for you if you just had 1, only Member, not Newbie
@Noggog commented on GitHub (Jan 12, 2026):
Yes, it has been working for me with just a single entry so far
@oschwartz10612 commented on GitHub (Jan 20, 2026):
Sounds like this is "resolved"? If I am wrong please feel free to reopen!