Merge pull request #1155 from mrunalp/add_kube_var_1.8

test: Add a version var for kube branches
This commit is contained in:
Mrunal Patel 2017-11-14 18:55:07 -10:00 committed by GitHub
commit e82298e677
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View file

@ -4,7 +4,7 @@
git:
repo: "https://github.com/runcom/kubernetes.git"
dest: "{{ ansible_env.GOPATH }}/src/k8s.io/kubernetes"
version: "cri-o-patched-1.8"
version: "{{ k8s_git_version }}"
force: "{{ force_clone | default(False) | bool}}"
- name: install etcd

View file

@ -19,6 +19,8 @@
- name: clone build and install kubernetes
include: "build/kubernetes.yml"
vars:
k8s_git_version: "cri-o-node-e2e-patched-logs"
- name: clone build and install runc
include: "build/runc.yml"
@ -58,6 +60,7 @@
include: "build/kubernetes.yml"
vars:
force_clone: True
k8s_git_version: "cri-o-patched-1.8"
- name: run k8s e2e tests
include: e2e.yml