package awseks // Properties for KubernetesPatch. // // Example: // var cluster cluster // // eks.NewKubernetesPatch(this, jsii.String("hello-kub-deployment-label"), &KubernetesPatchProps{ // Cluster: Cluster, // ResourceName: jsii.String("deployment/hello-kubernetes"), // ApplyPatch: map[string]interface{}{ // "spec": map[string]*f64{ // "replicas": jsii.Number(5), // }, // }, // RestorePatch: map[string]interface{}{ // "spec": map[string]*f64{ // "replicas": jsii.Number(3), // }, // }, // }) // type KubernetesPatchProps struct { // The JSON object to pass to `kubectl patch` when the resource is created/updated. ApplyPatch *map[string]interface{} `field:"required" json:"applyPatch" yaml:"applyPatch"` // The cluster to apply the patch to. // // [disable-awslint:ref-via-interface]. Cluster ICluster `field:"required" json:"cluster" yaml:"cluster"` // The full name of the resource to patch (e.g. `deployment/coredns`). ResourceName *string `field:"required" json:"resourceName" yaml:"resourceName"` // The JSON object to pass to `kubectl patch` when the resource is removed. RestorePatch *map[string]interface{} `field:"required" json:"restorePatch" yaml:"restorePatch"` // The patch type to pass to `kubectl patch`. // // The default type used by `kubectl patch` is "strategic". PatchType PatchType `field:"optional" json:"patchType" yaml:"patchType"` // The kubernetes API namespace. ResourceNamespace *string `field:"optional" json:"resourceNamespace" yaml:"resourceNamespace"` }