theforeman.foreman.manifest
Upload Subscription Manifest
Role Variables
This role supports the Common Role Variables.
foreman_manifest_path
: Path to subscription Manifest file on Ansible target host. When usingmanifest_download
, it is first downloaded to this location from the Red Hat Customer Portal before being uploaded to the Foreman server.foreman_manifest_download
: Whether to first download the Manifest from the Red Hat Customer Portal. Defaults toFalse
.foreman_manifest_uuid
: UUID of the Manifest to download, corresponding to a Subscription Allocation defined on your Red Hat account. Required whenmanifest_download
isTrue
.foreman_rhsm_username
: Your username for the Red Hat Customer Portal. Required whenforeman_manifest_download
istrue
.foreman_rhsm_password
: Your password for the Red Hat Customer Portal. Required whenforeman_manifest_download
istrue
.
Example Playbooks
Use a Subscription Manifest which has already been downloaded on localhost at ~/manifest.zip
:
- hosts: localhost
roles:
- role: theforeman.foreman.manifest
vars:
foreman_server_url: https://foreman.example.com
foreman_username: "admin"
foreman_password: "changeme"
foreman_organization: "Default Organization"
foreman_manifest_path: "~/manifest.zip"
Download the Subscription Manifest from the Red Hat Customer Portal to localhost before uploading to Foreman server:
- hosts: localhost
roles:
- role: theforeman.foreman.manifest
vars:
foreman_server_url: https://foreman.example.com
foreman_username: "admin"
foreman_password: "changeme"
foreman_organization: "Default Organization"
foreman_manifest_path: "~/manifest.zip"
foreman_manifest_download: True
foreman_rhsm_username: "happycustomer"
foreman_rhsm_password: "$ecur3p4$$w0rd"
foreman_manifest_uuid: "01234567-89ab-cdef-0123-456789abcdef"