Returns the specified system scope registry configuration
GET/v1/registries/:registryName/config
Returns the specified system scope registry configuration
Request
Path Parameters
registryName stringrequired
Header Parameters
ProjectUid string
Scope the request to the specified project uid
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema
config
object
Registry configuration
auth
object
Auth credentials of the registry
passwordpassword
tls
object
TLS configuration
castring
certificatestring
enabledboolean
insecureSkipVerifyboolean
keystring
tokenpassword
typestring
Possible values: [noAuth, basic, token]
usernamestring
endpointstring
namestring
{
  "config": {
    "auth": {
      "password": "string",
      "tls": {
        "ca": "string",
        "certificate": "string",
        "enabled": true,
        "insecureSkipVerify": true,
        "key": "string"
      },
      "token": "string",
      "type": "noAuth",
      "username": "string"
    },
    "endpoint": "string",
    "name": "string"
  }
}
Loading...