Changeset View
Changeset View
Standalone View
Standalone View
python_modules/automation/automation/helm/schema/kubernetes.py
- This file was copied to python_modules/automation/automation/helm/schema/definitions.py.
Show First 20 Lines • Show All 71 Lines • ▼ Show 20 Lines | |||||
class StartupProbe(BaseModel): | class StartupProbe(BaseModel): | ||||
class Config: | class Config: | ||||
schema_extra = { | schema_extra = { | ||||
"$ref": create_definition_ref( | "$ref": create_definition_ref( | ||||
"io.k8s.api.core.v1.Container/properties/startupProbe", | "io.k8s.api.core.v1.Container/properties/startupProbe", | ||||
version=SupportedKubernetes.V1_16, | version=SupportedKubernetes.V1_16, | ||||
) | ) | ||||
} | } | ||||
class SecretEnvSource(BaseModel): | |||||
class Config: | |||||
schema_extra = {"$ref": create_definition_ref("io.k8s.api.core.v1.SecretEnvSource")} |