Use kubespray/kubespray:v2.11.0 for CI (#5363)
This commit is contained in:
parent
f8a18fcaca
commit
6ff5ccc938
5 changed files with 11 additions and 6 deletions
|
@ -30,14 +30,15 @@ variables:
|
||||||
|
|
||||||
before_script:
|
before_script:
|
||||||
- ./tests/scripts/rebase.sh
|
- ./tests/scripts/rebase.sh
|
||||||
- /usr/bin/python -m pip install -r tests/requirements.txt
|
- update-alternatives --install /usr/bin/python python /usr/bin/python3 1
|
||||||
|
- python -m pip install -r tests/requirements.txt
|
||||||
- mkdir -p /.ssh
|
- mkdir -p /.ssh
|
||||||
|
|
||||||
.job: &job
|
.job: &job
|
||||||
tags:
|
tags:
|
||||||
- packet
|
- packet
|
||||||
variables:
|
variables:
|
||||||
KUBESPRAY_VERSION: v2.10.0
|
KUBESPRAY_VERSION: v2.11.0
|
||||||
image: quay.io/kubespray/kubespray:$KUBESPRAY_VERSION
|
image: quay.io/kubespray/kubespray:$KUBESPRAY_VERSION
|
||||||
|
|
||||||
.testcases: &testcases
|
.testcases: &testcases
|
||||||
|
@ -45,6 +46,7 @@ before_script:
|
||||||
services:
|
services:
|
||||||
- docker:dind
|
- docker:dind
|
||||||
before_script:
|
before_script:
|
||||||
|
- update-alternatives --install /usr/bin/python python /usr/bin/python3 1
|
||||||
- ./tests/scripts/rebase.sh
|
- ./tests/scripts/rebase.sh
|
||||||
- ./tests/scripts/testcases_prepare.sh
|
- ./tests/scripts/testcases_prepare.sh
|
||||||
script:
|
script:
|
||||||
|
|
|
@ -2,6 +2,8 @@
|
||||||
yamllint:
|
yamllint:
|
||||||
extends: .job
|
extends: .job
|
||||||
stage: unit-tests
|
stage: unit-tests
|
||||||
|
variables:
|
||||||
|
LANG: C.UTF-8
|
||||||
script:
|
script:
|
||||||
- yamllint --strict .
|
- yamllint --strict .
|
||||||
except: ['triggers', 'master']
|
except: ['triggers', 'master']
|
||||||
|
|
|
@ -78,9 +78,9 @@ packet_ubuntu18-flannel-containerd:
|
||||||
when: manual
|
when: manual
|
||||||
|
|
||||||
packet_debian9-macvlan-sep:
|
packet_debian9-macvlan-sep:
|
||||||
stage: deploy-part2
|
stage: unit-tests
|
||||||
<<: *packet
|
<<: *packet
|
||||||
when: on_success
|
when: manual
|
||||||
|
|
||||||
packet_debian9-calico-upgrade:
|
packet_debian9-calico-upgrade:
|
||||||
stage: deploy-part2
|
stage: deploy-part2
|
||||||
|
@ -105,7 +105,7 @@ packet_centos7-kube-ovn:
|
||||||
packet_centos7-kube-router:
|
packet_centos7-kube-router:
|
||||||
stage: deploy-part2
|
stage: deploy-part2
|
||||||
<<: *packet
|
<<: *packet
|
||||||
when: on_success
|
when: manual
|
||||||
|
|
||||||
packet_centos7-multus-calico:
|
packet_centos7-multus-calico:
|
||||||
stage: deploy-part2
|
stage: deploy-part2
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
.terraform_install:
|
.terraform_install:
|
||||||
extends: .job
|
extends: .job
|
||||||
before_script:
|
before_script:
|
||||||
|
- update-alternatives --install /usr/bin/python python /usr/bin/python3 1
|
||||||
- ./tests/scripts/rebase.sh
|
- ./tests/scripts/rebase.sh
|
||||||
- ./tests/scripts/testcases_prepare.sh
|
- ./tests/scripts/testcases_prepare.sh
|
||||||
- ./tests/scripts/terraform_install.sh
|
- ./tests/scripts/terraform_install.sh
|
||||||
|
|
|
@ -13,6 +13,6 @@ RUN curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - &&
|
||||||
stable" \
|
stable" \
|
||||||
&& apt update -y && apt-get install docker-ce -y
|
&& apt update -y && apt-get install docker-ce -y
|
||||||
COPY . .
|
COPY . .
|
||||||
RUN /usr/bin/python3 -m pip install pip -U && /usr/bin/python3 -m pip install -r tests/requirements.txt && python3 -m pip install -r requirements.txt
|
RUN /usr/bin/python3 -m pip install pip -U && /usr/bin/python3 -m pip install -r tests/requirements.txt && python3 -m pip install -r requirements.txt && update-alternatives --install /usr/bin/python python /usr/bin/python3 1
|
||||||
RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/v1.14.4/bin/linux/amd64/kubectl \
|
RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/v1.14.4/bin/linux/amd64/kubectl \
|
||||||
&& chmod a+x kubectl && cp kubectl /usr/local/bin/kubectl
|
&& chmod a+x kubectl && cp kubectl /usr/local/bin/kubectl
|
||||||
|
|
Loading…
Reference in a new issue