11version : 2
22
33integration-test-environment : &integration-test-environment
4- GO_VERSION : " 1.13.4 "
4+ GO_VERSION : " 1.15.2 "
55 KUBECONFIG : /home/circleci/.kube/config
6- MINIKUBE_VERSION : v1.6.2
6+ MINIKUBE_VERSION : v1.13.1
77 MINIKUBE_WANTUPDATENOTIFICATION : false
88 MINIKUBE_WANTREPORTERRORPROMPT : false
99 MINIKUBE_HOME : /home/circleci
@@ -17,6 +17,13 @@ integration-test-base: &integration-test-base
1717 image : ubuntu-1604:201903-01
1818 docker_layer_caching : true
1919 steps :
20+ # Required by Kubernetes 1.18 and 1.19
21+ - run :
22+ name : Install conntrack
23+ command : |
24+ sudo apt-get update -y
25+ sudo apt-get install -y conntrack
26+
2027 - run :
2128 name : Setup minikube
2229 command : |
@@ -83,7 +90,7 @@ integration-test-base: &integration-test-base
8390jobs :
8491 check :
8592 docker :
86- - image : circleci/golang:1.12
93+ - image : circleci/golang:1.15
8794 environment :
8895 GOFLAG : -mod=readonly
8996
@@ -136,23 +143,29 @@ jobs:
136143 name : Run verification
137144 command : make
138145
139- integration-test-k8s1-17 :
146+ integration-test-k8s1-19 :
140147 << : *integration-test-base
141148 environment :
142149 << : *integration-test-environment
143- K8S_VERSION : v1.17.0
150+ K8S_VERSION : v1.19.2
144151
145- integration-test-k8s1-17-4 :
152+ integration-test-k8s1-18 :
146153 << : *integration-test-base
147154 environment :
148155 << : *integration-test-environment
149- K8S_VERSION : v1.17.4
156+ K8S_VERSION : v1.18.9
157+
158+ integration-test-k8s1-17 :
159+ << : *integration-test-base
160+ environment :
161+ << : *integration-test-environment
162+ K8S_VERSION : v1.17.12
150163
151164 integration-test-k8s1-16 :
152165 << : *integration-test-base
153166 environment :
154167 << : *integration-test-environment
155- K8S_VERSION : v1.16.4
168+ K8S_VERSION : v1.16.15
156169
157170 integration-test-k8s1-15 :
158171 << : *integration-test-base
@@ -189,10 +202,13 @@ workflows:
189202 ci :
190203 jobs :
191204 - check
192- - integration-test-k8s1-17 :
205+ - integration-test-k8s1-19 :
193206 requires :
194207 - check
195- - integration-test-k8s1-17-4 :
208+ - integration-test-k8s1-18 :
209+ requires :
210+ - check
211+ - integration-test-k8s1-17 :
196212 requires :
197213 - check
198214 - integration-test-k8s1-16 :
0 commit comments