Skip to content
Open
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
2 changes: 1 addition & 1 deletion .automation
9 changes: 8 additions & 1 deletion etc/kayobe/ansible/diagnostics.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,17 @@
- name: Collect diagnostic information
hosts: seed-hypervisor:seed:overcloud:infra-vms
vars:
diagnostics_path_local: "{{ lookup('env', 'PWD') }}/diagnostics"
diagnostics_path_local: "{{ lookup('env', 'HOME') }}/diagnostics"
tasks:
- name: Run diagnostics
block:
- name: Create a local directory to sync diagnostics
ansible.builtin.file:
path: "{{ diagnostics_path_local }}"
state: directory
delegate_to: localhost
run_once: true

- name: Create a temporary directory for diagnostics
ansible.builtin.tempfile:
state: directory
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
fixes:
- |
`Bump kayobe-automation <https://github.com/stackhpc/kayobe-automation/pull/78>`__
to include fix that runs kayobe commands from the directory
specified in ``KAYOBE_CONFIG_PATH``.
Loading