Class AlbController
(deprecated) Construct for installing the AWS ALB Contoller on EKS clusters.
Namespace: Amazon.CDK.AWS.Eks.V2.Alpha
Assembly: Amazon.CDK.AWS.Eks.V2.Alpha.dll
Syntax (csharp)
[Obsolete]
public class AlbController : Construct
Syntax (vb)
<Obsolete>
Public Class AlbController Inherits Construct
Remarks
Use the factory functions get and getOrCreate to obtain/create instances of this controller.
Stability: Deprecated
See: https://kubernetes-sigs.github.io/aws-load-balancer-controller
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Eks.V2.Alpha;
using Amazon.CDK;
var additionalHelmChartValues;
AlbControllerVersion albControllerVersion;
Cluster cluster;
var policy;
var albController = new AlbController(this, "MyAlbController", new AlbControllerProps {
Cluster = cluster,
Version = albControllerVersion,
// the properties below are optional
AdditionalHelmChartValues = new Dictionary<string, object> {
{ "additionalHelmChartValuesKey", additionalHelmChartValues }
},
OverwriteServiceAccount = false,
Policy = policy,
RemovalPolicy = RemovalPolicy.DESTROY,
Repository = "repository"
});
Synopsis
Constructors
| AlbController(Construct, string, IAlbControllerProps) | (deprecated) Construct for installing the AWS ALB Contoller on EKS clusters. |
Methods
| Create(Construct, IAlbControllerProps) | (deprecated) Create the controller construct associated with this cluster and scope. |
Constructors
AlbController(Construct, string, IAlbControllerProps)
(deprecated) Construct for installing the AWS ALB Contoller on EKS clusters.
[Obsolete]
public AlbController(Construct scope, string id, IAlbControllerProps props)
Parameters
- scope Construct
- id string
- props IAlbControllerProps
Remarks
Stability: Deprecated
Methods
Create(Construct, IAlbControllerProps)
(deprecated) Create the controller construct associated with this cluster and scope.
[Obsolete]
public static AlbController Create(Construct scope, IAlbControllerProps props)
Parameters
- scope Construct
- props IAlbControllerProps
Returns
Remarks
Singleton per stack/cluster.
Stability: Deprecated