File tree Expand file tree Collapse file tree 2 files changed +33
-0
lines changed
examples/eks-https-loadbalancer Expand file tree Collapse file tree 2 files changed +33
-0
lines changed Original file line number Diff line number Diff line change
1
+ clean-state :
2
+ mv terraform.tfstate $(shell mktemp)
3
+
4
+ apply-without-kf :
5
+ terraform apply -var-file=./.tfvars -var enable_treebeardkf=false
6
+
7
+ apply-with-kf :
8
+ terraform apply -var-file=./.tfvars -var enable_treebeardkf=true
9
+
10
+ get-kubeconfig :
11
+ aws eks update-kubeconfig --name cluster --region us-east-1
Original file line number Diff line number Diff line change @@ -30,6 +30,28 @@ istioResources:
30
30
tls:
31
31
credentialName: gateway-cert
32
32
mode: SIMPLE
33
+ gateway:
34
+ spec:
35
+ sources:
36
+ - chart: 'gateway'
37
+ repoURL: 'https://istio-release.storage.googleapis.com/charts'
38
+ targetRevision: "1.18.7"
39
+ helm:
40
+ releaseName: "istio-ingressgateway"
41
+ ignoreMissingValueFiles: true
42
+ valueFiles: []
43
+ values: |
44
+ service:
45
+ type: LoadBalancer
46
+ serviceAccount:
47
+ name: istio-ingressgateway-service-account
48
+ resources:
49
+ requests:
50
+ cpu: 10m
51
+ memory: 64Mi
52
+ limits:
53
+ cpu: 2000m
54
+ memory: 1024Mi
33
55
EOF
34
56
]
35
57
depends_on = [
You can’t perform that action at this time.
0 commit comments