create-container-registry-auth
Generate authentication credentials for container registries to securely access private container images when deploying pods on RunPod infrastructure.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Name for the container registry auth | |
password | Yes | Registry password | |
username | Yes | Registry username |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "Name for the container registry auth",
"type": "string"
},
"password": {
"description": "Registry password",
"type": "string"
},
"username": {
"description": "Registry username",
"type": "string"
}
},
"required": [
"name",
"username",
"password"
],
"type": "object"
}