errata-tool


Nameerrata-tool JSON
Version 1.32.0 PyPI version JSON
download
home_pagehttps://github.com/red-hat-storage/errata-tool
SummaryPython API for Red Hat Errata Tool
upload_time2024-02-16 17:25:07
maintainer
docs_urlNone
authorKen Dreyer
requires_python
licenseMIT
keywords packaging build
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            ``errata-tool``
===============

.. image:: https://github.com/red-hat-storage/errata-tool/workflows/tests/badge.svg
             :target: https://github.com/red-hat-storage/errata-tool/actions

.. image:: https://badge.fury.io/py/errata-tool.svg
             :target: https://badge.fury.io/py/errata-tool

.. image:: https://codecov.io/gh/red-hat-storage/errata-tool/branch/master/graph/badge.svg
             :target: https://codecov.io/gh/red-hat-storage/errata-tool


Modern Python API to Red Hat's Errata Tool.

python-errata-tool is a Python library that wraps the Errata Tool's REST API.
It uses `requests_gssapi <https://pypi.python.org/pypi/requests-gssapi>`_
to authenticate and parses JSON responses into ``Erratum`` objects. You can
use it to create new advisories, or read and update existing advisories. The
``ErratumConnector`` class also provides lower-level access to all of the
Errata Tool's REST API.

Example:

.. code-block:: python

    from errata_tool import Erratum

    e = Erratum(errata_id=1234)

    print(e.errata_state)
    # prints "NEW_FILES"

    print(e.url())
    # prints "https://errata.devel.redhat.com/advisory/1234"

Creating a new bugfix advisory:

.. code-block:: python

    e = Erratum(product='RHCEPH',
                release='rhceph-2.1',
                #errata_type='RHBA'         # Default; may be omitted
                synopsis='Red Hat Ceph Storage 2.1 bug fix update',
                topic='An update for Red Hat Ceph 2.1 is now available.',
                description='This update contains the following fixes ...',
                solution='Before applying this update...',
                qe_email='someone@redhat.com',
                qe_group='RHC (Ceph) QE',
                owner_email='kdreyer@redhat.com',
                manager_email='ohno@redhat.com',
                )
    e.commit()
    print(e.url())

Creating a new enhancement (feature) advisory:

.. code-block:: python

    e = Erratum(product='RHCEPH',
                release='rhceph-2.1',
                errata_type='RHEA',          # Set to RHEA for RHEA
                synopsis='Red Hat Ceph Storage 2.1 enhancement update',
                topic='An update for Red Hat Ceph 2.1 is now available.',
                description='This update contains the following features ...',
                solution='Before applying this update...',
                qe_email='someone@redhat.com',
                qe_group='RHC (Ceph) QE',
                owner_email='kdreyer@redhat.com',
                manager_email='ohno@redhat.com',
                )
    e.commit()
    print(e.url())

Creating a new security advisory. Note that RHSA (Security)
advisories are given one of four impacts (Low, Moderate,
Important, and Critical). See this link for more information:
https://access.redhat.com/security/updates/classification

.. code-block:: python

    e = Erratum(product='RHCEPH',
                release='rhceph-2.1',
                errata_type='RHSA',          # Set to RHSA for RHSA
                security_impact='Moderate',  # Required for RHSA
                synopsis='Red Hat Ceph Storage 2.1 security update',
                topic='An update for Red Hat Ceph 2.1 is now available.',
                description='This update contains the following fixes ...',
                solution='Before applying this update...',
                qe_email='someone@redhat.com',
                qe_group='RHC (Ceph) QE',
                owner_email='kdreyer@redhat.com',
                manager_email='ohno@redhat.com',
                )
    e.commit()
    print(e.url())


errata-tool command-line interface
----------------------------------

The ``errata-tool`` CLI is a thin wrapper around the classes. You can use it to
query information from the Errata Tool or create new releases (releng)::

    errata-tool -h

    usage: errata-tool [-h] [--stage] [--dry-run] {advisory,product,release} ...

    positional arguments:
      {advisory,product,release}
        advisory            Get or create an advisory
        product             Get a product
        release             Get or create a release (RCM)

    optional arguments:
      --stage               use staging ET instance
      --dry-run             show what would happen, but don't do it

errata-tool command-line interface examples
-------------------------------------------

Waiting and conditionally pushing an advisory:

