charm-zuul-jobs/playbooks/microk8s-juju-post.yaml
Liam Young 18de79e126 First cut of zuul jobs for charms
This includes:
 * project templates and jobs for charm projects to use
 * linter for this repo

Change-Id: Id7be6711513f42aedd5aba841f9b19652540e8cf
2022-10-15 13:04:00 +00:00

11 lines
324 B
YAML

- hosts: all
tasks:
- name: debug output for debugging the functional test # noqa risky-shell-pipe
shell: |
set -x
MODEL="$(juju models --format=json | jq -r '.models[]["short-name"]' | grep '^zaza-')"
juju switch $MODEL
juju status
juju debug-log --replay
exit 0