Skip to content

Commit

Permalink
Show the output of porchctl version during bootstrap (#301)
Browse files Browse the repository at this point in the history
* Show the output of `porchctl version` during bootstrap

* Fix lint errors
  • Loading branch information
kispaljr authored Sep 2, 2024
1 parent 60ab061 commit 9fa7a7a
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions e2e/provision/playbooks/cluster.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,13 @@
src: https://github.com/nephio-project/porch/releases/download/main/porchctl.tgz
dest: /usr/local/bin/
creates: /usr/local/bin/porchctl
- name: Call porchctl version
ansible.builtin.command: porchctl version
register: porchctl_version
changed_when: false
- name: Show porchctl version
ansible.builtin.debug:
var: porchctl_version
roles:
- bootstrap
- role: install
Expand Down

0 comments on commit 9fa7a7a

Please sign in to comment.