Class AlbController
(experimental) 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)
public class AlbController : Construct
Syntax (vb)
Public Class AlbController Inherits Construct
Remarks
Use the factory functions get
and getOrCreate
to obtain/create instances of this controller.
Stability: Experimental
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;
AlbControllerVersion albControllerVersion;
Cluster cluster;
var policy;
var albController = new AlbController(this, "MyAlbController", new AlbControllerProps {
Cluster = cluster,
Version = albControllerVersion,
// the properties below are optional
Policy = policy,
Repository = "repository"
});
Synopsis
Constructors
AlbController(Construct, string, IAlbControllerProps) | (experimental) Construct for installing the AWS ALB Contoller on EKS clusters. |
Methods
Create(Construct, IAlbControllerProps) | (experimental) Create the controller construct associated with this cluster and scope. |
Constructors
AlbController(Construct, string, IAlbControllerProps)
(experimental) Construct for installing the AWS ALB Contoller on EKS clusters.
public AlbController(Construct scope, string id, IAlbControllerProps props)
Parameters
- scope Construct
- id string
- props IAlbControllerProps
Remarks
Stability: Experimental
Methods
Create(Construct, IAlbControllerProps)
(experimental) Create the controller construct associated with this cluster and scope.
public static AlbController Create(Construct scope, IAlbControllerProps props)
Parameters
- scope Construct
- props IAlbControllerProps
Returns
Remarks
Singleton per stack/cluster.
Stability: Experimental