qontract-reconcile 0.10.1rc55__py3-none-any.whl → 0.10.1rc56__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: qontract-reconcile
3
- Version: 0.10.1rc55
3
+ Version: 0.10.1rc56
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
@@ -120,7 +120,7 @@ reconcile/unleash_watcher.py,sha256=xNLUFpIr66XESEyXUkmHTTmHghVWHiMtnS_k0OC7gd8,
120
120
  reconcile/vault_replication.py,sha256=xobxnsOfUcwvdQ-RZ7JH_sZCDh8rpEY7MJ36nkvfFqE,17262
121
121
  reconcile/vpc_peerings_validator.py,sha256=10igLYTQpBMGXO9mTO7sJBzgr4jXQ2hf1OH5r5DKugE,3586
122
122
  reconcile/aus/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
123
- reconcile/aus/advanced_upgrade_service.py,sha256=l9Zz4nOGo5YnZjXpBZX3yltgSiKaB-QYIJZJapCW2eg,11909
123
+ reconcile/aus/advanced_upgrade_service.py,sha256=xWu2oq1ouSkw0ZMoX40cmj_6W6MuWpc81S6PvxOupAA,11988
124
124
  reconcile/aus/base.py,sha256=9qovY5Q9-o6hNRyVI7TaCZAnbSI1PSj9gD1-Ph--IAg,29670
125
125
  reconcile/aus/metrics.py,sha256=QLzmIpXh3Pxddfz9KyaiupLJZQnxjwVz04YfhpVLhQk,1637
126
126
  reconcile/aus/models.py,sha256=kRrs276iJClnNnEeWnJma2Gvx8E9kes77I_XbgKoVzk,4722
@@ -584,8 +584,8 @@ tools/sre_checkpoints/util.py,sha256=zEDbGr18ZeHNQwW8pUsr2JRjuXIPz--WAGJxZo9sv_Y
584
584
  tools/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
585
585
  tools/test/test_qontract_cli.py,sha256=awwTHEc2DWlykuqGIYM0WOBoSL0KRnOraCLk3C7izis,1401
586
586
  tools/test/test_sre_checkpoints.py,sha256=SKqPPTl9ua0RFdSSofnoQX-JZE6dFLO3LRhfQzqtfh8,2607
587
- qontract_reconcile-0.10.1rc55.dist-info/METADATA,sha256=vwgKDwqaAzLIBKws-HpADlPjUyiTa2-UtPatOPUt4K8,2288
588
- qontract_reconcile-0.10.1rc55.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
589
- qontract_reconcile-0.10.1rc55.dist-info/entry_points.txt,sha256=Af70EWPJxsTiCNF6gA-pWdw1A0Heqn-PZF-oBc5NmiU,302
590
- qontract_reconcile-0.10.1rc55.dist-info/top_level.txt,sha256=l5ISPoXzt0SdR4jVdkfa7RPSKNc8zAHYWAnR-Dw8Ey8,24
591
- qontract_reconcile-0.10.1rc55.dist-info/RECORD,,
587
+ qontract_reconcile-0.10.1rc56.dist-info/METADATA,sha256=RuuTzt9HVECcLVBrn9IPJj-qhBYE2wkAVzy5trzH_QU,2288
588
+ qontract_reconcile-0.10.1rc56.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
589
+ qontract_reconcile-0.10.1rc56.dist-info/entry_points.txt,sha256=Af70EWPJxsTiCNF6gA-pWdw1A0Heqn-PZF-oBc5NmiU,302
590
+ qontract_reconcile-0.10.1rc56.dist-info/top_level.txt,sha256=l5ISPoXzt0SdR4jVdkfa7RPSKNc8zAHYWAnR-Dw8Ey8,24
591
+ qontract_reconcile-0.10.1rc56.dist-info/RECORD,,
@@ -30,7 +30,6 @@ from reconcile.gql_definitions.fragments.upgrade_policy import (
30
30
  from reconcile.utils.models import (
31
31
  CSV,
32
32
  cron_validator,
33
- data_default_none,
34
33
  )
35
34
  from reconcile.utils.ocm.clusters import (
36
35
  ClusterDetails,
@@ -239,17 +238,19 @@ def _build_org_upgrade_spec(
239
238
  org_labelset = build_labelset(org_labels, OrganizationLabelSet)
240
239
  org_upgrade_spec = OrganizationUpgradeSpec(
241
240
  org=AUSOCMOrganization(
242
- **data_default_none(
243
- AUSOCMOrganization,
244
- dict(
245
- name=org_id,
246
- orgId=org_id,
247
- blockedVersions=org_labelset.blocked_versions,
248
- environment=ocm_env,
249
- addonManagedUpgrades=False,
250
- sectors=org_labelset.sector_dependencies(),
251
- ),
252
- )
241
+ name=org_id,
242
+ orgId=org_id,
243
+ blockedVersions=org_labelset.blocked_versions,
244
+ environment=ocm_env,
245
+ addonManagedUpgrades=False,
246
+ sectors=org_labelset.sector_dependencies(),
247
+ accessTokenClientId=None,
248
+ accessTokenClientSecret=None,
249
+ accessTokenUrl=None,
250
+ addonUpgradeTests=None,
251
+ inheritVersionData=None,
252
+ upgradePolicyAllowedWorkloads=None,
253
+ upgradePolicyClusters=None,
253
254
  )
254
255
  )
255
256