qontract-reconcile 0.10.1rc961__py3-none-any.whl → 0.10.1rc962__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {qontract_reconcile-0.10.1rc961.dist-info → qontract_reconcile-0.10.1rc962.dist-info}/METADATA +1 -1
- {qontract_reconcile-0.10.1rc961.dist-info → qontract_reconcile-0.10.1rc962.dist-info}/RECORD +6 -5
- reconcile/utils/ocm/manifests.py +39 -0
- {qontract_reconcile-0.10.1rc961.dist-info → qontract_reconcile-0.10.1rc962.dist-info}/WHEEL +0 -0
- {qontract_reconcile-0.10.1rc961.dist-info → qontract_reconcile-0.10.1rc962.dist-info}/entry_points.txt +0 -0
- {qontract_reconcile-0.10.1rc961.dist-info → qontract_reconcile-0.10.1rc962.dist-info}/top_level.txt +0 -0
{qontract_reconcile-0.10.1rc961.dist-info → qontract_reconcile-0.10.1rc962.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: qontract-reconcile
|
3
|
-
Version: 0.10.
|
3
|
+
Version: 0.10.1rc962
|
4
4
|
Summary: Collection of tools to reconcile services with their desired state as defined in the app-interface DB.
|
5
5
|
Home-page: https://github.com/app-sre/qontract-reconcile
|
6
6
|
Author: Red Hat App-SRE Team
|
{qontract_reconcile-0.10.1rc961.dist-info → qontract_reconcile-0.10.1rc962.dist-info}/RECORD
RENAMED
@@ -773,6 +773,7 @@ reconcile/utils/ocm/clusters.py,sha256=Fn4swizm1qq-XiNlIZ9SvahkftWAyNT8hF4kqRBpK
|
|
773
773
|
reconcile/utils/ocm/identity_providers.py,sha256=dKed09N8iWmn39tI_MpwgVe47x23eLsknGbjMUxtwr4,2175
|
774
774
|
reconcile/utils/ocm/label_sources.py,sha256=ES_5VP4X6gsRxMFZ95WgbwE_HqqIUo_JRjHjdGYw6Ss,1846
|
775
775
|
reconcile/utils/ocm/labels.py,sha256=aCsL5QkRk32hZeJwsSJuCCT9sbojWMn8LL5Zo-aoFb4,5916
|
776
|
+
reconcile/utils/ocm/manifests.py,sha256=8kCVwTiaYHyjiKfP2DrkoT9eFxROy_M3rLom_hdsEIU,1193
|
776
777
|
reconcile/utils/ocm/ocm.py,sha256=I5D7e8VxP8mhsi2ifYpKsr8UpbG5Syy8PfVpS6UWkmE,36659
|
777
778
|
reconcile/utils/ocm/products.py,sha256=ZoK-3i4G2DGZRTwCfT_-ymHm2GCan_uImeqQJVJHLMw,25952
|
778
779
|
reconcile/utils/ocm/search_filters.py,sha256=fNrCNJKLgp9x7z5MvlwWHaOhcMEVrEqlm9xdxFU8JgE,14937
|
@@ -846,8 +847,8 @@ tools/test/test_qontract_cli.py,sha256=_D61RFGAN5x44CY1tYbouhlGXXABwYfxKSWSQx3Jr
|
|
846
847
|
tools/test/test_saas_promotion_state.py,sha256=dy4kkSSAQ7bC0Xp2CociETGN-2aABEfL6FU5D9Jl00Y,6056
|
847
848
|
tools/test/test_sd_app_sre_alert_report.py,sha256=v363r9zM7__0kR5K6mvJoGFcM9BvE33fWAayrqkpojA,2116
|
848
849
|
tools/test/test_sre_checkpoints.py,sha256=SKqPPTl9ua0RFdSSofnoQX-JZE6dFLO3LRhfQzqtfh8,2607
|
849
|
-
qontract_reconcile-0.10.
|
850
|
-
qontract_reconcile-0.10.
|
851
|
-
qontract_reconcile-0.10.
|
852
|
-
qontract_reconcile-0.10.
|
853
|
-
qontract_reconcile-0.10.
|
850
|
+
qontract_reconcile-0.10.1rc962.dist-info/METADATA,sha256=H2k1Pegpt_fHDM6NwGFWQasYZYX9bZodCUN6DNMAuoE,2262
|
851
|
+
qontract_reconcile-0.10.1rc962.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
852
|
+
qontract_reconcile-0.10.1rc962.dist-info/entry_points.txt,sha256=GKQqCl2j2X1BJQ69een6rHcR26PmnxnONLNOQB-nRjY,491
|
853
|
+
qontract_reconcile-0.10.1rc962.dist-info/top_level.txt,sha256=l5ISPoXzt0SdR4jVdkfa7RPSKNc8zAHYWAnR-Dw8Ey8,24
|
854
|
+
qontract_reconcile-0.10.1rc962.dist-info/RECORD,,
|
@@ -0,0 +1,39 @@
|
|
1
|
+
from collections.abc import Generator, Mapping
|
2
|
+
from dataclasses import dataclass
|
3
|
+
from typing import Any
|
4
|
+
|
5
|
+
from reconcile.utils.ocm_base_client import OCMBaseClient
|
6
|
+
|
7
|
+
|
8
|
+
@dataclass
|
9
|
+
class Manifest:
|
10
|
+
def __init__(self, cluster_id: str):
|
11
|
+
self.href = f"/api/clusters_mgmt/v1/clusters/{cluster_id}/external_configuration/manifests"
|
12
|
+
|
13
|
+
href: str
|
14
|
+
|
15
|
+
|
16
|
+
def get_manifests(
|
17
|
+
ocm_client: OCMBaseClient, cluster_id: str
|
18
|
+
) -> Generator[dict[str, Any], None, None]:
|
19
|
+
manifest = Manifest(cluster_id)
|
20
|
+
return ocm_client.get_paginated(api_path=manifest.href)
|
21
|
+
|
22
|
+
|
23
|
+
def get_manifest(ocm_client: OCMBaseClient, cluster_id: str, manifest_id: str) -> Any:
|
24
|
+
manifest = Manifest(cluster_id)
|
25
|
+
return ocm_client.get(api_path=manifest.href + "/" + manifest_id)
|
26
|
+
|
27
|
+
|
28
|
+
def create_manifest(
|
29
|
+
ocm_client: OCMBaseClient, cluster_id: str, manifest_map: Mapping
|
30
|
+
) -> None:
|
31
|
+
manifest = Manifest(cluster_id)
|
32
|
+
ocm_client.post(api_path=manifest.href, data=manifest_map)
|
33
|
+
|
34
|
+
|
35
|
+
def patch_manifest(
|
36
|
+
ocm_client: OCMBaseClient, cluster_id: str, syncset_id: str, manifest_map: Mapping
|
37
|
+
) -> None:
|
38
|
+
manifest = Manifest(cluster_id)
|
39
|
+
ocm_client.patch(api_path=manifest.href + "/" + syncset_id, data=manifest_map)
|
File without changes
|
File without changes
|
{qontract_reconcile-0.10.1rc961.dist-info → qontract_reconcile-0.10.1rc962.dist-info}/top_level.txt
RENAMED
File without changes
|