hub_collection_repositories

Ensure the correct repositorie are availlable to load collection into.

group_vars/all/hub_collection_repositories.yml

Just to be sure, we add the default repositories here.

---
hub_collection_repositories_all:

  - name: rh-certified
    description: Red Hat certified content repository
    remote: rh-certified
    update_repo: true
    wait: false
    state: present

  - name: community
    description: Community content repository
    remote: community
    update_repo: true
    wait: false
    state: present

  - name: validated
    description: Redhat validated content repository
    remote: validated
    update_repo: true
    wait: false
    state: present
...

group_vars/dev/hub_collection_repositories.yml

As we do not configure extra repositories in automation hub, this file is an empty set.

---
hub_collection_repositories_dev: []
  # No extra config exists
...

Here the variable has the "_dev" extension, so the variable will not be overridden.

group_vars/prod/hub_collection_repositories.yml

As we do not configure extra repositories in automation hub, this file is an empty set.

---
hub_collection_repositories_prod: []
  # No extra config exists
...

Here the variable has the "_prod" extension, so the variable will not be overridden.

Back