ArmKubernetesConfigurationModelFactory.Kustomization Method
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.
Initializes a new instance of Kustomization.
public static Azure.ResourceManager.KubernetesConfiguration.Models.Kustomization Kustomization (string name = default, string path = default, System.Collections.Generic.IEnumerable<string> dependsOn = default, long? timeoutInSeconds = default, long? syncIntervalInSeconds = default, long? retryIntervalInSeconds = default, bool? prune = default, bool? force = default);
static member Kustomization : string * string * seq<string> * Nullable<int64> * Nullable<int64> * Nullable<int64> * Nullable<bool> * Nullable<bool> -> Azure.ResourceManager.KubernetesConfiguration.Models.Kustomization
Public Shared Function Kustomization (Optional name As String = Nothing, Optional path As String = Nothing, Optional dependsOn As IEnumerable(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) As Kustomization
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.
- dependsOn
- IEnumerable<String>
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.
Returns
A new Kustomization instance for mocking.