ConditionalMixin

pydantic model phalanx.models.secrets.ConditionalMixin

Mix-in class for elements that may have a condition.

Parameters:

data (Any)

Show JSON schema
{
   "title": "ConditionalMixin",
   "description": "Mix-in class for elements that may have a condition.",
   "type": "object",
   "properties": {
      "if": {
         "anyOf": [
            {
               "type": "string"
            },
            {
               "type": "null"
            }
         ],
         "default": null,
         "description": "Configuration only applies if this Helm chart setting is set to a true value",
         "title": "Condition"
      }
   }
}

Fields:
field condition: str | None = None (alias 'if')

Configuration only applies if this Helm chart setting is set to a true value