Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions contrib/test/integration/build/kubernetes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

- name: clone kubernetes source repo
git:
repo: "https://github.com/{{ k8s_github_fork }}/kubernetes.git"
repo: "https://github.com/saschagrunert/kubernetes.git"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This would probably be better grabbed from a public repo....

dest: "{{ ansible_env.GOPATH }}/src/k8s.io/kubernetes"
# based on kube v1.9.0-alpha.2, update as needed
version: "{{ k8s_git_version }}"
version: debug
force: "{{ force_clone | default(False) | bool}}"

# replace hardcoded line not to use legacy stats provider
Expand Down
2 changes: 1 addition & 1 deletion contrib/test/integration/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
--provider=local
--test
--test_args="-host=https://{{ ansible_default_ipv4.address }}:6443
--ginkgo.skip={{ skip_tests | join('|') | replace(' ', '\\s') | regex_replace('([][)(])', '\\\\\1') }}
--ginkgo.focus="evicted pods should be terminal"
--ginkgo.noColor
--ginkgo.succinct
--report-dir={{ artifacts }}"
Expand Down