pulp.squeezer.python_distribution (0.0.15) — module

Manage python distributions of a pulp api server instance

Authors: Matthias Dellweg (@mdellweg), Daniel Ziegenberg (@ziegenberg)

Install collection

Install with ansible-galaxy collection install pulp.squeezer:==0.0.15


Add to requirements.yml

  collections:
    - name: pulp.squeezer
      version: 0.0.15

Description

This performs CRUD operations on python distributions in a pulp api server instance.

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Read list of python distributions
  pulp.squeezer.python_distribution:
    pulp_url: https://pulp.example.org
    username: admin
    password: password
  register: distribution_status
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Report pulp python distributions
  debug:
    var: distribution_status
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Create a python distribution
  pulp.squeezer.python_distribution:
    pulp_url: https://pulp.example.org
    username: admin
    password: password
    name: new_python_distribution
    base_path: new/python/dist
    publication: /pub/api/v3/publications/python/python/aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa/
    state: present
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Create a python destribution with remote for pull-through caching
  pulp.squeezer.python_distribution:
    pulp_url: https://pulp.example.org
    username: admin
    password: password
    name: new_python_distribution
    base_path: new/python/dist
    remote: new_remote
    state: present
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Delete a python distribution
  pulp.squeezer.python_distribution:
    pulp_url: https://pulp.example.org
    username: admin
    password: password
    name: new_python_distribution
    state: absent

Inputs

    
name:
    description:
    - Name of the distribution to query or manipulate
    required: false
    type: str

state:
    choices:
    - present
    - absent
    description:
    - State the entity should be in
    type: str

remote:
    description:
    - Name of the remote source to add to this distribution
    - Or the empty string to remove the remote
    required: false
    type: str

timeout:
    default: 10
    description:
    - Time in seconds to wait for tasks.
    type: int

password:
    description:
    - Password of api user.
    - If no value is specified, the value of the environment variable C(SQUEEZER_PASSWORD)
      will be used as a fallback.
    required: false
    type: str

pulp_url:
    description:
    - URL of the server to connect to (without 'pulp/api/v3').
    - If no value is specified, the value of the environment variable C(SQUEEZER_PULP_URL)
      will be used as a fallback.
    required: true
    type: str

user_key:
    description:
    - Client certificate key of api user.
    required: false
    type: str

username:
    description:
    - Username of api user.
    - If no value is specified, the value of the environment variable C(SQUEEZER_USERNAME)
      will be used as a fallback.
    required: false
    type: str

base_path:
    description:
    - Base path to distribute a publication
    required: false
    type: str

user_cert:
    description:
    - Client certificate of api user.
    required: false
    type: str

publication:
    description:
    - Href of the publication to be served
    required: false
    type: str

content_guard:
    description:
    - Name of the content guard for the served content
    - Or the empty string to remove the content guard
    required: false
    type: str

validate_certs:
    default: true
    description:
    - Whether SSL certificates should be verified.
    - If no value is specified, the value of the environment variable C(SQUEEZER_VALIDATE_CERTS)
      will be used as a fallback.
    type: bool

refresh_api_cache:
    default: false
    description:
    - Whether the cached API specification should be invalidated.
    - It is recommended to use this once with the M(pulp.squeezer.status) module at the
      beginning of the playbook.
    type: bool

Outputs

distribution:
  description: Python distribution details
  returned: when name is given
  type: dict
distributions:
  description: List of python distributions
  returned: when no name is given
  type: list