Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tests: manually stop the Candlepin container #153

Merged
Merged
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
6 changes: 5 additions & 1 deletion tests/tasks/setup_candlepin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@
use: "{{ __rhc_is_ostree |
ternary('ansible.posix.rhel_rpm_ostree', omit) }}"

- name: Stop and remove Candlepin container
containers.podman.podman_container:
name: candlepin
state: absent

- name: Start Candlepin container
containers.podman.podman_container:
detach: true
Expand All @@ -43,7 +48,6 @@
publish:
- 8443:8443
- 8080:8080
recreate: true
rm: true
state: started

Expand Down
Loading