create-container-registry-auth
Generate and manage authentication credentials for container registries, specifying name, username, and password, to securely access and deploy containerized applications on the Novita MCP Server.
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)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"description": "Name for the container registry auth.",
"maxLength": 255,
"minLength": 1,
"type": "string"
},
"password": {
"description": "Registry password.",
"maxLength": 1024,
"minLength": 1,
"type": "string"
},
"username": {
"description": "Registry username.",
"maxLength": 511,
"minLength": 1,
"type": "string"
}
},
"required": [
"name",
"username",
"password"
],
"type": "object"
}