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
Note that the pull secret for the `quay.io/openshift-release-dev/ocp-release` container image can be acquired [here](https://console.redhat.com/openshift/install/pull-secret).
55
+
56
+
In case you want to utilize different credentials for the same container image registry domain, for example,
57
+
one set of credentials for the existing release image and one for a personal location where to upload the new release
58
+
image in the same container image registry domain, the following unsupported methods are possible at the moment.
59
+
Note that these methods may not be supported or functional when used with other container tools.
60
+
61
+
The main idea is to modify the used [authentication file](https://docs.podman.io/en/latest/markdown/podman-login.1.html#authfile-path)
62
+
and specify a second `auth` entry that has a specified port or path, which acts as a new entry for which different
63
+
credentials can be specified.
64
+
65
+
Given an authentication file with a specified path:
66
+
67
+
```json
68
+
{
69
+
"auths": {
70
+
"quay.io/username": {
71
+
"auth": "token to be used when accessing the username's namespace"
72
+
},
73
+
"quay.io": {
74
+
"auth": "broad token to be used when the quay.io host is specified"
75
+
}
76
+
}
77
+
}
78
+
```
79
+
80
+
Build and publish a release image:
81
+
82
+
```console
83
+
$ oc adm release new --from-release=quay.io/openshift-release-dev/ocp-release:4.11.18-x86_64 \
0 commit comments