Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions x/realms/docker.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,9 @@ var (
DockerRegistryStagingAuthentication = secrets.MustParsePattern("docker/auth/registry/docker-staging/**")
)

// DockerHubAuthenticationMetadata is a pointer to the default user signed in to Docker
var DockerHubAuthenticationMetadata = secrets.MustParsePattern("docker/auth/metadata/hub/**")
var (
// DockerHubAuthenticationMetadata is a pointer to the default user signed in to Docker
DockerHubAuthenticationMetadata = secrets.MustParsePattern("docker/auth/metadata/hub/**")
// DockerHubStagingAuthenticationMetadata is a pointer to the default staging user signed in to Docker
Comment thread
Benehiko marked this conversation as resolved.
DockerHubStagingAuthenticationMetadata = secrets.MustParsePattern("docker/auth/metadata/hub-staging/**")
)
Loading