Skip to content

ApplicationDeploymentProps

Properties for defining a ApplicationDeployment.

See https://www.alibabacloud.com/help/ros/developer-reference/aliyun-cs-applicationdeployment

Initializer

import ros_cdk_cs
ros_cdk_cs.ApplicationDeploymentProps(
  chart_url: typing.Union[str, IResolvable],
  cluster_id: typing.Union[str, IResolvable],
  name: typing.Union[str, IResolvable],
  namespace: typing.Union[str, IResolvable],
  type: typing.Union[str, IResolvable],
  values: typing.Union[IResolvable, typing.Mapping[typing.Any]] = None
)

Properties

Name Type Description
chart_url typing.Union[str, ros_cdk_core.IResolvable] Property chartUrl: Helm chart package URL, must be a valid URL.
cluster_id typing.Union[str, ros_cdk_core.IResolvable] Property clusterId: The cluster id of the deployed application.
name typing.Union[str, ros_cdk_core.IResolvable] Property name: Name of the deployed application.
namespace typing.Union[str, ros_cdk_core.IResolvable] Property namespace: Deployment namespace.
type typing.Union[str, ros_cdk_core.IResolvable] Property type: Type of the deployed application, currently can only be helm.
values typing.Union[ros_cdk_core.IResolvable, typing.Mapping[typing.Any]] Property values: Helm deployment parameters, a map that will be converted to YAML text.

chart_urlRequired

chart_url: typing.Union[str, IResolvable]
  • Type: typing.Union[str, ros_cdk_core.IResolvable]

Property chartUrl: Helm chart package URL, must be a valid URL.


cluster_idRequired

cluster_id: typing.Union[str, IResolvable]
  • Type: typing.Union[str, ros_cdk_core.IResolvable]

Property clusterId: The cluster id of the deployed application.


nameRequired

name: typing.Union[str, IResolvable]
  • Type: typing.Union[str, ros_cdk_core.IResolvable]

Property name: Name of the deployed application.


namespaceRequired

namespace: typing.Union[str, IResolvable]
  • Type: typing.Union[str, ros_cdk_core.IResolvable]

Property namespace: Deployment namespace.


typeRequired

type: typing.Union[str, IResolvable]
  • Type: typing.Union[str, ros_cdk_core.IResolvable]

Property type: Type of the deployed application, currently can only be helm.


valuesOptional

values: typing.Union[IResolvable, typing.Mapping[typing.Any]]
  • Type: typing.Union[ros_cdk_core.IResolvable, typing.Mapping[typing.Any]]

Property values: Helm deployment parameters, a map that will be converted to YAML text.