File tree 2 files changed +14
-2
lines changed 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -99,6 +99,7 @@ const TEST_CONFIGURATIONS: { [name: string]: TestConfig } = {
99
99
DESCRIPTION : `${ op } an EKS cluster(version ${ k8s_version } )` ,
100
100
PHASES : [
101
101
"STANDARD_EKS_CLUSTER" ,
102
+ "CALICO" ,
102
103
"CERT_MANAGER" ,
103
104
"EXTERNALDNS" ,
104
105
"CLUSTER_ISSUER" ,
@@ -168,6 +169,11 @@ const INFRA_PHASES: { [name: string]: InfraConfig } = {
168
169
makeTarget : "external-dns" ,
169
170
description : `Deploys external-dns with ${ cloud } provider` ,
170
171
} ,
172
+ CALICO : {
173
+ phase : "calico" ,
174
+ makeTarget : "calico" ,
175
+ description : `Deploys Calico` ,
176
+ } ,
171
177
ADD_NS_RECORD : {
172
178
phase : "add-ns-record" ,
173
179
makeTarget : "add-ns-record" ,
Original file line number Diff line number Diff line change @@ -180,9 +180,15 @@ k3s-standard-cluster: check-env-cluster-version
180
180
@echo " Done creating k3s cluster"
181
181
182
182
.PHONY :
183
- # # cert-manager : Installs cert-manager, optionally create secret for cloud-dns access
184
- cert-manager :
183
+ # # aws-calico : Installs aws-calico
184
+ calico :
185
185
$(MAKE ) select-workspace && \
186
+ terraform apply -target=module.calico -var kubeconfig=${KUBECONFIG} --auto-approve
187
+ @echo " Done installing Calico"
188
+
189
+ .PHONY :
190
+ # # cert-manager: Installs cert-manager, optionally create secret for cloud-dns access
191
+ cert-manager : check-env-cloud select-workspace
186
192
terraform apply -target=module.certmanager -var kubeconfig=${KUBECONFIG} --auto-approve
187
193
@echo " Done installing cert-manager"
188
194
You can’t perform that action at this time.
0 commit comments