-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate to AWS Load Balancer Controller
- Loading branch information
1 parent
b1b663b
commit b6e2492
Showing
3 changed files
with
334 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
--- | ||
apiVersion: source.toolkit.fluxcd.io/v1 | ||
kind: HelmRepository | ||
metadata: | ||
name: aws-load-balancer-controller | ||
namespace: kube-system | ||
spec: | ||
interval: 10m | ||
url: https://aws.github.io/eks-charts | ||
|
||
--- | ||
apiVersion: helm.toolkit.fluxcd.io/v2 | ||
kind: HelmRelease | ||
metadata: | ||
name: aws-load-balancer-controller | ||
namespace: kube-system | ||
spec: | ||
interval: 10m | ||
chart: | ||
spec: | ||
chart: aws-load-balancer-controller | ||
version: 1.9.0 # [email protected] | ||
sourceRef: | ||
kind: HelmRepository | ||
name: aws-load-balancer-controller | ||
install: | ||
crds: CreateReplace | ||
upgrade: | ||
crds: CreateReplace | ||
valuesFrom: | ||
# See terraform/modules/spack/eks.tf | ||
- kind: ConfigMap | ||
name: aws-lb-controller-config | ||
valuesKey: values.yaml | ||
values: | ||
tolerations: | ||
# The LB Controller should be scheduled on the initial managed nodegroup pods | ||
# so that it is not dependent on Karpenter to be scheduled. | ||
- key: "CriticalAddonsOnly" | ||
operator: "Exists" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters