Skip to content
This repository has been archived by the owner on Dec 23, 2021. It is now read-only.

Commit

Permalink
fix: namespace to default
Browse files Browse the repository at this point in the history
  • Loading branch information
neilkuan committed Nov 22, 2020
1 parent be7fbee commit eae4af9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .projenrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const project = new ConstructLibrary({
dependabot: false,
catalog: {
twitter: 'neil_kuan',
announce: true,
announce: false,
},
python: {
distName: 'cdk8s-aws-alb-ingress-controller',
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,6 @@
},
"awscdkio": {
"twitter": "neil_kuan",
"announce": true
"announce": false
}
}
4 changes: 2 additions & 2 deletions src/aws-load-balancer-controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ export class AwsLoadBalancerController extends Construct {
public readonly deploymentName: string;
/**
* Namespace for aws-load-balancer-controller.
* @default - kube-system
* @default - default
*/
public readonly namespace: string ;
constructor(scope: Construct, id: string, options: AwsLoadBalancerControllerOptions) {
super(scope, id);
this.serviceAccountName = 'aws-load-balancer-controller';
this.deploymentName = 'aws-load-balancer-controller';
this.clusterName = options.clusterName;
this.namespace = 'kube-system';
this.namespace = 'default';

new cdk8s.ApiObject(this, 'aws-load-balancer-controller-crd', {
apiVersion: 'apiextensions.k8s.io/v1beta1',
Expand Down

0 comments on commit eae4af9

Please sign in to comment.