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
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -293,6 +293,15 @@ If you need to connect directly to the CRC VM just use
ssh -i ~/.crc/machines/crc/id_ecdsa core@"192.168.130.11"
```

## Install pre-requisites

To use MetricsStorage storage, the cluster-observability-operator is required.
Use the following playbook to install it:

```bash
ansible-playbook ci/create-coo-subscription-playbook.yaml
```

## License

```text
Expand Down
4 changes: 2 additions & 2 deletions ci/create-coo-subscription-playbook.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
hosts: "{{ cifmw_target_hook_host | default('localhost') }}"
gather_facts: false
environment:
KUBECONFIG: "{{ cifmw_openshift_kubeconfig }}"
PATH: "{{ cifmw_path }}"
KUBECONFIG: "{{ cifmw_openshift_kubeconfig | default(ansible_env.HOME + '/.kube.config' ) }}"
PATH: "{{ cifmw_path | default(ansible_env.PATH) }}"
tasks:
- name: Import tasks for creating COO subscription
ansible.builtin.include_tasks: "create-coo-subscription.yaml"