As a release engineer one often checks the status of an advisory if it is ready
to be pushed. To avoid human polling of the state and to automate the advisory
push two options are provided under the ``errata-tool advisory push`` option::

    errata-tool advisory push --help
    usage: errata-tool advisory push [-h] [--target {stage,live}]
    [--wait-for-state {SHIPPED_LIVE,PUSH_READY}] [--push-when-ready]
    [--verbose] errata_id

    positional arguments:
      errata_id             advisory id, "12345"

    optional arguments:
      -h, --help            show this help message and exit
      --target {stage,live}
                            stage (default) or live
      --wait-for-state {SHIPPED_LIVE,PUSH_READY}
                            state : PUSH_READY or SHIPPED_LIVE
      --push-when-ready     Push if the advisory enters state PUSH_READY
      --verbose             print current state of the advisory

The ``--wait-for-state`` option polls at regular interval for the advisory to
enter one of the two desired states - PUSH_READY or SHIPPED_LIVE

when the advisory reaches that state the polling stops and the script exits with
a successful exit code ``$? eq 0``.

Caveat: The script will wait forever until that state is reached or interrupted
by the user. The option to have a cap on the wait time was dropped to keep the
usage simple and for the lack of a compelling use case.


The ``--push-when-ready`` option pushes the advisory if it is in  PUSH_READY
state. The ``--push-when-ready`` option can be used with ``--wait-for-state``
option to repeatedly poll the advisory until it reaches PUSH_READY state before
pushing it.
Here are some usecases:

- usecase 1: Push advisory if it is in state PUSH_READY state


.. code-block:: bash

    errata-tool --stage advisory push --target live --push-when-ready 12345


- usecase 2: Wait for advisory to enter PUSH_READY state and push the advisory


.. code-block:: bash

    errata-tool --stage advisory push --target live  --push-when-ready \
    --wait-for-state PUSH_READY 12345


- usecase 3: Wait for advisory to enter SHIPPED_LIVE, push the advisory if
               it enters PUSH_READY state while waiting.


.. code-block:: bash

    errata-tool --stage advisory push --target live  --push-when-ready \
    --wait-for-state SHIPPED_LIVE 12345


- usecase 4: Push independent advisories before pushing those which are
           dependent on the independent advisories

           See: https://issues.redhat.com/browse/SPMM-9887

.. code-block:: bash

    # Ship advisory 12346 after shipping 12345
    errata-tool --stage advisory push --target live  --push-when-ready \
    --wait-for-state SHIPPED_LIVE 12345 && \
    errata-tool --stage advisory push --target live  --push-when-ready \
    --wait-for-state PUSH_READY 12346

More Python Examples
--------------------

Getting an erratum's name:

.. code-block:: python

    e = Erratum(errata_id=22986)

    print(e.errata_name)
    # prints "RH*A-YYYY:NNNNN", for example "RHBA-2018:12345"

Adding bugs:

.. code-block:: python

    e = Erratum(errata_id=22986)

    e.addBugs([12345, 123678])

    e.commit()

    # You can read the current list of bugs with the "e.errata_bugs" property.

Removing bugs:

.. code-block:: python

    e = Erratum(errata_id=22986)

    e.removeBugs([12345, 123678])

    # You can simply call "commit()" without checking the return code, or check
    # it and use refresh() to refresh our local instance data for the errata
    # advisory.
    need_refresh = e.commit()

    if need_refresh:
        print('refreshing')
        e.refresh()

Checking whether an advisory is embargoed:

.. code-block:: python

    e = Erratum(errata_id=22986)

    if e.embargoed:
        # it's embargoed
    else:
        # it's not embargoed

Checking whether an advisory is text-only:

.. code-block:: python

    e = Erratum(errata_id=24075)

    if e.text_only:
        # it's text-only
        # If it's an RHSA, you may want to get/set e.text_only_cpe here.
    else:
        # it's not text-only

Adding builds:

.. code-block:: python

    e = Erratum(errata_id=24075)

    # The "release" kwarg is the Errata Tools's "product version" in
    # composedb, for example "RHEL-7-CEPH-2".
    e.addBuilds(['ceph-10.2.3-17.el7cp'], release='RHEL-7-CEPH-2')

Adding container builds:

.. code-block:: python

    e = Erratum(errata_id=34279)

    # For non-RPM Brew builds, you must specify the file_types kwarg.
    # For container builds, this is "tar".
    e.addBuilds('rhceph-rhel7-container-3-9',
                release='RHEL-7-CEPH-3',
                file_types={'rhceph-rhel7-container-3-9': ['tar']})

