KustomizationDefinition Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
KustomizationDefinition() |
Initializes a new instance of the KustomizationDefinition class. |
KustomizationDefinition(String, String, IList<String>, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, Nullable<Boolean>, Nullable<Boolean>) |
Initializes a new instance of the KustomizationDefinition class. |
KustomizationDefinition()
Initializes a new instance of the KustomizationDefinition class.
public KustomizationDefinition ();
Public Sub New ()
Applies to
KustomizationDefinition(String, String, IList<String>, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, Nullable<Boolean>, Nullable<Boolean>)
Initializes a new instance of the KustomizationDefinition class.
public KustomizationDefinition (string name = default, string path = default, System.Collections.Generic.IList<string> dependsOn = default, long? timeoutInSeconds = default, long? syncIntervalInSeconds = default, long? retryIntervalInSeconds = default, bool? prune = default, bool? force = default);
new Microsoft.Azure.Management.KubernetesConfiguration.Models.KustomizationDefinition : string * string * System.Collections.Generic.IList<string> * Nullable<int64> * Nullable<int64> * Nullable<int64> * Nullable<bool> * Nullable<bool> -> Microsoft.Azure.Management.KubernetesConfiguration.Models.KustomizationDefinition
Public Sub New (Optional name As String = Nothing, Optional path As String = Nothing, Optional dependsOn As IList(Of String) = Nothing, Optional timeoutInSeconds As Nullable(Of Long) = Nothing, Optional syncIntervalInSeconds As Nullable(Of Long) = Nothing, Optional retryIntervalInSeconds As Nullable(Of Long) = Nothing, Optional prune As Nullable(Of Boolean) = Nothing, Optional force As Nullable(Of Boolean) = Nothing)
Parameters
- name
- String
Name of the Kustomization, matching the key in the Kustomizations object map.
- path
- String
The path in the source reference to reconcile on the cluster.
Specifies other Kustomizations that this Kustomization depends on. This Kustomization will not reconcile until all dependencies have completed their reconciliation.
The maximum time to attempt to reconcile the Kustomization on the cluster.
The interval at which to re-reconcile the Kustomization on the cluster.
The interval at which to re-reconcile the Kustomization on the cluster in the event of failure on reconciliation.
Enable/disable garbage collections of Kubernetes objects created by this Kustomization.
Enable/disable re-creating Kubernetes resources on the cluster when patching fails due to an immutable field change.