RegistryPullSecret#

pydantic model phalanx.models.secrets.RegistryPullSecret#

Pull secret for a specific Docker Repository.

Parameters:

data (Any) –

Show JSON schema
{
   "title": "RegistryPullSecret",
   "description": "Pull secret for a specific Docker Repository.",
   "type": "object",
   "properties": {
      "username": {
         "title": "Username",
         "description": "HTTP Basic Auth username",
         "type": "string"
      },
      "password": {
         "title": "Password",
         "description": "HTTP Basic Auth password",
         "type": "string",
         "writeOnly": true,
         "format": "password"
      }
   },
   "required": [
      "username",
      "password"
   ],
   "additionalProperties": false
}

Config:
  • extra: Extra = Extra.forbid

Fields:
field password: SecretStr [Required]#

HTTP Basic Auth password

Constraints:
  • type = string

  • writeOnly = True

  • format = password

field username: str [Required]#

HTTP Basic Auth username