Changing state:

.. code-block:: python

    e = Erratum(errata_id=24075)

    e.setState('QE')
    e.commit()

Changing docs reviewer:

.. code-block:: python

    e = Erratum(errata_id=24075)

    e.changeDocsReviewer('kdreyer@redhat.com')

Adding someone to the CC list:

.. code-block:: python

    e = Erratum(errata_id=24075)

    e.addCC('kdreyer@redhat.com')

Changing an advisory type:

.. code-block:: python

    e = Erratum(errata_id=33840)

    e.update(errata_type='RHBA')
    e.commit()

Reloading the all specific builds that lack product listings:

.. code-block:: python

    e = Erratum(errata_id=24075)

    if e.missing_product_listings:  # a (possibly-empty) list of build NVRs
        result = e.reloadBuilds(no_rpm_listing_only=True)
        # result is a dict for this job tracker

Determining if an advisory has RPMs or containers:

.. code-block:: python

    e = Erratum(errata_id=24075)

    content_types = e.content_types
    # result is a list, like ["rpm"], or ["docker"]

Get active RPMDiff results for an advisory:

.. code-block:: python

    e = Erratum(errata_id=24075)

    bad = []
    for result in e.externalTests(test_type='rpmdiff'):
        if result['attributes']['status'] not in ('PASSED', 'WAIVED'):
            # See result['attributes']['external_id'] for the integer to pass
            # into RPMDiff's run API.
            bad.append(result)


Set the CDN repos for a container advisory (only applies for advisories
containing Docker images):

.. code-block:: python

    e = Erratum(errata_id=24075)

    assert 'docker' in e.content_types
    e.metadataCdnRepos(enable=['rhel-7-server-rhceph-3-mon-rpms__x86_64'])

Same thing, but for text-only advisories:

.. code-block:: python

    e = Erratum(errata_id=24075)

    assert e.text_only
    e.textOnlyRepos(enable=['rhel-7-server-rhceph-3-mon-rpms__x86_64'])


Working with products
---------------------

The ``errata_tool.product.Product`` class can look up existing products.

Looking up a product:

.. code-block:: python

    from errata_tool.product import Product

    p = Product('RHCEPH')
    print(p.id)  # 104
    print(p.name)  # "RHCEPH"
    print(p.description)  # "Red Hat Ceph Storage"


Working with releases
---------------------

The ``errata_tool.release.Release`` class can look up existing releases or
create new release entries.

Looking up a release:

.. code-block:: python

    from errata_tool.release import Release

    r = Release(name='rhceph-2.4')
    print(r.id)  # 792
    print(r.name)  # "rhceph-2.4"
    print(r.description)  # "Red Hat Ceph Storage 2.4"
    print(r.type)  # "QuarterlyUpdate"
    print(r.is_active)  # True
    print(r.enabled)  # True
    print(r.blocker_flags)  # ['ceph-2.y', 'pm_ack', 'devel_ack', 'qa_ack']
    print(r.edit_url)  # https://errata.devel.redhat.com/release/edit/792

Finding all "NEW_FILES" advisories for a release:

.. code-block:: python

    from errata_tool.release import Release

    rel = Release(name='rhceph-3.0')

    advisories = rel.advisories()
    new_files = [a for a in advisories if a['status'] == 'NEW_FILES']
    print(new_files)  # prints the list of advisories' data

Creating a new release (this requires the "releng" role in the Errata Tool):

.. code-block:: python

    from errata_tool.release import Release
    r = Release.create(
        name='rhceph-3.0',
        product='RHCEPH',
        product_versions=['RHEL-7-CEPH-3'],
        type='QuarterlyUpdate',
        program_manager='anharris',
        blocker_flags='ceph-3.0',
        default_brew_tag='ceph-3.0-rhel-7-candidate',
    )
    print('created new rhceph-3.0 release')
    print('visit %s to edit further' % r.edit_url)


Using the staging server
------------------------

To use the staging Errata Tool environment without affecting production, set
the ``ErrataConnector._url`` member variable to the staging URL.

.. code-block:: python

    from errata_tool import ErrataConnector, Erratum

    ErrataConnector._url = 'https://errata.stage.engineering.redhat.com/'
    # Now try something like creating an advisory, and it will not show up in
    # prod, or bother people with emails, etc.
    e = Erratum(product='RHCEPH',
                release='rhceph-2.1',
                synopsis='Red Hat Ceph Storage 2.1 bug fix update',
                ...
                )
    e.commit()


