Image Registry Credential
Image registry credential.
Properties
Name | Type | Required |
---|---|---|
server |
string | Yes |
username |
string | Yes |
passwordType |
string (enum) | No |
password |
string | No |
server
Type: string
Required: Yes
Docker image registry server, without protocol such as http
and https
.
username
Type: string
Required: Yes
The username for the private registry.
passwordType
Type: string (enum)
Required: No
Default: ClearText
The type of the image registry password being given in password
Possible values are:
ClearText
- The image registry password in clear text, will not be processed in any way and used directlyKeyVaultReference
- The URI to a KeyVault secret version, will be resolved using the application's managed identity (this type is only valid if the app was assigned a managed identity) before getting usedSecretValueReference
- The reference to a SecretValue resource, will be resolved before getting used
password
Type: string
Required: No
The password for the private registry. The password is required for create or update operations, however it is not returned in the get or list operations. Will be processed based on the type provided.