Skip to content

ApplicationDeploymentProps

Properties for defining a ApplicationDeployment.

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

Initializer

using AlibabaCloud.SDK.ROS.CDK.Cs;
new ApplicationDeploymentProps {
    object ChartUrl,
    object ClusterId,
    object Name,
    object Namespace,
    object Type,
    object Values = null
};

Properties

Name Type Description
ChartUrl object Property chartUrl: Helm chart package URL, must be a valid URL.
ClusterId object Property clusterId: The cluster id of the deployed application.
Name object Property name: Name of the deployed application.
Namespace object Property namespace: Deployment namespace.
Type object Property type: Type of the deployed application, currently can only be helm.
Values object Property values: Helm deployment parameters, a map that will be converted to YAML text.

ChartUrlRequired

public object ChartUrl { get; set; }
  • Type: object

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


ClusterIdRequired

public object ClusterId { get; set; }
  • Type: object

Property clusterId: The cluster id of the deployed application.


NameRequired

public object Name { get; set; }
  • Type: object

Property name: Name of the deployed application.


NamespaceRequired

public object Namespace { get; set; }
  • Type: object

Property namespace: Deployment namespace.


TypeRequired

public object Type { get; set; }
  • Type: object

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


ValuesOptional

public object Values { get; set; }
  • Type: object

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