Debugging many Errata Tool API calls
------------------------------------

Maybe your application makes many API calls (lots of advisories, builds, etc),
When processing large numbers of errata from higher-level tools, it's helpful
to understand where the time is spent to see if multiple calls can be avoided.

Set ``ErrataConnector.debug = True``, and then your connector object will
record information about each call it makes.  Each GET/PUT/POST is recorded,
along with totals / mean / min / max.

URL APIs are deduplicated based on their name, so two calls to different
errata on the same API is recorded as a single API.

To extract the information and print it, one might use PrettyTable:

.. code-block:: python

    e = Erratum(errata_id=24075)
    pt = PrettyTable()
    for c in ErrataConnector.timings:
        for u in ErrataConnector.timings[c]:
            pt.add_row([c, u,
                       ErrataConnector.timings[c][u]['count'],
                       ErrataConnector.timings[c][u]['total'],
                       ErrataConnector.timings[c][u]['mean'],
                       ErrataConnector.timings[c][u]['min'],
                       ErrataConnector.timings[c][u]['max']])
    print(pt.get_string())


SSL errors
----------

This library verifies the ET server's HTTPS certificate by default. This is
more of a python-requests thing, but if you receive an SSL verification error,
it's probably because you don't have the Red Hat IT CA set up for your Python
environment. Particularly if you're running this in a virtualenv, you'll want
to set the following configuration variable::

    REQUESTS_CA_BUNDLE=/etc/pki/ca-trust/source/anchors/RH-IT-Root-CA.crt

Where "RH-IT-Root-CA.crt" is the public cert that signed the ET server's
HTTPS certificate.

When using RHEL 7's python-requests RPM, requests simply checks
``/etc/pki/tls/certs/ca-bundle.crt``, so you'll need to add the IT CA cert to
that big bundle file.

If you've already added the Red Hat IT CA to your system-wide bundle, you can
have your Python code always use this file:

.. code-block:: python

    if 'REQUESTS_CA_BUNDLE' not in os.environ:
        os.environ['REQUESTS_CA_BUNDLE'] = '/etc/pki/tls/certs/ca-bundle.crt'

This will make requests behave the same inside or outside your virtualenv. In
other words, with this code, your program will always validate the Red Hat IT
CA.

Building RPMs
-------------

Install fedpkg, then use the Makefile::

    $ make srpm

You can then upload the SRPM to Copr. Or, to build RPMs on your local
computer, using mock::

    $ make rpm


Changelog
---------
Check out the `CHANGELOG`_.

