Overrides on the deployment specification.
Name | Type | Description | Notes |
---|---|---|---|
service | str | [optional] | |
image | str | [optional] | |
namespace | str | [optional] | |
network | str | [optional] | |
env_vars | Dict[str, str] | [optional] | |
constraints | List[str] | [optional] | |
labels | Dict[str, str] | [optional] | |
annotations | Dict[str, str] | [optional] | |
secrets | List[str] | [optional] | |
registry_auth | str | [optional] | |
limits | ResourceLimits | [optional] | |
requests | ResourceLimits | [optional] | |
read_only_root_filesystem | bool | [optional] |
from waylay.services.registry.models.deploy_args_deploy_spec_overrides import DeployArgsDeploySpecOverrides
# TODO update the JSON string below
json = "{}"
# create an instance of DeployArgsDeploySpecOverrides from a JSON string
deploy_args_deploy_spec_overrides_instance = DeployArgsDeploySpecOverrides.from_json(json)
# print the JSON string representation of the object
print DeployArgsDeploySpecOverrides.to_json()
# convert the object into a dict
deploy_args_deploy_spec_overrides_dict = deploy_args_deploy_spec_overrides_instance.to_dict()
# create an instance of DeployArgsDeploySpecOverrides from a dict
deploy_args_deploy_spec_overrides_form_dict = deploy_args_deploy_spec_overrides.from_dict(deploy_args_deploy_spec_overrides_dict)