Remove unused k8s log config

The entries being removed are not used for k8s functional testing
and resulted in an empty directory.

Change-Id: I3d86e2d0f49917299f1f332339382e57277820b4
This commit is contained in:
David Shrewsbury 2019-10-16 11:36:29 -04:00
parent 9405ea6a8e
commit 3a9b3e194c
2 changed files with 1 additions and 24 deletions

View File

@ -1,21 +1,8 @@
- hosts: all
vars:
nodepool_log_dir: '{{ ansible_user_dir }}/work/logs/nodepool'
nodepool_etc_dir: '{{ ansible_user_dir }}/work/etc'
minikube_log: '{{ ansible_user_dir }}/zuul-output/logs/minikube.txt'
tasks:
- name: 'Copy files from {{ nodepool_log_dir }}'
synchronize:
src: '{{ nodepool_log_dir }}'
dest: '{{ zuul.executor.log_root }}/{{ inventory_hostname }}'
mode: pull
- name: 'Copy files from {{ nodepool_etc_dir }}'
synchronize:
src: '{{ nodepool_etc_dir }}'
dest: '{{ zuul.executor.log_root }}/{{ inventory_hostname }}'
mode: pull
- name: Produce minikube log
become: yes
shell: '/tmp/minikube logs > {{ minikube_log }}'

View File

@ -3,13 +3,3 @@
- role: bindep
- role: install-kubernetes
docker_version: 18.06.1~ce~3-0~ubuntu
tasks:
- name: Ensure nodepool services directories
file:
path: '{{ ansible_user_dir }}/work/{{ item }}'
state: directory
with_items:
- logs/nodepool
- etc
- images