.. _CHANGELOG: CHANGELOG.rst

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/red-hat-storage/errata-tool",
    "name": "errata-tool",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "packaging,build",
    "author": "Ken Dreyer",
    "author_email": "kdreyer@redhat.com",
    "download_url": "https://files.pythonhosted.org/packages/de/de/28fb2c62c07c05bf6ef88b704bd11f469ad95829b561fa22f04acc0301a7/errata-tool-1.32.0.tar.gz",
    "platform": null,
    "description": "``errata-tool``\n===============\n\n.. image:: https://github.com/red-hat-storage/errata-tool/workflows/tests/badge.svg\n             :target: https://github.com/red-hat-storage/errata-tool/actions\n\n.. image:: https://badge.fury.io/py/errata-tool.svg\n             :target: https://badge.fury.io/py/errata-tool\n\n.. image:: https://codecov.io/gh/red-hat-storage/errata-tool/branch/master/graph/badge.svg\n             :target: https://codecov.io/gh/red-hat-storage/errata-tool\n\n\nModern Python API to Red Hat's Errata Tool.\n\npython-errata-tool is a Python library that wraps the Errata Tool's REST API.\nIt uses `requests_gssapi <https://pypi.python.org/pypi/requests-gssapi>`_\nto authenticate and parses JSON responses into ``Erratum`` objects. You can\nuse it to create new advisories, or read and update existing advisories. The\n``ErratumConnector`` class also provides lower-level access to all of the\nErrata Tool's REST API.\n\nExample:\n\n.. code-block:: python\n\n    from errata_tool import Erratum\n\n    e = Erratum(errata_id=1234)\n\n    print(e.errata_state)\n    # prints \"NEW_FILES\"\n\n    print(e.url())\n    # prints \"https://errata.devel.redhat.com/advisory/1234\"\n\nCreating a new bugfix advisory:\n\n.. code-block:: python\n\n    e = Erratum(product='RHCEPH',\n                release='rhceph-2.1',\n                #errata_type='RHBA'         # Default; may be omitted\n                synopsis='Red Hat Ceph Storage 2.1 bug fix update',\n                topic='An update for Red Hat Ceph 2.1 is now available.',\n                description='This update contains the following fixes ...',\n                solution='Before applying this update...',\n                qe_email='someone@redhat.com',\n                qe_group='RHC (Ceph) QE',\n                owner_email='kdreyer@redhat.com',\n                manager_email='ohno@redhat.com',\n                )\n    e.commit()\n    print(e.url())\n\nCreating a new enhancement (feature) advisory:\n\n.. code-block:: python\n\n    e = Erratum(product='RHCEPH',\n                release='rhceph-2.1',\n                errata_type='RHEA',          # Set to RHEA for RHEA\n                synopsis='Red Hat Ceph Storage 2.1 enhancement update',\n                topic='An update for Red Hat Ceph 2.1 is now available.',\n                description='This update contains the following features ...',\n                solution='Before applying this update...',\n                qe_email='someone@redhat.com',\n                qe_group='RHC (Ceph) QE',\n                owner_email='kdreyer@redhat.com',\n                manager_email='ohno@redhat.com',\n                )\n    e.commit()\n    print(e.url())\n\nCreating a new security advisory. Note that RHSA (Security)\nadvisories are given one of four impacts (Low, Moderate,\nImportant, and Critical). See this link for more information:\nhttps://access.redhat.com/security/updates/classification\n\n.. code-block:: python\n\n    e = Erratum(product='RHCEPH',\n                release='rhceph-2.1',\n                errata_type='RHSA',          # Set to RHSA for RHSA\n                security_impact='Moderate',  # Required for RHSA\n                synopsis='Red Hat Ceph Storage 2.1 security update',\n                topic='An update for Red Hat Ceph 2.1 is now available.',\n                description='This update contains the following fixes ...',\n                solution='Before applying this update...',\n                qe_email='someone@redhat.com',\n                qe_group='RHC (Ceph) QE',\n                owner_email='kdreyer@redhat.com',\n                manager_email='ohno@redhat.com',\n                )\n    e.commit()\n    print(e.url())\n\n\nerrata-tool command-line interface\n----------------------------------\n\nThe ``errata-tool`` CLI is a thin wrapper around the classes. You can use it to\nquery information from the Errata Tool or create new releases (releng)::\n\n    errata-tool -h\n\n    usage: errata-tool [-h] [--stage] [--dry-run] {advisory,product,release} ...\n\n    positional arguments:\n      {advisory,product,release}\n        advisory            Get or create an advisory\n        product             Get a product\n        release             Get or create a release (RCM)\n\n    optional arguments:\n      --stage               use staging ET instance\n      --dry-run             show what would happen, but don't do it\n\nerrata-tool command-line interface examples\n-------------------------------------------\n\nWaiting and conditionally pushing an advisory:\n\nAs a release engineer one often checks the status of an advisory if it is ready\nto be pushed. To avoid human polling of the state and to automate the advisory\npush two options are provided under the ``errata-tool advisory push`` option::\n\n    errata-tool advisory push --help\n    usage: errata-tool advisory push [-h] [--target {stage,live}]\n    [--wait-for-state {SHIPPED_LIVE,PUSH_READY}] [--push-when-ready]\n    [--verbose] errata_id\n\n    positional arguments:\n      errata_id             advisory id, \"12345\"\n\n    optional arguments:\n      -h, --help            show this help message and exit\n      --target {stage,live}\n                            stage (default) or live\n      --wait-for-state {SHIPPED_LIVE,PUSH_READY}\n                            state : PUSH_READY or SHIPPED_LIVE\n      --push-when-ready     Push if the advisory enters state PUSH_READY\n      --verbose             print current state of the advisory\n\nThe ``--wait-for-state`` option polls at regular interval for the advisory to\nenter one of the two desired states - PUSH_READY or SHIPPED_LIVE\n\nwhen the advisory reaches that state the polling stops and the script exits with\na successful exit code ``$? eq 0``.\n\nCaveat: The script will wait forever until that state is reached or interrupted\nby the user. The option to have a cap on the wait time was dropped to keep the\nusage simple and for the lack of a compelling use case.\n\n\nThe ``--push-when-ready`` option pushes the advisory if it is in  PUSH_READY\nstate. The ``--push-when-ready`` option can be used with ``--wait-for-state``\noption to repeatedly poll the advisory until it reaches PUSH_READY state before\npushing it.\nHere are some usecases:\n\n- usecase 1: Push advisory if it is in state PUSH_READY state\n\n\n.. code-block:: bash\n\n    errata-tool --stage advisory push --target live --push-when-ready 12345\n\n\n- usecase 2: Wait for advisory to enter PUSH_READY state and push the advisory\n\n\n.. code-block:: bash\n\n    errata-tool --stage advisory push --target live  --push-when-ready \\\n    --wait-for-state PUSH_READY 12345\n\n\n- usecase 3: Wait for advisory to enter SHIPPED_LIVE, push the advisory if\n               it enters PUSH_READY state while waiting.\n\n\n.. code-block:: bash\n\n    errata-tool --stage advisory push --target live  --push-when-ready \\\n    --wait-for-state SHIPPED_LIVE 12345\n\n\n- usecase 4: Push independent advisories before pushing those which are\n           dependent on the independent advisories\n\n           See: https://issues.redhat.com/browse/SPMM-9887\n\n.. code-block:: bash\n\n    # Ship advisory 12346 after shipping 12345\n    errata-tool --stage advisory push --target live  --push-when-ready \\\n    --wait-for-state SHIPPED_LIVE 12345 && \\\n    errata-tool --stage advisory push --target live  --push-when-ready \\\n    --wait-for-state PUSH_READY 12346\n\nMore Python Examples\n--------------------\n\nGetting an erratum's name:\n\n.. code-block:: python\n\n    e = Erratum(errata_id=22986)\n\n    print(e.errata_name)\n    # prints \"RH*A-YYYY:NNNNN\", for example \"RHBA-2018:12345\"\n\nAdding bugs:\n\n.. code-block:: python\n\n    e = Erratum(errata_id=22986)\n\n    e.addBugs([12345, 123678])\n\n    e.commit()\n\n    # You can read the current list of bugs with the \"e.errata_bugs\" property.\n\nRemoving bugs:\n\n.. code-block:: python\n\n    e = Erratum(errata_id=22986)\n\n    e.removeBugs([12345, 123678])\n\n    # You can simply call \"commit()\" without checking the return code, or check\n    # it and use refresh() to refresh our local instance data for the errata\n    # advisory.\n    need_refresh = e.commit()\n\n    if need_refresh:\n        print('refreshing')\n        e.refresh()\n\nChecking whether an advisory is embargoed:\n\n.. code-block:: python\n\n    e = Erratum(errata_id=22986)\n\n    if e.embargoed:\n        # it's embargoed\n    else:\n        # it's not embargoed\n\nChecking whether an advisory is text-only:\n\n.. code-block:: python\n\n    e = Erratum(errata_id=24075)\n\n    if e.text_only:\n        # it's text-only\n        # If it's an RHSA, you may want to get/set e.text_only_cpe here.\n    else:\n        # it's not text-only\n\nAdding builds:\n\n.. code-block:: python\n\n    e = Erratum(errata_id=24075)\n\n    # The \"release\" kwarg is the Errata Tools's \"product version\" in\n    # composedb, for example \"RHEL-7-CEPH-2\".\n    e.addBuilds(['ceph-10.2.3-17.el7cp'], release='RHEL-7-CEPH-2')\n\nAdding container builds:\n\n.. code-block:: python\n\n    e = Erratum(errata_id=34279)\n\n    # For non-RPM Brew builds, you must specify the file_types kwarg.\n    # For container builds, this is \"tar\".\n    e.addBuilds('rhceph-rhel7-container-3-9',\n                release='RHEL-7-CEPH-3',\n                file_types={'rhceph-rhel7-container-3-9': ['tar']})\n\nChanging state:\n\n.. code-block:: python\n\n    e = Erratum(errata_id=24075)\n\n    e.setState('QE')\n    e.commit()\n\nChanging docs reviewer:\n\n.. code-block:: python\n\n    e = Erratum(errata_id=24075)\n\n    e.changeDocsReviewer('kdreyer@redhat.com')\n\nAdding someone to the CC list:\n\n.. code-block:: python\n\n    e = Erratum(errata_id=24075)\n\n    e.addCC('kdreyer@redhat.com')\n\nChanging an advisory type:\n\n.. code-block:: python\n\n    e = Erratum(errata_id=33840)\n\n    e.update(errata_type='RHBA')\n    e.commit()\n\nReloading the all specific builds that lack product listings:\n\n.. code-block:: python\n\n    e = Erratum(errata_id=24075)\n\n    if e.missing_product_listings:  # a (possibly-empty) list of build NVRs\n        result = e.reloadBuilds(no_rpm_listing_only=True)\n        # result is a dict for this job tracker\n\nDetermining if an advisory has RPMs or containers:\n\n.. code-block:: python\n\n    e = Erratum(errata_id=24075)\n\n    content_types = e.content_types\n    # result is a list, like [\"rpm\"], or [\"docker\"]\n\nGet active RPMDiff results for an advisory:\n\n.. code-block:: python\n\n    e = Erratum(errata_id=24075)\n\n    bad = []\n    for result in e.externalTests(test_type='rpmdiff'):\n        if result['attributes']['status'] not in ('PASSED', 'WAIVED'):\n            # See result['attributes']['external_id'] for the integer to pass\n            # into RPMDiff's run API.\n            bad.append(result)\n\n\nSet the CDN repos for a container advisory (only applies for advisories\ncontaining Docker images):\n\n.. code-block:: python\n\n    e = Erratum(errata_id=24075)\n\n    assert 'docker' in e.content_types\n    e.metadataCdnRepos(enable=['rhel-7-server-rhceph-3-mon-rpms__x86_64'])\n\nSame thing, but for text-only advisories:\n\n.. code-block:: python\n\n    e = Erratum(errata_id=24075)\n\n    assert e.text_only\n    e.textOnlyRepos(enable=['rhel-7-server-rhceph-3-mon-rpms__x86_64'])\n\n\nWorking with products\n---------------------\n\nThe ``errata_tool.product.Product`` class can look up existing products.\n\nLooking up a product:\n\n.. code-block:: python\n\n    from errata_tool.product import Product\n\n    p = Product('RHCEPH')\n    print(p.id)  # 104\n    print(p.name)  # \"RHCEPH\"\n    print(p.description)  # \"Red Hat Ceph Storage\"\n\n\nWorking with releases\n---------------------\n\nThe ``errata_tool.release.Release`` class can look up existing releases or\ncreate new release entries.\n\nLooking up a release:\n\n.. code-block:: python\n\n    from errata_tool.release import Release\n\n    r = Release(name='rhceph-2.4')\n    print(r.id)  # 792\n    print(r.name)  # \"rhceph-2.4\"\n    print(r.description)  # \"Red Hat Ceph Storage 2.4\"\n    print(r.type)  # \"QuarterlyUpdate\"\n    print(r.is_active)  # True\n    print(r.enabled)  # True\n    print(r.blocker_flags)  # ['ceph-2.y', 'pm_ack', 'devel_ack', 'qa_ack']\n    print(r.edit_url)  # https://errata.devel.redhat.com/release/edit/792\n\nFinding all \"NEW_FILES\" advisories for a release:\n\n.. code-block:: python\n\n    from errata_tool.release import Release\n\n    rel = Release(name='rhceph-3.0')\n\n    advisories = rel.advisories()\n    new_files = [a for a in advisories if a['status'] == 'NEW_FILES']\n    print(new_files)  # prints the list of advisories' data\n\nCreating a new release (this requires the \"releng\" role in the Errata Tool):\n\n.. code-block:: python\n\n    from errata_tool.release import Release\n    r = Release.create(\n        name='rhceph-3.0',\n        product='RHCEPH',\n        product_versions=['RHEL-7-CEPH-3'],\n        type='QuarterlyUpdate',\n        program_manager='anharris',\n        blocker_flags='ceph-3.0',\n        default_brew_tag='ceph-3.0-rhel-7-candidate',\n    )\n    print('created new rhceph-3.0 release')\n    print('visit %s to edit further' % r.edit_url)\n\n\nUsing the staging server\n------------------------\n\nTo use the staging Errata Tool environment without affecting production, set\nthe ``ErrataConnector._url`` member variable to the staging URL.\n\n.. code-block:: python\n\n    from errata_tool import ErrataConnector, Erratum\n\n    ErrataConnector._url = 'https://errata.stage.engineering.redhat.com/'\n    # Now try something like creating an advisory, and it will not show up in\n    # prod, or bother people with emails, etc.\n    e = Erratum(product='RHCEPH',\n                release='rhceph-2.1',\n                synopsis='Red Hat Ceph Storage 2.1 bug fix update',\n                ...\n                )\n    e.commit()\n\n\nDebugging many Errata Tool API calls\n------------------------------------\n\nMaybe your application makes many API calls (lots of advisories, builds, etc),\nWhen processing large numbers of errata from higher-level tools, it's helpful\nto understand where the time is spent to see if multiple calls can be avoided.\n\nSet ``ErrataConnector.debug = True``, and then your connector object will\nrecord information about each call it makes.  Each GET/PUT/POST is recorded,\nalong with totals / mean / min / max.\n\nURL APIs are deduplicated based on their name, so two calls to different\nerrata on the same API is recorded as a single API.\n\nTo extract the information and print it, one might use PrettyTable:\n\n.. code-block:: python\n\n    e = Erratum(errata_id=24075)\n    pt = PrettyTable()\n    for c in ErrataConnector.timings:\n        for u in ErrataConnector.timings[c]:\n            pt.add_row([c, u,\n                       ErrataConnector.timings[c][u]['count'],\n                       ErrataConnector.timings[c][u]['total'],\n                       ErrataConnector.timings[c][u]['mean'],\n                       ErrataConnector.timings[c][u]['min'],\n                       ErrataConnector.timings[c][u]['max']])\n    print(pt.get_string())\n\n\nSSL errors\n----------\n\nThis library verifies the ET server's HTTPS certificate by default. This is\nmore of a python-requests thing, but if you receive an SSL verification error,\nit's probably because you don't have the Red Hat IT CA set up for your Python\nenvironment. Particularly if you're running this in a virtualenv, you'll want\nto set the following configuration variable::\n\n    REQUESTS_CA_BUNDLE=/etc/pki/ca-trust/source/anchors/RH-IT-Root-CA.crt\n\nWhere \"RH-IT-Root-CA.crt\" is the public cert that signed the ET server's\nHTTPS certificate.\n\nWhen using RHEL 7's python-requests RPM, requests simply checks\n``/etc/pki/tls/certs/ca-bundle.crt``, so you'll need to add the IT CA cert to\nthat big bundle file.\n\nIf you've already added the Red Hat IT CA to your system-wide bundle, you can\nhave your Python code always use this file:\n\n.. code-block:: python\n\n    if 'REQUESTS_CA_BUNDLE' not in os.environ:\n        os.environ['REQUESTS_CA_BUNDLE'] = '/etc/pki/tls/certs/ca-bundle.crt'\n\nThis will make requests behave the same inside or outside your virtualenv. In\nother words, with this code, your program will always validate the Red Hat IT\nCA.\n\nBuilding RPMs\n-------------\n\nInstall fedpkg, then use the Makefile::\n\n    $ make srpm\n\nYou can then upload the SRPM to Copr. Or, to build RPMs on your local\ncomputer, using mock::\n\n    $ make rpm\n\n\nChangelog\n---------\nCheck out the `CHANGELOG`_.\n\n.. _CHANGELOG: CHANGELOG.rst\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Python API for Red Hat Errata Tool",
    "version": "1.32.0",
    "project_urls": {
        "Homepage": "https://github.com/red-hat-storage/errata-tool"
    },
    "split_keywords": [
        "packaging",
        "build"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dede28fb2c62c07c05bf6ef88b704bd11f469ad95829b561fa22f04acc0301a7",
                "md5": "27cfbfdc495ee3797e70d3f2f14f736e",
                "sha256": "73f8289b11a3f1f7347fd2bfe836fe8da37a7a0f4d0194a2ca3d3bef7ce743a4"
            },
            "downloads": -1,
            "filename": "errata-tool-1.32.0.tar.gz",
            "has_sig": false,
            "md5_digest": "27cfbfdc495ee3797e70d3f2f14f736e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 205388,
            "upload_time": "2024-02-16T17:25:07",
            "upload_time_iso_8601": "2024-02-16T17:25:07.560216Z",
            "url": "https://files.pythonhosted.org/packages/de/de/28fb2c62c07c05bf6ef88b704bd11f469ad95829b561fa22f04acc0301a7/errata-tool-1.32.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-16 17:25:07",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "red-hat-storage",
    "github_project": "errata-tool",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "tox": true,
    "lcname": "errata-tool"
}
        
Elapsed time: 0.37544s