Skip to content
Snippets Groups Projects
Commit 44a14d0b authored by Antoine Legrand's avatar Antoine Legrand Committed by GitHub
Browse files

Merge pull request #586 from bogdando/fix_upload_logs

[WIP] Fix upload logs
parents 6b7b8a23 39b8336f
No related branches found
No related tags found
No related merge requests found
......@@ -154,7 +154,8 @@ after_failure:
$HOME/.local/bin/ansible-playbook tests/cloud_playbooks/upload-logs-gcs.yml -i "localhost," -c local
-e test_id=${TEST_ID}
-e kube_network_plugin=${KUBE_NETWORK_PLUGIN}
>/dev/null
-e gs_key=${GS_ACCESS_KEY_ID}
-e gs_skey=${GS_SECRET_ACCESS_KEY}
after_script:
- >
......
......@@ -17,6 +17,8 @@
mode: create
expiration: "{{ expire }}"
permission: private
gs_access_key: gs_key
gs_secret_key: gs_skey
- name: Upload collected diagnostic info
gc_storage:
......@@ -26,3 +28,16 @@
expiration: "{{ expire }}"
object: "build-{{ test_name }}-{{ kube_network_plugin }}-logs.tar.gz"
src: logs.tar.gz
gs_access_key: gs_key
gs_secret_key: gs_skey
- name: Get a link
gc_storage:
bucket: "{{ test_name }}"
object: "build-{{ test_name }}-{{ kube_network_plugin }}-logs.tar.gz"
mode: get_url
register: url
gs_access_key: gs_key
gs_secret_key: gs_skey
- debug: msg="Download URL {{get_url}}"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment