:source: katello_manifest.py :orphan: .. _katello_manifest_module: katello_manifest -- Manage Katello manifests ++++++++++++++++++++++++++++++++++++++++++++ .. contents:: :local: :depth: 1 Synopsis -------- - Upload and Manage Katello manifests Requirements ------------ The below requirements are needed on the host that executes this module. - apypie Parameters ---------- .. raw:: html
Parameter Choices/Defaults Comments
manifest_path
path
Path to the manifest zip file
This parameter will be ignored if state=absent or state=refreshed
organization
string / required
Organization that the entity is in
password
string / required
Password of the user accessing the Foreman server
repository_url
string
URL to retrieve content from

aliases: redhat_repository_url
server_url
string / required
URL of the Foreman server
state
string
    Choices:
  • absent
  • present ←
  • refreshed
The state of the manifest
username
string / required
Username accessing the Foreman server
validate_certs
boolean
    Choices:
  • no
  • yes ←
Whether or not to verify the TLS certificates of the Foreman server

aliases: verify_ssl

Examples -------- .. code-block:: yaml+jinja - name: "Upload the RHEL developer edition manifest" katello_manifest: username: "admin" password: "changeme" server_url: "https://foreman.example.com" organization: "Default Organization" state: present manifest_path: "/tmp/manifest.zip" Status ------ - This module is not guaranteed to have a backwards compatible interface. *[preview]* - This module is :ref:`maintained by the Ansible Community `. *[community]* Authors ~~~~~~~ - Andrew Kofink (@akofink) .. hint:: If you notice any issues in this documentation, you can `edit this document `_ to improve it.