Skip to content
Open
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
8 changes: 3 additions & 5 deletions roles/pcp_metrics/tasks/coreos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,10 @@
- name: Setup repositories for PCP
ansible.builtin.include_tasks: repo.yml

- name: Make /usr writable
- name: Create an writable, ephemeral /usr overlay
become: true
ansible.posix.mount:
path: /usr
state: remounted
opts: rw
ansible.builtin.command:
cmd: rpm-ostree usroverlay
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

looks like interesting idea - Allows temporary modification of immutable /usr files without creating a new deployment.
it might work. If tests results are fine, we can go


- name: Create required directory
become: true
Expand Down
Loading