runway.config.models.runway.options.k8s module¶
Runway Kubernetes Module options.
- pydantic model runway.config.models.runway.options.k8s.RunwayK8sModuleOptionsDataModel[source]¶
Bases:
ConfigProperty
Model for Runway Kubernetes Module options.
Show JSON schema
{ "title": "Runway Kubernetes Module options", "description": "Model for Runway Kubernetes Module options.", "type": "object", "properties": { "kubectl_version": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Kubectl Version" }, "overlay_path": { "anyOf": [ { "format": "path", "type": "string" }, { "type": "null" } ], "default": null, "title": "Overlay Path" } } }