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. |
ChartUrl
Required
public object ChartUrl { get; set; }
- Type: object
Property chartUrl: Helm chart package URL, must be a valid URL.
ClusterId
Required
public object ClusterId { get; set; }
- Type: object
Property clusterId: The cluster id of the deployed application.
Name
Required
public object Name { get; set; }
- Type: object
Property name: Name of the deployed application.
Namespace
Required
public object Namespace { get; set; }
- Type: object
Property namespace: Deployment namespace.
Type
Required
public object Type { get; set; }
- Type: object
Property type: Type of the deployed application, currently can only be helm.
Values
Optional
public object Values { get; set; }
- Type: object
Property values: Helm deployment parameters, a map that will be converted to YAML text.