qontract-reconcile 0.10.2.dev414__tar.gz → 0.10.2.dev415__tar.gz

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.
Files changed (1098) hide show
  1. qontract_reconcile-0.10.2.dev415/PKG-INFO +505 -0
  2. qontract_reconcile-0.10.2.dev415/pyproject.toml +287 -0
  3. qontract_reconcile-0.10.2.dev415/reconcile/acs_rbac.py +595 -0
  4. qontract_reconcile-0.10.2.dev415/reconcile/aus/advanced_upgrade_service.py +643 -0
  5. qontract_reconcile-0.10.2.dev415/reconcile/aus/base.py +1330 -0
  6. qontract_reconcile-0.10.2.dev415/reconcile/aus/cluster_version_data.py +179 -0
  7. qontract_reconcile-0.10.2.dev415/reconcile/aus/models.py +278 -0
  8. qontract_reconcile-0.10.2.dev415/reconcile/automated_actions/config/integration.py +391 -0
  9. qontract_reconcile-0.10.2.dev415/reconcile/aws_account_manager/integration.py +379 -0
  10. qontract_reconcile-0.10.2.dev415/reconcile/aws_account_manager/reconciler.py +460 -0
  11. qontract_reconcile-0.10.2.dev415/reconcile/aws_ami_cleanup/integration.py +269 -0
  12. qontract_reconcile-0.10.2.dev415/reconcile/aws_saml_idp/integration.py +211 -0
  13. qontract_reconcile-0.10.2.dev415/reconcile/aws_saml_roles/integration.py +329 -0
  14. qontract_reconcile-0.10.2.dev415/reconcile/aws_version_sync/integration.py +531 -0
  15. qontract_reconcile-0.10.2.dev415/reconcile/change_owners/bundle.py +198 -0
  16. qontract_reconcile-0.10.2.dev415/reconcile/change_owners/change_log_tracking.py +242 -0
  17. qontract_reconcile-0.10.2.dev415/reconcile/dashdotdb_dora.py +523 -0
  18. qontract_reconcile-0.10.2.dev415/reconcile/dashdotdb_slo.py +122 -0
  19. qontract_reconcile-0.10.2.dev415/reconcile/database_access_manager.py +761 -0
  20. qontract_reconcile-0.10.2.dev415/reconcile/dynatrace_token_provider/integration.py +703 -0
  21. qontract_reconcile-0.10.2.dev415/reconcile/endpoints_discovery/merge_request.py +96 -0
  22. qontract_reconcile-0.10.2.dev415/reconcile/endpoints_discovery/merge_request_manager.py +176 -0
  23. qontract_reconcile-0.10.2.dev415/reconcile/external_resources/manager.py +482 -0
  24. qontract_reconcile-0.10.2.dev415/reconcile/external_resources/metrics.py +117 -0
  25. qontract_reconcile-0.10.2.dev415/reconcile/external_resources/model.py +443 -0
  26. qontract_reconcile-0.10.2.dev415/reconcile/external_resources/reconciler.py +282 -0
  27. qontract_reconcile-0.10.2.dev415/reconcile/external_resources/secrets_sync.py +456 -0
  28. qontract_reconcile-0.10.2.dev415/reconcile/fleet_labeler/integration.py +347 -0
  29. qontract_reconcile-0.10.2.dev415/reconcile/gcp_image_mirror.py +252 -0
  30. qontract_reconcile-0.10.2.dev415/reconcile/github_org.py +519 -0
  31. qontract_reconcile-0.10.2.dev415/reconcile/github_owners.py +103 -0
  32. qontract_reconcile-0.10.2.dev415/reconcile/gitlab_members.py +244 -0
  33. qontract_reconcile-0.10.2.dev415/reconcile/gitlab_permissions.py +240 -0
  34. qontract_reconcile-0.10.2.dev415/reconcile/glitchtip_project_alerts/integration.py +330 -0
  35. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/acs/acs_instances.py +83 -0
  36. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/acs/acs_policies.py +157 -0
  37. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/acs/acs_rbac.py +111 -0
  38. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/advanced_upgrade_service/aus_clusters.py +202 -0
  39. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/advanced_upgrade_service/aus_organization.py +167 -0
  40. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/app_interface_metrics_exporter/onboarding_status.py +60 -0
  41. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/app_sre_tekton_access_revalidation/roles.py +86 -0
  42. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/app_sre_tekton_access_revalidation/users.py +92 -0
  43. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/automated_actions/instance.py +412 -0
  44. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/aws_account_manager/aws_accounts.py +182 -0
  45. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/aws_ami_cleanup/aws_accounts.py +170 -0
  46. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/aws_cloudwatch_log_retention/aws_accounts.py +116 -0
  47. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/aws_saml_idp/aws_accounts.py +126 -0
  48. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/aws_saml_roles/aws_accounts.py +126 -0
  49. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/aws_saml_roles/roles.py +97 -0
  50. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/aws_version_sync/clusters.py +83 -0
  51. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/aws_version_sync/namespaces.py +143 -0
  52. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/change_owners/queries/change_types.py +153 -0
  53. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/change_owners/queries/self_service_roles.py +179 -0
  54. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/cluster_auth_rhidp/clusters.py +128 -0
  55. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/common/alerting_services_settings.py +60 -0
  56. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/common/app_code_component_repos.py +72 -0
  57. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/common/app_interface_custom_messages.py +68 -0
  58. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/common/app_interface_dms_settings.py +86 -0
  59. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/common/app_interface_repo_settings.py +60 -0
  60. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/common/app_interface_roles.py +120 -0
  61. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/common/app_interface_state_settings.py +88 -0
  62. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/common/app_interface_vault_settings.py +60 -0
  63. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/common/app_quay_repos_escalation_policies.py +120 -0
  64. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/common/apps.py +72 -0
  65. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/common/aws_vpc_requests.py +122 -0
  66. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/common/aws_vpcs.py +84 -0
  67. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/common/clusters.py +677 -0
  68. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/common/clusters_minimal.py +169 -0
  69. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/common/clusters_with_dms.py +72 -0
  70. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/common/clusters_with_peering.py +364 -0
  71. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/common/github_orgs.py +77 -0
  72. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/common/jira_settings.py +68 -0
  73. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/common/jiralert_settings.py +68 -0
  74. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/common/ldap_settings.py +68 -0
  75. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/common/namespaces.py +360 -0
  76. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/common/namespaces_minimal.py +123 -0
  77. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/common/ocm_env_telemeter.py +95 -0
  78. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/common/ocm_environments.py +77 -0
  79. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/common/pagerduty_instances.py +75 -0
  80. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/common/pgp_reencryption_settings.py +72 -0
  81. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/common/pipeline_providers.py +285 -0
  82. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/common/quay_instances.py +64 -0
  83. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/common/quay_orgs.py +68 -0
  84. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/common/reserved_networks.py +94 -0
  85. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/common/rhcs_provider_settings.py +70 -0
  86. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/common/saas_files.py +640 -0
  87. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/common/saas_target_namespaces.py +141 -0
  88. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/common/saasherder_settings.py +62 -0
  89. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/common/slack_workspaces.py +62 -0
  90. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/common/smtp_client_settings.py +81 -0
  91. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/common/state_aws_account.py +76 -0
  92. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/common/users.py +66 -0
  93. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/common/users_with_paths.py +102 -0
  94. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/cost_report/app_names.py +68 -0
  95. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/cost_report/cost_namespaces.py +86 -0
  96. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/cost_report/settings.py +77 -0
  97. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/dashdotdb_slo/slo_documents_query.py +109 -0
  98. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/dynatrace_token_provider/dynatrace_bootstrap_tokens.py +79 -0
  99. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/dynatrace_token_provider/token_specs.py +84 -0
  100. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/email_sender/apps.py +64 -0
  101. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/email_sender/emails.py +133 -0
  102. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/email_sender/users.py +62 -0
  103. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/endpoints_discovery/apps.py +131 -0
  104. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/external_resources/aws_accounts.py +73 -0
  105. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/external_resources/external_resources_modules.py +105 -0
  106. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/external_resources/external_resources_namespaces.py +1238 -0
  107. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/external_resources/external_resources_settings.py +117 -0
  108. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/external_resources/fragments/external_resources_module_overrides.py +37 -0
  109. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/fleet_labeler/fleet_labels.py +137 -0
  110. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/fragments/aus_organization.py +107 -0
  111. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/fragments/aws_account_common.py +63 -0
  112. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/fragments/aws_account_managed.py +58 -0
  113. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/fragments/aws_account_sso.py +35 -0
  114. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/fragments/aws_infra_management_account.py +40 -0
  115. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/fragments/aws_organization.py +33 -0
  116. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/fragments/aws_vpc.py +47 -0
  117. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/fragments/aws_vpc_request.py +70 -0
  118. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/fragments/container_image_mirror.py +33 -0
  119. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/fragments/deploy_resources.py +39 -0
  120. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/fragments/disable.py +28 -0
  121. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/fragments/email_service.py +32 -0
  122. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/fragments/email_user.py +28 -0
  123. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/fragments/jumphost_common_fields.py +35 -0
  124. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/fragments/membership_source.py +47 -0
  125. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/fragments/minimal_ocm_organization.py +29 -0
  126. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/fragments/oc_connection_cluster.py +42 -0
  127. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/fragments/ocm_environment.py +36 -0
  128. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/fragments/pipeline_provider_retention.py +30 -0
  129. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/fragments/prometheus_instance.py +48 -0
  130. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/fragments/resource_limits_requirements.py +29 -0
  131. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/fragments/resource_requests_requirements.py +29 -0
  132. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/fragments/resource_values.py +29 -0
  133. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/fragments/saas_slo_document.py +82 -0
  134. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/fragments/saas_target_namespace.py +108 -0
  135. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/fragments/serviceaccount_token.py +38 -0
  136. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/fragments/terraform_state.py +36 -0
  137. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/fragments/upgrade_policy.py +38 -0
  138. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/fragments/user.py +32 -0
  139. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/fragments/vault_secret.py +31 -0
  140. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/gcp/gcp_docker_repos.py +128 -0
  141. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/gcp/gcp_projects.py +77 -0
  142. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/gitlab_members/gitlab_instances.py +81 -0
  143. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/gitlab_members/permissions.py +125 -0
  144. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/glitchtip/glitchtip_instance.py +93 -0
  145. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/glitchtip/glitchtip_project.py +235 -0
  146. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/glitchtip_project_alerts/glitchtip_project.py +173 -0
  147. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/integrations/integrations.py +374 -0
  148. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/jenkins_configs/jenkins_configs.py +112 -0
  149. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/jenkins_configs/jenkins_instances.py +79 -0
  150. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/jira/jira_servers.py +80 -0
  151. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/jira_permissions_validator/jira_boards_for_permissions_validator.py +143 -0
  152. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/jumphosts/jumphosts.py +95 -0
  153. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/ldap_groups/roles.py +111 -0
  154. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/ldap_groups/settings.py +79 -0
  155. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/maintenance/maintenances.py +101 -0
  156. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/membershipsources/roles.py +110 -0
  157. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/ocm_labels/clusters.py +111 -0
  158. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/ocm_labels/organizations.py +78 -0
  159. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/openshift_cluster_bots/clusters.py +126 -0
  160. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/openshift_groups/managed_groups.py +70 -0
  161. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/openshift_groups/managed_roles.py +100 -0
  162. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/openshift_serviceaccount_tokens/tokens.py +132 -0
  163. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/quay_membership/quay_membership.py +115 -0
  164. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/rhcs/certs.py +203 -0
  165. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/rhidp/organizations.py +96 -0
  166. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/service_dependencies/jenkins_instance_fragment.py +28 -0
  167. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/service_dependencies/service_dependencies.py +166 -0
  168. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/sharding/aws_accounts.py +68 -0
  169. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/sharding/ocm_organization.py +63 -0
  170. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/skupper_network/site_controller_template.py +29 -0
  171. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/skupper_network/skupper_networks.py +197 -0
  172. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/slack_usergroups/clusters.py +76 -0
  173. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/slack_usergroups/permissions.py +195 -0
  174. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/slack_usergroups/users.py +109 -0
  175. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/slo_documents/slo_documents.py +142 -0
  176. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/status_board/status_board.py +162 -0
  177. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/statuspage/statuspages.py +179 -0
  178. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/templating/template_collection.py +132 -0
  179. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/templating/templates.py +110 -0
  180. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/terraform_cloudflare_dns/app_interface_cloudflare_dns_settings.py +62 -0
  181. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/terraform_cloudflare_dns/terraform_cloudflare_zones.py +193 -0
  182. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/terraform_cloudflare_resources/terraform_cloudflare_accounts.py +127 -0
  183. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/terraform_cloudflare_resources/terraform_cloudflare_resources.py +359 -0
  184. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/terraform_cloudflare_users/app_interface_setting_cloudflare_and_vault.py +62 -0
  185. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/terraform_cloudflare_users/terraform_cloudflare_roles.py +139 -0
  186. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/terraform_init/aws_accounts.py +107 -0
  187. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/terraform_repo/terraform_repo.py +141 -0
  188. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/terraform_resources/database_access_manager.py +158 -0
  189. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/terraform_resources/terraform_resources_namespaces.py +1168 -0
  190. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/terraform_tgw_attachments/aws_accounts.py +124 -0
  191. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/unleash_feature_toggles/feature_toggles.py +113 -0
  192. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/vault_instances/vault_instances.py +245 -0
  193. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/vault_policies/vault_policies.py +70 -0
  194. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/vpc_peerings_validator/vpc_peerings_validator.py +157 -0
  195. qontract_reconcile-0.10.2.dev415/reconcile/gql_definitions/vpc_peerings_validator/vpc_peerings_validator_peered_cluster_fragment.py +39 -0
  196. qontract_reconcile-0.10.2.dev415/reconcile/integrations_manager.py +301 -0
  197. qontract_reconcile-0.10.2.dev415/reconcile/jenkins_worker_fleets.py +218 -0
  198. qontract_reconcile-0.10.2.dev415/reconcile/jira_permissions_validator.py +492 -0
  199. qontract_reconcile-0.10.2.dev415/reconcile/ldap_groups/integration.py +280 -0
  200. qontract_reconcile-0.10.2.dev415/reconcile/ocm/types.py +117 -0
  201. qontract_reconcile-0.10.2.dev415/reconcile/ocm_aws_infrastructure_access.py +209 -0
  202. qontract_reconcile-0.10.2.dev415/reconcile/ocm_clusters.py +458 -0
  203. qontract_reconcile-0.10.2.dev415/reconcile/ocm_labels/integration.py +407 -0
  204. qontract_reconcile-0.10.2.dev415/reconcile/ocm_machine_pools.py +551 -0
  205. qontract_reconcile-0.10.2.dev415/reconcile/openshift_base.py +1609 -0
  206. qontract_reconcile-0.10.2.dev415/reconcile/openshift_cluster_bots.py +344 -0
  207. qontract_reconcile-0.10.2.dev415/reconcile/openshift_namespace_labels.py +473 -0
  208. qontract_reconcile-0.10.2.dev415/reconcile/openshift_rhcs_certs.py +297 -0
  209. qontract_reconcile-0.10.2.dev415/reconcile/openshift_rolebindings.py +327 -0
  210. qontract_reconcile-0.10.2.dev415/reconcile/openshift_saas_deploy.py +349 -0
  211. qontract_reconcile-0.10.2.dev415/reconcile/openshift_saas_deploy_change_tester.py +250 -0
  212. qontract_reconcile-0.10.2.dev415/reconcile/openshift_serviceaccount_tokens.py +237 -0
  213. qontract_reconcile-0.10.2.dev415/reconcile/openshift_upgrade_watcher.py +199 -0
  214. qontract_reconcile-0.10.2.dev415/reconcile/oum/labelset.py +55 -0
  215. qontract_reconcile-0.10.2.dev415/reconcile/oum/models.py +69 -0
  216. qontract_reconcile-0.10.2.dev415/reconcile/prometheus_rules_tester/integration.py +304 -0
  217. qontract_reconcile-0.10.2.dev415/reconcile/quay_mirror.py +409 -0
  218. qontract_reconcile-0.10.2.dev415/reconcile/rhidp/common.py +220 -0
  219. qontract_reconcile-0.10.2.dev415/reconcile/rhidp/sso_client/base.py +264 -0
  220. qontract_reconcile-0.10.2.dev415/reconcile/saas_auto_promotions_manager/merge_request_manager/renderer.py +193 -0
  221. qontract_reconcile-0.10.2.dev415/reconcile/skupper_network/integration.py +309 -0
  222. qontract_reconcile-0.10.2.dev415/reconcile/slack_usergroups.py +901 -0
  223. qontract_reconcile-0.10.2.dev415/reconcile/status_board.py +465 -0
  224. qontract_reconcile-0.10.2.dev415/reconcile/statuspage/atlassian.py +492 -0
  225. qontract_reconcile-0.10.2.dev415/reconcile/statuspage/page.py +198 -0
  226. qontract_reconcile-0.10.2.dev415/reconcile/templating/lib/rendering.py +212 -0
  227. qontract_reconcile-0.10.2.dev415/reconcile/templating/renderer.py +413 -0
  228. qontract_reconcile-0.10.2.dev415/reconcile/terraform_cloudflare_dns.py +379 -0
  229. qontract_reconcile-0.10.2.dev415/reconcile/terraform_cloudflare_resources.py +445 -0
  230. qontract_reconcile-0.10.2.dev415/reconcile/terraform_cloudflare_users.py +373 -0
  231. qontract_reconcile-0.10.2.dev415/reconcile/terraform_init/integration.py +331 -0
  232. qontract_reconcile-0.10.2.dev415/reconcile/terraform_repo.py +398 -0
  233. qontract_reconcile-0.10.2.dev415/reconcile/terraform_resources.py +605 -0
  234. qontract_reconcile-0.10.2.dev415/reconcile/terraform_tgw_attachments.py +587 -0
  235. qontract_reconcile-0.10.2.dev415/reconcile/terraform_vpc_resources/integration.py +248 -0
  236. qontract_reconcile-0.10.2.dev415/reconcile/typed_queries/cost_report/app_names.py +22 -0
  237. qontract_reconcile-0.10.2.dev415/reconcile/typed_queries/cost_report/cost_namespaces.py +43 -0
  238. qontract_reconcile-0.10.2.dev415/reconcile/typed_queries/saas_files.py +342 -0
  239. qontract_reconcile-0.10.2.dev415/reconcile/typed_queries/status_board.py +57 -0
  240. qontract_reconcile-0.10.2.dev415/reconcile/unleash_feature_toggles/integration.py +287 -0
  241. qontract_reconcile-0.10.2.dev415/reconcile/utils/acs/base.py +81 -0
  242. qontract_reconcile-0.10.2.dev415/reconcile/utils/acs/policies.py +163 -0
  243. qontract_reconcile-0.10.2.dev415/reconcile/utils/aws_api_typed/organization.py +155 -0
  244. qontract_reconcile-0.10.2.dev415/reconcile/utils/deadmanssnitch_api.py +84 -0
  245. qontract_reconcile-0.10.2.dev415/reconcile/utils/early_exit_cache.py +290 -0
  246. qontract_reconcile-0.10.2.dev415/reconcile/utils/gitlab_api.py +867 -0
  247. qontract_reconcile-0.10.2.dev415/reconcile/utils/glitchtip/client.py +271 -0
  248. qontract_reconcile-0.10.2.dev415/reconcile/utils/glitchtip/models.py +215 -0
  249. qontract_reconcile-0.10.2.dev415/reconcile/utils/gql.py +482 -0
  250. qontract_reconcile-0.10.2.dev415/reconcile/utils/instrumented_wrappers.py +70 -0
  251. qontract_reconcile-0.10.2.dev415/reconcile/utils/internal_groups/client.py +160 -0
  252. qontract_reconcile-0.10.2.dev415/reconcile/utils/internal_groups/models.py +71 -0
  253. qontract_reconcile-0.10.2.dev415/reconcile/utils/jinja2/utils.py +299 -0
  254. qontract_reconcile-0.10.2.dev415/reconcile/utils/json.py +32 -0
  255. qontract_reconcile-0.10.2.dev415/reconcile/utils/membershipsources/app_interface_resolver.py +60 -0
  256. qontract_reconcile-0.10.2.dev415/reconcile/utils/membershipsources/models.py +90 -0
  257. qontract_reconcile-0.10.2.dev415/reconcile/utils/membershipsources/resolver.py +110 -0
  258. qontract_reconcile-0.10.2.dev415/reconcile/utils/merge_request_manager/merge_request_manager.py +99 -0
  259. qontract_reconcile-0.10.2.dev415/reconcile/utils/merge_request_manager/parser.py +67 -0
  260. qontract_reconcile-0.10.2.dev415/reconcile/utils/metrics.py +571 -0
  261. qontract_reconcile-0.10.2.dev415/reconcile/utils/models.py +124 -0
  262. qontract_reconcile-0.10.2.dev415/reconcile/utils/mr/notificator.py +91 -0
  263. qontract_reconcile-0.10.2.dev415/reconcile/utils/mr/user_maintenance.py +163 -0
  264. qontract_reconcile-0.10.2.dev415/reconcile/utils/oc.py +1932 -0
  265. qontract_reconcile-0.10.2.dev415/reconcile/utils/ocm/addons.py +228 -0
  266. qontract_reconcile-0.10.2.dev415/reconcile/utils/ocm/base.py +638 -0
  267. qontract_reconcile-0.10.2.dev415/reconcile/utils/ocm/cluster_groups.py +62 -0
  268. qontract_reconcile-0.10.2.dev415/reconcile/utils/ocm/identity_providers.py +66 -0
  269. qontract_reconcile-0.10.2.dev415/reconcile/utils/ocm/labels.py +216 -0
  270. qontract_reconcile-0.10.2.dev415/reconcile/utils/ocm/products.py +767 -0
  271. qontract_reconcile-0.10.2.dev415/reconcile/utils/ocm/service_log.py +60 -0
  272. qontract_reconcile-0.10.2.dev415/reconcile/utils/ocm/sre_capability_labels.py +51 -0
  273. qontract_reconcile-0.10.2.dev415/reconcile/utils/pagerduty_api.py +241 -0
  274. qontract_reconcile-0.10.2.dev415/reconcile/utils/promotion_state.py +111 -0
  275. qontract_reconcile-0.10.2.dev415/reconcile/utils/raw_github_api.py +94 -0
  276. qontract_reconcile-0.10.2.dev415/reconcile/utils/rhcsv2_certs.py +116 -0
  277. qontract_reconcile-0.10.2.dev415/reconcile/utils/runtime/integration.py +310 -0
  278. qontract_reconcile-0.10.2.dev415/reconcile/utils/saasherder/interfaces.py +425 -0
  279. qontract_reconcile-0.10.2.dev415/reconcile/utils/saasherder/models.py +435 -0
  280. qontract_reconcile-0.10.2.dev415/reconcile/utils/saasherder/saasherder.py +2259 -0
  281. qontract_reconcile-0.10.2.dev415/reconcile/utils/slack_api.py +554 -0
  282. qontract_reconcile-0.10.2.dev415/reconcile/utils/structs.py +16 -0
  283. qontract_reconcile-0.10.2.dev415/reconcile/utils/terraform_client.py +928 -0
  284. qontract_reconcile-0.10.2.dev415/reconcile/utils/terrascript_aws_client.py +7316 -0
  285. qontract_reconcile-0.10.2.dev415/reconcile/utils/unleash/server.py +145 -0
  286. qontract_reconcile-0.10.2.dev415/reconcile/utils/vault.py +456 -0
  287. qontract_reconcile-0.10.2.dev415/reconcile/utils/vcs.py +293 -0
  288. qontract_reconcile-0.10.2.dev415/reconcile/vault_replication.py +519 -0
  289. qontract_reconcile-0.10.2.dev415/tools/cli_commands/cost_report/cost_management_api.py +155 -0
  290. qontract_reconcile-0.10.2.dev415/tools/cli_commands/cost_report/view.py +534 -0
  291. qontract_reconcile-0.10.2.dev415/tools/cli_commands/erv2.py +732 -0
  292. qontract_reconcile-0.10.2.dev415/tools/qontract_cli.py +4887 -0
  293. qontract_reconcile-0.10.2.dev415/tools/template_validation.py +107 -0
  294. qontract_reconcile-0.10.2.dev414/PKG-INFO +0 -505
  295. qontract_reconcile-0.10.2.dev414/pyproject.toml +0 -282
  296. qontract_reconcile-0.10.2.dev414/reconcile/acs_rbac.py +0 -595
  297. qontract_reconcile-0.10.2.dev414/reconcile/aus/advanced_upgrade_service.py +0 -646
  298. qontract_reconcile-0.10.2.dev414/reconcile/aus/base.py +0 -1326
  299. qontract_reconcile-0.10.2.dev414/reconcile/aus/cluster_version_data.py +0 -189
  300. qontract_reconcile-0.10.2.dev414/reconcile/aus/models.py +0 -278
  301. qontract_reconcile-0.10.2.dev414/reconcile/automated_actions/config/integration.py +0 -391
  302. qontract_reconcile-0.10.2.dev414/reconcile/aws_account_manager/integration.py +0 -379
  303. qontract_reconcile-0.10.2.dev414/reconcile/aws_account_manager/reconciler.py +0 -460
  304. qontract_reconcile-0.10.2.dev414/reconcile/aws_ami_cleanup/integration.py +0 -266
  305. qontract_reconcile-0.10.2.dev414/reconcile/aws_saml_idp/integration.py +0 -213
  306. qontract_reconcile-0.10.2.dev414/reconcile/aws_saml_roles/integration.py +0 -330
  307. qontract_reconcile-0.10.2.dev414/reconcile/aws_version_sync/integration.py +0 -525
  308. qontract_reconcile-0.10.2.dev414/reconcile/change_owners/bundle.py +0 -198
  309. qontract_reconcile-0.10.2.dev414/reconcile/change_owners/change_log_tracking.py +0 -243
  310. qontract_reconcile-0.10.2.dev414/reconcile/dashdotdb_dora.py +0 -523
  311. qontract_reconcile-0.10.2.dev414/reconcile/dashdotdb_slo.py +0 -122
  312. qontract_reconcile-0.10.2.dev414/reconcile/database_access_manager.py +0 -760
  313. qontract_reconcile-0.10.2.dev414/reconcile/dynatrace_token_provider/integration.py +0 -703
  314. qontract_reconcile-0.10.2.dev414/reconcile/endpoints_discovery/merge_request.py +0 -96
  315. qontract_reconcile-0.10.2.dev414/reconcile/endpoints_discovery/merge_request_manager.py +0 -176
  316. qontract_reconcile-0.10.2.dev414/reconcile/external_resources/manager.py +0 -483
  317. qontract_reconcile-0.10.2.dev414/reconcile/external_resources/metrics.py +0 -117
  318. qontract_reconcile-0.10.2.dev414/reconcile/external_resources/model.py +0 -443
  319. qontract_reconcile-0.10.2.dev414/reconcile/external_resources/reconciler.py +0 -282
  320. qontract_reconcile-0.10.2.dev414/reconcile/external_resources/secrets_sync.py +0 -456
  321. qontract_reconcile-0.10.2.dev414/reconcile/fleet_labeler/integration.py +0 -347
  322. qontract_reconcile-0.10.2.dev414/reconcile/gcp_image_mirror.py +0 -252
  323. qontract_reconcile-0.10.2.dev414/reconcile/github_org.py +0 -519
  324. qontract_reconcile-0.10.2.dev414/reconcile/github_owners.py +0 -107
  325. qontract_reconcile-0.10.2.dev414/reconcile/gitlab_members.py +0 -238
  326. qontract_reconcile-0.10.2.dev414/reconcile/gitlab_permissions.py +0 -236
  327. qontract_reconcile-0.10.2.dev414/reconcile/glitchtip_project_alerts/integration.py +0 -332
  328. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/acs/acs_instances.py +0 -83
  329. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/acs/acs_policies.py +0 -157
  330. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/acs/acs_rbac.py +0 -111
  331. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/advanced_upgrade_service/aus_clusters.py +0 -202
  332. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/advanced_upgrade_service/aus_organization.py +0 -167
  333. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/app_interface_metrics_exporter/onboarding_status.py +0 -60
  334. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/app_sre_tekton_access_revalidation/roles.py +0 -86
  335. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/app_sre_tekton_access_revalidation/users.py +0 -92
  336. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/automated_actions/instance.py +0 -412
  337. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/aws_account_manager/aws_accounts.py +0 -182
  338. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/aws_ami_cleanup/aws_accounts.py +0 -170
  339. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/aws_cloudwatch_log_retention/aws_accounts.py +0 -116
  340. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/aws_saml_idp/aws_accounts.py +0 -126
  341. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/aws_saml_roles/aws_accounts.py +0 -126
  342. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/aws_saml_roles/roles.py +0 -97
  343. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/aws_version_sync/clusters.py +0 -83
  344. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/aws_version_sync/namespaces.py +0 -143
  345. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/change_owners/queries/change_types.py +0 -153
  346. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/change_owners/queries/self_service_roles.py +0 -179
  347. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/cluster_auth_rhidp/clusters.py +0 -128
  348. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/common/alerting_services_settings.py +0 -60
  349. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/common/app_code_component_repos.py +0 -72
  350. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/common/app_interface_custom_messages.py +0 -68
  351. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/common/app_interface_dms_settings.py +0 -86
  352. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/common/app_interface_repo_settings.py +0 -60
  353. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/common/app_interface_roles.py +0 -120
  354. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/common/app_interface_state_settings.py +0 -88
  355. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/common/app_interface_vault_settings.py +0 -60
  356. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/common/app_quay_repos_escalation_policies.py +0 -120
  357. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/common/apps.py +0 -72
  358. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/common/aws_vpc_requests.py +0 -122
  359. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/common/aws_vpcs.py +0 -84
  360. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/common/clusters.py +0 -677
  361. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/common/clusters_minimal.py +0 -169
  362. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/common/clusters_with_dms.py +0 -72
  363. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/common/clusters_with_peering.py +0 -364
  364. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/common/github_orgs.py +0 -77
  365. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/common/jira_settings.py +0 -68
  366. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/common/jiralert_settings.py +0 -68
  367. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/common/ldap_settings.py +0 -68
  368. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/common/namespaces.py +0 -360
  369. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/common/namespaces_minimal.py +0 -123
  370. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/common/ocm_env_telemeter.py +0 -95
  371. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/common/ocm_environments.py +0 -77
  372. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/common/pagerduty_instances.py +0 -75
  373. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/common/pgp_reencryption_settings.py +0 -72
  374. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/common/pipeline_providers.py +0 -285
  375. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/common/quay_instances.py +0 -64
  376. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/common/quay_orgs.py +0 -68
  377. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/common/reserved_networks.py +0 -94
  378. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/common/rhcs_provider_settings.py +0 -70
  379. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/common/saas_files.py +0 -640
  380. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/common/saas_target_namespaces.py +0 -141
  381. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/common/saasherder_settings.py +0 -62
  382. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/common/slack_workspaces.py +0 -62
  383. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/common/smtp_client_settings.py +0 -81
  384. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/common/state_aws_account.py +0 -76
  385. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/common/users.py +0 -66
  386. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/common/users_with_paths.py +0 -102
  387. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/cost_report/app_names.py +0 -68
  388. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/cost_report/cost_namespaces.py +0 -86
  389. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/cost_report/settings.py +0 -77
  390. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/dashdotdb_slo/slo_documents_query.py +0 -109
  391. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/dynatrace_token_provider/dynatrace_bootstrap_tokens.py +0 -79
  392. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/dynatrace_token_provider/token_specs.py +0 -84
  393. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/email_sender/apps.py +0 -64
  394. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/email_sender/emails.py +0 -133
  395. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/email_sender/users.py +0 -62
  396. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/endpoints_discovery/apps.py +0 -131
  397. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/external_resources/aws_accounts.py +0 -73
  398. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/external_resources/external_resources_modules.py +0 -105
  399. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/external_resources/external_resources_namespaces.py +0 -1238
  400. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/external_resources/external_resources_settings.py +0 -117
  401. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/external_resources/fragments/external_resources_module_overrides.py +0 -37
  402. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/fleet_labeler/fleet_labels.py +0 -137
  403. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/fragments/aus_organization.py +0 -107
  404. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/fragments/aws_account_common.py +0 -63
  405. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/fragments/aws_account_managed.py +0 -58
  406. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/fragments/aws_account_sso.py +0 -35
  407. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/fragments/aws_infra_management_account.py +0 -40
  408. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/fragments/aws_organization.py +0 -33
  409. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/fragments/aws_vpc.py +0 -47
  410. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/fragments/aws_vpc_request.py +0 -70
  411. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/fragments/container_image_mirror.py +0 -33
  412. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/fragments/deploy_resources.py +0 -39
  413. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/fragments/disable.py +0 -28
  414. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/fragments/email_service.py +0 -32
  415. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/fragments/email_user.py +0 -28
  416. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/fragments/jumphost_common_fields.py +0 -35
  417. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/fragments/membership_source.py +0 -47
  418. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/fragments/minimal_ocm_organization.py +0 -29
  419. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/fragments/oc_connection_cluster.py +0 -42
  420. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/fragments/ocm_environment.py +0 -36
  421. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/fragments/pipeline_provider_retention.py +0 -30
  422. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/fragments/prometheus_instance.py +0 -48
  423. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/fragments/resource_limits_requirements.py +0 -29
  424. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/fragments/resource_requests_requirements.py +0 -29
  425. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/fragments/resource_values.py +0 -29
  426. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/fragments/saas_slo_document.py +0 -82
  427. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/fragments/saas_target_namespace.py +0 -108
  428. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/fragments/serviceaccount_token.py +0 -38
  429. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/fragments/terraform_state.py +0 -36
  430. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/fragments/upgrade_policy.py +0 -38
  431. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/fragments/user.py +0 -32
  432. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/fragments/vault_secret.py +0 -31
  433. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/gcp/gcp_docker_repos.py +0 -128
  434. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/gcp/gcp_projects.py +0 -77
  435. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/gitlab_members/gitlab_instances.py +0 -81
  436. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/gitlab_members/permissions.py +0 -125
  437. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/glitchtip/glitchtip_instance.py +0 -93
  438. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/glitchtip/glitchtip_project.py +0 -235
  439. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/glitchtip_project_alerts/glitchtip_project.py +0 -173
  440. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/integrations/integrations.py +0 -374
  441. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/jenkins_configs/jenkins_configs.py +0 -112
  442. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/jenkins_configs/jenkins_instances.py +0 -79
  443. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/jira/jira_servers.py +0 -80
  444. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/jira_permissions_validator/jira_boards_for_permissions_validator.py +0 -143
  445. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/jumphosts/jumphosts.py +0 -95
  446. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/ldap_groups/roles.py +0 -111
  447. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/ldap_groups/settings.py +0 -79
  448. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/maintenance/maintenances.py +0 -101
  449. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/membershipsources/roles.py +0 -110
  450. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/ocm_labels/clusters.py +0 -111
  451. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/ocm_labels/organizations.py +0 -78
  452. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/openshift_cluster_bots/clusters.py +0 -126
  453. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/openshift_groups/managed_groups.py +0 -70
  454. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/openshift_groups/managed_roles.py +0 -100
  455. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/openshift_serviceaccount_tokens/tokens.py +0 -132
  456. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/quay_membership/quay_membership.py +0 -115
  457. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/rhcs/certs.py +0 -203
  458. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/rhidp/organizations.py +0 -96
  459. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/service_dependencies/jenkins_instance_fragment.py +0 -28
  460. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/service_dependencies/service_dependencies.py +0 -166
  461. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/sharding/aws_accounts.py +0 -68
  462. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/sharding/ocm_organization.py +0 -63
  463. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/skupper_network/site_controller_template.py +0 -29
  464. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/skupper_network/skupper_networks.py +0 -197
  465. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/slack_usergroups/clusters.py +0 -76
  466. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/slack_usergroups/permissions.py +0 -195
  467. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/slack_usergroups/users.py +0 -109
  468. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/slo_documents/slo_documents.py +0 -142
  469. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/status_board/status_board.py +0 -162
  470. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/statuspage/statuspages.py +0 -179
  471. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/templating/template_collection.py +0 -132
  472. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/templating/templates.py +0 -110
  473. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/terraform_cloudflare_dns/app_interface_cloudflare_dns_settings.py +0 -62
  474. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/terraform_cloudflare_dns/terraform_cloudflare_zones.py +0 -193
  475. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/terraform_cloudflare_resources/terraform_cloudflare_accounts.py +0 -127
  476. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/terraform_cloudflare_resources/terraform_cloudflare_resources.py +0 -359
  477. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/terraform_cloudflare_users/app_interface_setting_cloudflare_and_vault.py +0 -62
  478. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/terraform_cloudflare_users/terraform_cloudflare_roles.py +0 -139
  479. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/terraform_init/aws_accounts.py +0 -107
  480. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/terraform_repo/terraform_repo.py +0 -141
  481. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/terraform_resources/database_access_manager.py +0 -158
  482. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/terraform_resources/terraform_resources_namespaces.py +0 -1168
  483. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/terraform_tgw_attachments/aws_accounts.py +0 -124
  484. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/unleash_feature_toggles/feature_toggles.py +0 -113
  485. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/vault_instances/vault_instances.py +0 -245
  486. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/vault_policies/vault_policies.py +0 -70
  487. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/vpc_peerings_validator/vpc_peerings_validator.py +0 -157
  488. qontract_reconcile-0.10.2.dev414/reconcile/gql_definitions/vpc_peerings_validator/vpc_peerings_validator_peered_cluster_fragment.py +0 -39
  489. qontract_reconcile-0.10.2.dev414/reconcile/integrations_manager.py +0 -301
  490. qontract_reconcile-0.10.2.dev414/reconcile/jenkins_worker_fleets.py +0 -219
  491. qontract_reconcile-0.10.2.dev414/reconcile/jira_permissions_validator.py +0 -492
  492. qontract_reconcile-0.10.2.dev414/reconcile/ldap_groups/integration.py +0 -280
  493. qontract_reconcile-0.10.2.dev414/reconcile/ocm/types.py +0 -90
  494. qontract_reconcile-0.10.2.dev414/reconcile/ocm_aws_infrastructure_access.py +0 -209
  495. qontract_reconcile-0.10.2.dev414/reconcile/ocm_clusters.py +0 -458
  496. qontract_reconcile-0.10.2.dev414/reconcile/ocm_labels/integration.py +0 -408
  497. qontract_reconcile-0.10.2.dev414/reconcile/ocm_machine_pools.py +0 -551
  498. qontract_reconcile-0.10.2.dev414/reconcile/openshift_base.py +0 -1614
  499. qontract_reconcile-0.10.2.dev414/reconcile/openshift_cluster_bots.py +0 -344
  500. qontract_reconcile-0.10.2.dev414/reconcile/openshift_namespace_labels.py +0 -473
  501. qontract_reconcile-0.10.2.dev414/reconcile/openshift_rhcs_certs.py +0 -297
  502. qontract_reconcile-0.10.2.dev414/reconcile/openshift_rolebindings.py +0 -323
  503. qontract_reconcile-0.10.2.dev414/reconcile/openshift_saas_deploy.py +0 -348
  504. qontract_reconcile-0.10.2.dev414/reconcile/openshift_saas_deploy_change_tester.py +0 -252
  505. qontract_reconcile-0.10.2.dev414/reconcile/openshift_serviceaccount_tokens.py +0 -237
  506. qontract_reconcile-0.10.2.dev414/reconcile/openshift_upgrade_watcher.py +0 -199
  507. qontract_reconcile-0.10.2.dev414/reconcile/oum/labelset.py +0 -57
  508. qontract_reconcile-0.10.2.dev414/reconcile/oum/models.py +0 -66
  509. qontract_reconcile-0.10.2.dev414/reconcile/prometheus_rules_tester/integration.py +0 -304
  510. qontract_reconcile-0.10.2.dev414/reconcile/quay_mirror.py +0 -409
  511. qontract_reconcile-0.10.2.dev414/reconcile/rhidp/common.py +0 -218
  512. qontract_reconcile-0.10.2.dev414/reconcile/rhidp/sso_client/base.py +0 -264
  513. qontract_reconcile-0.10.2.dev414/reconcile/saas_auto_promotions_manager/merge_request_manager/renderer.py +0 -193
  514. qontract_reconcile-0.10.2.dev414/reconcile/skupper_network/integration.py +0 -309
  515. qontract_reconcile-0.10.2.dev414/reconcile/slack_usergroups.py +0 -921
  516. qontract_reconcile-0.10.2.dev414/reconcile/status_board.py +0 -465
  517. qontract_reconcile-0.10.2.dev414/reconcile/statuspage/atlassian.py +0 -492
  518. qontract_reconcile-0.10.2.dev414/reconcile/statuspage/page.py +0 -193
  519. qontract_reconcile-0.10.2.dev414/reconcile/templating/lib/rendering.py +0 -212
  520. qontract_reconcile-0.10.2.dev414/reconcile/templating/renderer.py +0 -413
  521. qontract_reconcile-0.10.2.dev414/reconcile/terraform_cloudflare_dns.py +0 -379
  522. qontract_reconcile-0.10.2.dev414/reconcile/terraform_cloudflare_resources.py +0 -445
  523. qontract_reconcile-0.10.2.dev414/reconcile/terraform_cloudflare_users.py +0 -374
  524. qontract_reconcile-0.10.2.dev414/reconcile/terraform_init/integration.py +0 -331
  525. qontract_reconcile-0.10.2.dev414/reconcile/terraform_repo.py +0 -402
  526. qontract_reconcile-0.10.2.dev414/reconcile/terraform_resources.py +0 -605
  527. qontract_reconcile-0.10.2.dev414/reconcile/terraform_tgw_attachments.py +0 -589
  528. qontract_reconcile-0.10.2.dev414/reconcile/terraform_vpc_resources/integration.py +0 -250
  529. qontract_reconcile-0.10.2.dev414/reconcile/typed_queries/cost_report/app_names.py +0 -22
  530. qontract_reconcile-0.10.2.dev414/reconcile/typed_queries/cost_report/cost_namespaces.py +0 -43
  531. qontract_reconcile-0.10.2.dev414/reconcile/typed_queries/saas_files.py +0 -342
  532. qontract_reconcile-0.10.2.dev414/reconcile/typed_queries/status_board.py +0 -57
  533. qontract_reconcile-0.10.2.dev414/reconcile/unleash_feature_toggles/integration.py +0 -289
  534. qontract_reconcile-0.10.2.dev414/reconcile/utils/acs/base.py +0 -84
  535. qontract_reconcile-0.10.2.dev414/reconcile/utils/acs/policies.py +0 -163
  536. qontract_reconcile-0.10.2.dev414/reconcile/utils/aws_api_typed/organization.py +0 -157
  537. qontract_reconcile-0.10.2.dev414/reconcile/utils/deadmanssnitch_api.py +0 -84
  538. qontract_reconcile-0.10.2.dev414/reconcile/utils/early_exit_cache.py +0 -288
  539. qontract_reconcile-0.10.2.dev414/reconcile/utils/gitlab_api.py +0 -869
  540. qontract_reconcile-0.10.2.dev414/reconcile/utils/glitchtip/client.py +0 -275
  541. qontract_reconcile-0.10.2.dev414/reconcile/utils/glitchtip/models.py +0 -212
  542. qontract_reconcile-0.10.2.dev414/reconcile/utils/gql.py +0 -479
  543. qontract_reconcile-0.10.2.dev414/reconcile/utils/instrumented_wrappers.py +0 -70
  544. qontract_reconcile-0.10.2.dev414/reconcile/utils/internal_groups/client.py +0 -160
  545. qontract_reconcile-0.10.2.dev414/reconcile/utils/internal_groups/models.py +0 -62
  546. qontract_reconcile-0.10.2.dev414/reconcile/utils/jinja2/utils.py +0 -296
  547. qontract_reconcile-0.10.2.dev414/reconcile/utils/json.py +0 -70
  548. qontract_reconcile-0.10.2.dev414/reconcile/utils/membershipsources/app_interface_resolver.py +0 -62
  549. qontract_reconcile-0.10.2.dev414/reconcile/utils/membershipsources/models.py +0 -83
  550. qontract_reconcile-0.10.2.dev414/reconcile/utils/membershipsources/resolver.py +0 -112
  551. qontract_reconcile-0.10.2.dev414/reconcile/utils/merge_request_manager/merge_request_manager.py +0 -99
  552. qontract_reconcile-0.10.2.dev414/reconcile/utils/merge_request_manager/parser.py +0 -67
  553. qontract_reconcile-0.10.2.dev414/reconcile/utils/metrics.py +0 -571
  554. qontract_reconcile-0.10.2.dev414/reconcile/utils/models.py +0 -346
  555. qontract_reconcile-0.10.2.dev414/reconcile/utils/mr/notificator.py +0 -91
  556. qontract_reconcile-0.10.2.dev414/reconcile/utils/mr/user_maintenance.py +0 -164
  557. qontract_reconcile-0.10.2.dev414/reconcile/utils/oc.py +0 -1935
  558. qontract_reconcile-0.10.2.dev414/reconcile/utils/ocm/addons.py +0 -227
  559. qontract_reconcile-0.10.2.dev414/reconcile/utils/ocm/base.py +0 -635
  560. qontract_reconcile-0.10.2.dev414/reconcile/utils/ocm/cluster_groups.py +0 -62
  561. qontract_reconcile-0.10.2.dev414/reconcile/utils/ocm/identity_providers.py +0 -66
  562. qontract_reconcile-0.10.2.dev414/reconcile/utils/ocm/labels.py +0 -216
  563. qontract_reconcile-0.10.2.dev414/reconcile/utils/ocm/products.py +0 -767
  564. qontract_reconcile-0.10.2.dev414/reconcile/utils/ocm/service_log.py +0 -60
  565. qontract_reconcile-0.10.2.dev414/reconcile/utils/ocm/sre_capability_labels.py +0 -58
  566. qontract_reconcile-0.10.2.dev414/reconcile/utils/pagerduty_api.py +0 -244
  567. qontract_reconcile-0.10.2.dev414/reconcile/utils/promotion_state.py +0 -106
  568. qontract_reconcile-0.10.2.dev414/reconcile/utils/raw_github_api.py +0 -94
  569. qontract_reconcile-0.10.2.dev414/reconcile/utils/rhcsv2_certs.py +0 -113
  570. qontract_reconcile-0.10.2.dev414/reconcile/utils/runtime/integration.py +0 -310
  571. qontract_reconcile-0.10.2.dev414/reconcile/utils/saasherder/interfaces.py +0 -418
  572. qontract_reconcile-0.10.2.dev414/reconcile/utils/saasherder/models.py +0 -438
  573. qontract_reconcile-0.10.2.dev414/reconcile/utils/saasherder/saasherder.py +0 -2268
  574. qontract_reconcile-0.10.2.dev414/reconcile/utils/slack_api.py +0 -554
  575. qontract_reconcile-0.10.2.dev414/reconcile/utils/structs.py +0 -16
  576. qontract_reconcile-0.10.2.dev414/reconcile/utils/terraform_client.py +0 -928
  577. qontract_reconcile-0.10.2.dev414/reconcile/utils/terrascript_aws_client.py +0 -7319
  578. qontract_reconcile-0.10.2.dev414/reconcile/utils/unleash/server.py +0 -139
  579. qontract_reconcile-0.10.2.dev414/reconcile/utils/vault.py +0 -449
  580. qontract_reconcile-0.10.2.dev414/reconcile/utils/vcs.py +0 -293
  581. qontract_reconcile-0.10.2.dev414/reconcile/vault_replication.py +0 -519
  582. qontract_reconcile-0.10.2.dev414/tools/cli_commands/cost_report/cost_management_api.py +0 -155
  583. qontract_reconcile-0.10.2.dev414/tools/cli_commands/cost_report/view.py +0 -535
  584. qontract_reconcile-0.10.2.dev414/tools/cli_commands/erv2.py +0 -734
  585. qontract_reconcile-0.10.2.dev414/tools/qontract_cli.py +0 -4888
  586. qontract_reconcile-0.10.2.dev414/tools/template_validation.py +0 -109
  587. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/README.md +0 -0
  588. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/__init__.py +0 -0
  589. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/acs_policies.py +0 -0
  590. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/aus/__init__.py +0 -0
  591. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/aus/aus_label_source.py +0 -0
  592. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/aus/healthchecks.py +0 -0
  593. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/aus/metrics.py +0 -0
  594. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/aus/node_pool_spec.py +0 -0
  595. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/aus/ocm_addons_upgrade_scheduler_org.py +0 -0
  596. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/aus/ocm_upgrade_scheduler.py +0 -0
  597. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/aus/ocm_upgrade_scheduler_org.py +0 -0
  598. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/aus/upgrades.py +0 -0
  599. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/aus/version_gate_approver.py +0 -0
  600. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/aus/version_gates/__init__.py +0 -0
  601. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/aus/version_gates/handler.py +0 -0
  602. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/aus/version_gates/ingress_gate_handler.py +0 -0
  603. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/aus/version_gates/ocp_gate_handler.py +0 -0
  604. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/aus/version_gates/sts_version_gate_handler.py +0 -0
  605. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/automated_actions/__init__.py +0 -0
  606. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/automated_actions/config/__init__.py +0 -0
  607. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/aws_account_manager/README.md +0 -0
  608. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/aws_account_manager/__init__.py +0 -0
  609. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/aws_account_manager/merge_request_manager.py +0 -0
  610. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/aws_account_manager/metrics.py +0 -0
  611. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/aws_account_manager/utils.py +0 -0
  612. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/aws_ami_cleanup/__init__.py +0 -0
  613. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/aws_ami_share.py +0 -0
  614. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/aws_cloudwatch_log_retention/__init__.py +0 -0
  615. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/aws_cloudwatch_log_retention/integration.py +0 -0
  616. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/aws_ecr_image_pull_secrets.py +0 -0
  617. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/aws_iam_keys.py +0 -0
  618. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/aws_iam_password_reset.py +0 -0
  619. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/aws_saml_idp/__init__.py +0 -0
  620. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/aws_saml_roles/__init__.py +0 -0
  621. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/aws_support_cases_sos.py +0 -0
  622. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/aws_version_sync/__init__.py +0 -0
  623. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/aws_version_sync/merge_request_manager/__init__.py +0 -0
  624. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/aws_version_sync/merge_request_manager/merge_request.py +0 -0
  625. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/aws_version_sync/merge_request_manager/merge_request_manager.py +0 -0
  626. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/aws_version_sync/utils.py +0 -0
  627. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/blackbox_exporter_endpoint_monitoring.py +0 -0
  628. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/change_owners/README.md +0 -0
  629. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/change_owners/__init__.py +0 -0
  630. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/change_owners/approver.py +0 -0
  631. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/change_owners/change_owners.py +0 -0
  632. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/change_owners/change_types.py +0 -0
  633. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/change_owners/changes.py +0 -0
  634. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/change_owners/decision.py +0 -0
  635. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/change_owners/diff.py +0 -0
  636. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/change_owners/implicit_ownership.py +0 -0
  637. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/change_owners/self_service_roles.py +0 -0
  638. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/change_owners/tester.py +0 -0
  639. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/checkpoint.py +0 -0
  640. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/cli.py +0 -0
  641. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/closedbox_endpoint_monitoring_base.py +0 -0
  642. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/cluster_auth_rhidp/__init__.py +0 -0
  643. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/cluster_auth_rhidp/integration.py +0 -0
  644. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/cluster_deployment_mapper.py +0 -0
  645. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/dashdotdb_base.py +0 -0
  646. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/dashdotdb_dvo.py +0 -0
  647. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/deadmanssnitch.py +0 -0
  648. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/dynatrace_token_provider/__init__.py +0 -0
  649. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/dynatrace_token_provider/dependencies.py +0 -0
  650. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/dynatrace_token_provider/metrics.py +0 -0
  651. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/dynatrace_token_provider/model.py +0 -0
  652. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/dynatrace_token_provider/ocm.py +0 -0
  653. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/dynatrace_token_provider/validate.py +0 -0
  654. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/email_sender.py +0 -0
  655. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/endpoints_discovery/__init__.py +0 -0
  656. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/endpoints_discovery/integration.py +0 -0
  657. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/external_resources/__init__.py +0 -0
  658. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/external_resources/aws.py +0 -0
  659. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/external_resources/factories.py +0 -0
  660. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/external_resources/integration.py +0 -0
  661. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/external_resources/integration_secrets_sync.py +0 -0
  662. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/external_resources/meta.py +0 -0
  663. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/external_resources/state.py +0 -0
  664. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/fleet_labeler/__init__.py +0 -0
  665. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/fleet_labeler/dependencies.py +0 -0
  666. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/fleet_labeler/merge_request.py +0 -0
  667. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/fleet_labeler/meta.py +0 -0
  668. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/fleet_labeler/metrics.py +0 -0
  669. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/fleet_labeler/ocm.py +0 -0
  670. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/fleet_labeler/validate.py +0 -0
  671. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/fleet_labeler/vcs.py +0 -0
  672. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gabi_authorized_users.py +0 -0
  673. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/github_repo_invites.py +0 -0
  674. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/github_repo_permissions_validator.py +0 -0
  675. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/github_validator.py +0 -0
  676. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gitlab_fork_compliance.py +0 -0
  677. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gitlab_housekeeping.py +0 -0
  678. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gitlab_labeler.py +0 -0
  679. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gitlab_mr_sqs_consumer.py +0 -0
  680. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gitlab_owners.py +0 -0
  681. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gitlab_projects.py +0 -0
  682. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/glitchtip/README.md +0 -0
  683. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/glitchtip/__init__.py +0 -0
  684. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/glitchtip/integration.py +0 -0
  685. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/glitchtip/reconciler.py +0 -0
  686. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/glitchtip_project_alerts/__init__.py +0 -0
  687. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/glitchtip_project_dsn/__init__.py +0 -0
  688. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/glitchtip_project_dsn/integration.py +0 -0
  689. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/__init__.py +0 -0
  690. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/acs/__init__.py +0 -0
  691. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/advanced_upgrade_service/__init__.py +0 -0
  692. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/app_interface_metrics_exporter/__init__.py +0 -0
  693. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/app_sre_tekton_access_revalidation/__init__.py +0 -0
  694. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/automated_actions/__init__.py +0 -0
  695. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/aws_account_manager/__init__.py +0 -0
  696. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/aws_ami_cleanup/__init__.py +0 -0
  697. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/aws_cloudwatch_log_retention/__init__.py +0 -0
  698. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/aws_saml_idp/__init__.py +0 -0
  699. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/aws_saml_roles/__init__.py +0 -0
  700. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/aws_version_sync/__init__.py +0 -0
  701. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/change_owners/__init__.py +0 -0
  702. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/change_owners/queries/__init__.py +0 -0
  703. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/cluster_auth_rhidp/__init__.py +0 -0
  704. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/common/__init__.py +0 -0
  705. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/cost_report/__init__.py +0 -0
  706. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/dashdotdb_slo/__init__.py +0 -0
  707. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/dynatrace_token_provider/__init__.py +0 -0
  708. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/email_sender/__init__.py +0 -0
  709. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/endpoints_discovery/__init__.py +0 -0
  710. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/external_resources/__init__.py +0 -0
  711. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/external_resources/fragments/__init__.py +0 -0
  712. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/fleet_labeler/__init__.py +0 -0
  713. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/fragments/__init__.py +0 -0
  714. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/gcp/__init__.py +0 -0
  715. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/gitlab_members/__init__.py +0 -0
  716. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/glitchtip/__init__.py +0 -0
  717. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/glitchtip_project_alerts/__init__.py +0 -0
  718. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/integrations/__init__.py +0 -0
  719. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/introspection.json +0 -0
  720. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/jenkins_configs/__init__.py +0 -0
  721. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/jira/__init__.py +0 -0
  722. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/jira_permissions_validator/__init__.py +0 -0
  723. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/jumphosts/__init__.py +0 -0
  724. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/ldap_groups/__init__.py +0 -0
  725. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/maintenance/__init__.py +0 -0
  726. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/membershipsources/__init__.py +0 -0
  727. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/ocm_labels/__init__.py +0 -0
  728. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/openshift_cluster_bots/__init__.py +0 -0
  729. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/openshift_groups/__init__.py +0 -0
  730. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/openshift_serviceaccount_tokens/__init__.py +0 -0
  731. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/quay_membership/__init__.py +0 -0
  732. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/rhcs/__init__.py +0 -0
  733. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/rhidp/__init__.py +0 -0
  734. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/service_dependencies/__init__.py +0 -0
  735. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/sharding/__init__.py +0 -0
  736. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/skupper_network/__init__.py +0 -0
  737. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/slack_usergroups/__init__.py +0 -0
  738. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/slo_documents/__init__.py +0 -0
  739. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/status_board/__init__.py +0 -0
  740. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/statuspage/__init__.py +0 -0
  741. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/templating/__init__.py +0 -0
  742. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/terraform_cloudflare_dns/__init__.py +0 -0
  743. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/terraform_cloudflare_resources/__init__.py +0 -0
  744. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/terraform_cloudflare_users/__init__.py +0 -0
  745. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/terraform_init/__init__.py +0 -0
  746. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/terraform_repo/__init__.py +0 -0
  747. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/terraform_resources/__init__.py +0 -0
  748. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/terraform_tgw_attachments/__init__.py +0 -0
  749. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/unleash_feature_toggles/__init__.py +0 -0
  750. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/vault_instances/__init__.py +0 -0
  751. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/vault_policies/__init__.py +0 -0
  752. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/gql_definitions/vpc_peerings_validator/__init__.py +0 -0
  753. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/jenkins_base.py +0 -0
  754. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/jenkins_job_builder.py +0 -0
  755. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/jenkins_job_builds_cleaner.py +0 -0
  756. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/jenkins_roles.py +0 -0
  757. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/jenkins_webhooks.py +0 -0
  758. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/jenkins_webhooks_cleaner.py +0 -0
  759. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/ldap_groups/__init__.py +0 -0
  760. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/ldap_users.py +0 -0
  761. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/mr_client_gateway.py +0 -0
  762. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/ocm/__init__.py +0 -0
  763. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/ocm_additional_routers.py +0 -0
  764. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/ocm_addons.py +0 -0
  765. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/ocm_addons_upgrade_tests_trigger.py +0 -0
  766. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/ocm_external_configuration_labels.py +0 -0
  767. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/ocm_groups.py +0 -0
  768. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/ocm_internal_notifications/__init__.py +0 -0
  769. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/ocm_internal_notifications/integration.py +0 -0
  770. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/ocm_labels/__init__.py +0 -0
  771. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/ocm_update_recommended_version.py +0 -0
  772. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/ocm_upgrade_scheduler_org_updater.py +0 -0
  773. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/openshift_clusterrolebindings.py +0 -0
  774. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/openshift_groups.py +0 -0
  775. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/openshift_limitranges.py +0 -0
  776. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/openshift_namespaces.py +0 -0
  777. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/openshift_network_policies.py +0 -0
  778. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/openshift_prometheus_rules.py +0 -0
  779. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/openshift_resourcequotas.py +0 -0
  780. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/openshift_resources.py +0 -0
  781. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/openshift_resources_base.py +0 -0
  782. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/openshift_routes.py +0 -0
  783. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/openshift_saas_deploy_trigger_base.py +0 -0
  784. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/openshift_saas_deploy_trigger_cleaner.py +0 -0
  785. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/openshift_saas_deploy_trigger_configs.py +0 -0
  786. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/openshift_saas_deploy_trigger_images.py +0 -0
  787. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/openshift_saas_deploy_trigger_moving_commits.py +0 -0
  788. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/openshift_saas_deploy_trigger_upstream_jobs.py +0 -0
  789. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/openshift_tekton_resources.py +0 -0
  790. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/openshift_users.py +0 -0
  791. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/openshift_vault_secrets.py +0 -0
  792. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/oum/__init__.py +0 -0
  793. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/oum/base.py +0 -0
  794. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/oum/metrics.py +0 -0
  795. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/oum/providers.py +0 -0
  796. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/oum/standalone.py +0 -0
  797. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/prometheus_rules_tester/__init__.py +0 -0
  798. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/quay_base.py +0 -0
  799. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/quay_membership.py +0 -0
  800. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/quay_mirror_org.py +0 -0
  801. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/quay_permissions.py +0 -0
  802. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/quay_repos.py +0 -0
  803. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/queries.py +0 -0
  804. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/query_validator.py +0 -0
  805. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/requests_sender.py +0 -0
  806. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/resource_scraper.py +0 -0
  807. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/resource_template_tester.py +0 -0
  808. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/rhidp/__init__.py +0 -0
  809. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/rhidp/metrics.py +0 -0
  810. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/rhidp/ocm_oidc_idp/__init__.py +0 -0
  811. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/rhidp/ocm_oidc_idp/base.py +0 -0
  812. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/rhidp/ocm_oidc_idp/integration.py +0 -0
  813. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/rhidp/ocm_oidc_idp/metrics.py +0 -0
  814. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/rhidp/sso_client/__init__.py +0 -0
  815. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/rhidp/sso_client/integration.py +0 -0
  816. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/rhidp/sso_client/metrics.py +0 -0
  817. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/run_integration.py +0 -0
  818. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/saas_auto_promotions_manager/__init__.py +0 -0
  819. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/saas_auto_promotions_manager/dependencies.py +0 -0
  820. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/saas_auto_promotions_manager/integration.py +0 -0
  821. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/saas_auto_promotions_manager/merge_request_manager/__init__.py +0 -0
  822. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/saas_auto_promotions_manager/merge_request_manager/batcher.py +0 -0
  823. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/saas_auto_promotions_manager/merge_request_manager/desired_state.py +0 -0
  824. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/saas_auto_promotions_manager/merge_request_manager/merge_request.py +0 -0
  825. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/saas_auto_promotions_manager/merge_request_manager/merge_request_manager_v2.py +0 -0
  826. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/saas_auto_promotions_manager/merge_request_manager/metrics.py +0 -0
  827. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/saas_auto_promotions_manager/merge_request_manager/mr_parser.py +0 -0
  828. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/saas_auto_promotions_manager/merge_request_manager/open_merge_requests.py +0 -0
  829. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/saas_auto_promotions_manager/meta.py +0 -0
  830. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/saas_auto_promotions_manager/publisher.py +0 -0
  831. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/saas_auto_promotions_manager/s3_exporter.py +0 -0
  832. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/saas_auto_promotions_manager/subscriber.py +0 -0
  833. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/saas_auto_promotions_manager/utils/__init__.py +0 -0
  834. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/saas_auto_promotions_manager/utils/saas_files_inventory.py +0 -0
  835. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/saas_file_validator.py +0 -0
  836. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/sendgrid_teammates.py +0 -0
  837. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/service_dependencies.py +0 -0
  838. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/signalfx_endpoint_monitoring.py +0 -0
  839. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/skupper_network/__init__.py +0 -0
  840. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/skupper_network/models.py +0 -0
  841. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/skupper_network/reconciler.py +0 -0
  842. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/skupper_network/site_controller.py +0 -0
  843. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/slack_base.py +0 -0
  844. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/sql_query.py +0 -0
  845. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/status.py +0 -0
  846. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/statuspage/__init__.py +0 -0
  847. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/statuspage/integration.py +0 -0
  848. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/statuspage/integrations/__init__.py +0 -0
  849. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/statuspage/integrations/components.py +0 -0
  850. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/statuspage/integrations/maintenances.py +0 -0
  851. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/statuspage/state.py +0 -0
  852. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/statuspage/status.py +0 -0
  853. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/templates/__init__.py +0 -0
  854. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/templates/aws_access_key_email.j2 +0 -0
  855. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/templates/email.yml.j2 +0 -0
  856. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/templates/jira-checkpoint-missinginfo.j2 +0 -0
  857. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/templates/rosa-classic-cluster-creation.sh.j2 +0 -0
  858. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/templates/rosa-hcp-cluster-creation.sh.j2 +0 -0
  859. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/templating/__init__.py +0 -0
  860. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/templating/lib/__init__.py +0 -0
  861. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/templating/lib/merge_request_manager.py +0 -0
  862. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/templating/lib/model.py +0 -0
  863. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/templating/validator.py +0 -0
  864. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/terraform_aws_route53.py +0 -0
  865. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/terraform_init/__init__.py +0 -0
  866. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/terraform_init/merge_request.py +0 -0
  867. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/terraform_init/merge_request_manager.py +0 -0
  868. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/terraform_users.py +0 -0
  869. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/terraform_vpc_peerings.py +0 -0
  870. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/terraform_vpc_resources/__init__.py +0 -0
  871. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/terraform_vpc_resources/merge_request.py +0 -0
  872. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/terraform_vpc_resources/merge_request_manager.py +0 -0
  873. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/__init__.py +0 -0
  874. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/alerting_services_settings.py +0 -0
  875. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/app_interface_custom_messages.py +0 -0
  876. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/app_interface_deadmanssnitch_settings.py +0 -0
  877. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/app_interface_metrics_exporter/__init__.py +0 -0
  878. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/app_interface_metrics_exporter/onboarding_status.py +0 -0
  879. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/app_interface_metrics_exporter/terraform_repo.py +0 -0
  880. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/app_interface_repo_url.py +0 -0
  881. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/app_interface_roles.py +0 -0
  882. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/app_interface_state_settings.py +0 -0
  883. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/app_interface_vault_settings.py +0 -0
  884. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/app_quay_repos_escalation_policies.py +0 -0
  885. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/apps.py +0 -0
  886. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/aws_account_tags.py +0 -0
  887. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/aws_cloudwatch_log_retention/aws_accounts.py +0 -0
  888. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/aws_vpc_requests.py +0 -0
  889. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/aws_vpcs.py +0 -0
  890. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/cloudflare.py +0 -0
  891. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/clusters.py +0 -0
  892. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/clusters_minimal.py +0 -0
  893. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/clusters_with_dms.py +0 -0
  894. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/clusters_with_peering.py +0 -0
  895. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/cost_report/__init__.py +0 -0
  896. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/cost_report/settings.py +0 -0
  897. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/dynatrace.py +0 -0
  898. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/dynatrace_environments.py +0 -0
  899. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/dynatrace_token_provider_token_specs.py +0 -0
  900. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/external_resources.py +0 -0
  901. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/fleet_labels.py +0 -0
  902. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/get_state_aws_account.py +0 -0
  903. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/github_orgs.py +0 -0
  904. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/gitlab_instances.py +0 -0
  905. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/glitchtip.py +0 -0
  906. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/jenkins.py +0 -0
  907. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/jira.py +0 -0
  908. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/jira_settings.py +0 -0
  909. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/jiralert_settings.py +0 -0
  910. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/ldap_settings.py +0 -0
  911. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/namespaces.py +0 -0
  912. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/namespaces_minimal.py +0 -0
  913. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/ocm.py +0 -0
  914. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/pagerduty_instances.py +0 -0
  915. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/quay.py +0 -0
  916. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/repos.py +0 -0
  917. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/reserved_networks.py +0 -0
  918. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/rhcs_provider_settings.py +0 -0
  919. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/slack.py +0 -0
  920. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/slo_documents.py +0 -0
  921. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/smtp.py +0 -0
  922. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/tekton_pipeline_providers.py +0 -0
  923. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/terraform_namespaces.py +0 -0
  924. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/terraform_tgw_attachments/__init__.py +0 -0
  925. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/terraform_tgw_attachments/aws_accounts.py +0 -0
  926. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/unleash.py +0 -0
  927. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/users.py +0 -0
  928. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/users_with_paths.py +0 -0
  929. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/typed_queries/vault.py +0 -0
  930. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/unleash_feature_toggles/__init__.py +0 -0
  931. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/__init__.py +0 -0
  932. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/acs/__init__.py +0 -0
  933. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/acs/rbac.py +0 -0
  934. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/aggregated_list.py +0 -0
  935. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/amtool.py +0 -0
  936. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/aws_api.py +0 -0
  937. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/aws_api_typed/__init__.py +0 -0
  938. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/aws_api_typed/account.py +0 -0
  939. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/aws_api_typed/api.py +0 -0
  940. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/aws_api_typed/cloudformation.py +0 -0
  941. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/aws_api_typed/dynamodb.py +0 -0
  942. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/aws_api_typed/iam.py +0 -0
  943. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/aws_api_typed/logs.py +0 -0
  944. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/aws_api_typed/s3.py +0 -0
  945. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/aws_api_typed/service_quotas.py +0 -0
  946. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/aws_api_typed/sts.py +0 -0
  947. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/aws_api_typed/support.py +0 -0
  948. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/aws_helper.py +0 -0
  949. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/batches.py +0 -0
  950. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/binary.py +0 -0
  951. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/cloud_resource_best_practice/__init__.py +0 -0
  952. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/cloud_resource_best_practice/aws_rds.py +0 -0
  953. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/clusterhealth/__init__.py +0 -0
  954. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/clusterhealth/providerbase.py +0 -0
  955. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/clusterhealth/telemeter.py +0 -0
  956. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/config.py +0 -0
  957. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/constants.py +0 -0
  958. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/datetime_util.py +0 -0
  959. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/defer.py +0 -0
  960. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/differ.py +0 -0
  961. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/disabled_integrations.py +0 -0
  962. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/dnsutils.py +0 -0
  963. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/dynatrace/__init__.py +0 -0
  964. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/dynatrace/client.py +0 -0
  965. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/elasticsearch_exceptions.py +0 -0
  966. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/environ.py +0 -0
  967. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/exceptions.py +0 -0
  968. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/expiration.py +0 -0
  969. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/extended_early_exit.py +0 -0
  970. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/external_resource_spec.py +0 -0
  971. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/external_resources.py +0 -0
  972. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/filtering.py +0 -0
  973. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/git.py +0 -0
  974. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/github_api.py +0 -0
  975. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/glitchtip/__init__.py +0 -0
  976. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/gpg.py +0 -0
  977. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/grouping.py +0 -0
  978. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/helm.py +0 -0
  979. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/helpers.py +0 -0
  980. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/imap_client.py +0 -0
  981. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/internal_groups/__init__.py +0 -0
  982. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/jenkins_api.py +0 -0
  983. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/jinja2/__init__.py +0 -0
  984. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/jinja2/extensions.py +0 -0
  985. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/jinja2/filters.py +0 -0
  986. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/jira_client.py +0 -0
  987. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/jjb_client.py +0 -0
  988. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/jobcontroller/__init__.py +0 -0
  989. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/jobcontroller/controller.py +0 -0
  990. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/jobcontroller/models.py +0 -0
  991. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/jsonpath.py +0 -0
  992. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/jump_host.py +0 -0
  993. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/keycloak.py +0 -0
  994. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/ldap_client.py +0 -0
  995. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/lean_terraform_client.py +0 -0
  996. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/make.py +0 -0
  997. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/membershipsources/__init__.py +0 -0
  998. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/merge_request_manager/__init__.py +0 -0
  999. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/mr/README.md +0 -0
  1000. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/mr/__init__.py +0 -0
  1001. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/mr/app_interface_reporter.py +0 -0
  1002. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/mr/app_sre_tekton_access_report.py +0 -0
  1003. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/mr/aws_access.py +0 -0
  1004. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/mr/base.py +0 -0
  1005. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/mr/clusters_updates.py +0 -0
  1006. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/mr/glitchtip_access_reporter.py +0 -0
  1007. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/mr/labels.py +0 -0
  1008. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/mr/ocm_update_recommended_version.py +0 -0
  1009. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/mr/ocm_upgrade_scheduler_org_updates.py +0 -0
  1010. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/mr/promote_qontract.py +0 -0
  1011. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/mr/update_access_report_base.py +0 -0
  1012. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/oauth2_backend_application_session.py +0 -0
  1013. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/oc_connection_parameters.py +0 -0
  1014. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/oc_filters.py +0 -0
  1015. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/oc_map.py +0 -0
  1016. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/ocm/__init__.py +0 -0
  1017. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/ocm/clusters.py +0 -0
  1018. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/ocm/label_sources.py +0 -0
  1019. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/ocm/manifests.py +0 -0
  1020. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/ocm/ocm.py +0 -0
  1021. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/ocm/search_filters.py +0 -0
  1022. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/ocm/status_board.py +0 -0
  1023. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/ocm/subscriptions.py +0 -0
  1024. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/ocm/syncsets.py +0 -0
  1025. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/ocm/upgrades.py +0 -0
  1026. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/ocm_base_client.py +0 -0
  1027. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/openshift_resource.py +0 -0
  1028. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/openssl.py +0 -0
  1029. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/output.py +0 -0
  1030. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/parse_dhms_duration.py +0 -0
  1031. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/password_validator.py +0 -0
  1032. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/prometheus.py +0 -0
  1033. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/promtool.py +0 -0
  1034. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/quay_api.py +0 -0
  1035. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/quay_mirror.py +0 -0
  1036. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/repo_owners.py +0 -0
  1037. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/rest_api_base.py +0 -0
  1038. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/rosa/__init__.py +0 -0
  1039. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/rosa/rosa_cli.py +0 -0
  1040. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/rosa/session.py +0 -0
  1041. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/ruamel.py +0 -0
  1042. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/runtime/__init__.py +0 -0
  1043. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/runtime/desired_state_diff.py +0 -0
  1044. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/runtime/environment.py +0 -0
  1045. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/runtime/meta.py +0 -0
  1046. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/runtime/runner.py +0 -0
  1047. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/runtime/sharding.py +0 -0
  1048. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/saasherder/__init__.py +0 -0
  1049. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/secret_reader.py +0 -0
  1050. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/semver_helper.py +0 -0
  1051. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/sharding.py +0 -0
  1052. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/slo_document_manager.py +0 -0
  1053. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/sloth.py +0 -0
  1054. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/smtp_client.py +0 -0
  1055. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/sqs_gateway.py +0 -0
  1056. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/state.py +0 -0
  1057. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/terraform/__init__.py +0 -0
  1058. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/terraform/config.py +0 -0
  1059. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/terraform/config_client.py +0 -0
  1060. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/terrascript/__init__.py +0 -0
  1061. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/terrascript/cloudflare_client.py +0 -0
  1062. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/terrascript/cloudflare_resources.py +0 -0
  1063. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/terrascript/models.py +0 -0
  1064. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/terrascript/resources.py +0 -0
  1065. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/three_way_diff_strategy.py +0 -0
  1066. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/throughput.py +0 -0
  1067. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/unleash/__init__.py +0 -0
  1068. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/utils/unleash/client.py +0 -0
  1069. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/reconcile/vpc_peerings_validator.py +0 -0
  1070. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/tools/__init__.py +0 -0
  1071. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/tools/alert_report.py +0 -0
  1072. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/tools/app_interface_metrics_exporter.py +0 -0
  1073. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/tools/app_interface_reporter.py +0 -0
  1074. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/tools/app_sre_tekton_access_reporter.py +0 -0
  1075. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/tools/app_sre_tekton_access_revalidation.py +0 -0
  1076. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/tools/cli_commands/__init__.py +0 -0
  1077. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/tools/cli_commands/container_images_report.py +0 -0
  1078. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/tools/cli_commands/cost_report/__init__.py +0 -0
  1079. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/tools/cli_commands/cost_report/aws.py +0 -0
  1080. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/tools/cli_commands/cost_report/model.py +0 -0
  1081. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/tools/cli_commands/cost_report/openshift.py +0 -0
  1082. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/tools/cli_commands/cost_report/openshift_cost_optimization.py +0 -0
  1083. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/tools/cli_commands/cost_report/response.py +0 -0
  1084. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/tools/cli_commands/cost_report/util.py +0 -0
  1085. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/tools/cli_commands/gpg_encrypt.py +0 -0
  1086. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/tools/cli_commands/systems_and_tools.py +0 -0
  1087. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/tools/glitchtip_access_reporter.py +0 -0
  1088. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/tools/glitchtip_access_revalidation.py +0 -0
  1089. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/tools/saas_metrics_exporter/__init__.py +0 -0
  1090. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/tools/saas_metrics_exporter/commit_distance/__init__.py +0 -0
  1091. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/tools/saas_metrics_exporter/commit_distance/channel.py +0 -0
  1092. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/tools/saas_metrics_exporter/commit_distance/commit_distance.py +0 -0
  1093. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/tools/saas_metrics_exporter/commit_distance/metrics.py +0 -0
  1094. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/tools/saas_metrics_exporter/main.py +0 -0
  1095. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/tools/saas_promotion_state/__init__.py +0 -0
  1096. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/tools/saas_promotion_state/saas_promotion_state.py +0 -0
  1097. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/tools/sre_checkpoints/__init__.py +0 -0
  1098. {qontract_reconcile-0.10.2.dev414 → qontract_reconcile-0.10.2.dev415}/tools/sre_checkpoints/util.py +0 -0
@@ -0,0 +1,505 @@
1
+ Metadata-Version: 2.4
2
+ Name: qontract-reconcile
3
+ Version: 0.10.2.dev415
4
+ Summary: Collection of tools to reconcile services with their desired state as defined in the app-interface DB.
5
+ Project-URL: homepage, https://github.com/app-sre/qontract-reconcile
6
+ Project-URL: repository, https://github.com/app-sre/qontract-reconcile
7
+ Project-URL: documentation, https://github.com/app-sre/qontract-reconcile
8
+ Author-email: Red Hat App-SRE Team <sd-app-sre@redhat.com>
9
+ License: Apache 2.0
10
+ Classifier: Development Status :: 2 - Pre-Alpha
11
+ Classifier: Programming Language :: Python
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Programming Language :: Python :: 3.12
14
+ Requires-Python: ==3.12.*
15
+ Requires-Dist: anymarkup<0.9.0,>=0.7.0
16
+ Requires-Dist: boto3==1.34.94
17
+ Requires-Dist: botocore==1.34.94
18
+ Requires-Dist: click<9.0,>=7.0
19
+ Requires-Dist: croniter<1.1.0,>=1.0.15
20
+ Requires-Dist: dateparser~=1.1.7
21
+ Requires-Dist: deepdiff==6.7.1
22
+ Requires-Dist: dnspython~=2.1
23
+ Requires-Dist: dt==1.1.73
24
+ Requires-Dist: filetype~=1.2.0
25
+ Requires-Dist: gql==3.1.0
26
+ Requires-Dist: hvac<0.8.0,>=0.7.0
27
+ Requires-Dist: jenkins-job-builder==6.4.2
28
+ Requires-Dist: jinja2<3.2.0,>=2.10.1
29
+ Requires-Dist: jira==3.10.5
30
+ Requires-Dist: jsonpatch~=1.33
31
+ Requires-Dist: jsonpath-ng==1.7.0
32
+ Requires-Dist: jsonpath-rw<1.5.0,>=1.4.0
33
+ Requires-Dist: jsonpointer~=2.4
34
+ Requires-Dist: kubernetes~=24.0
35
+ Requires-Dist: ldap3<2.10.0,>=2.9.1
36
+ Requires-Dist: markupsafe==2.1.1
37
+ Requires-Dist: networkx~=2.8
38
+ Requires-Dist: parse==1.18.0
39
+ Requires-Dist: prometheus-client~=0.8
40
+ Requires-Dist: psycopg2-binary~=2.9
41
+ Requires-Dist: pydantic~=1.10.6
42
+ Requires-Dist: pygithub<1.59,>=1.58
43
+ Requires-Dist: pyjwt~=2.7
44
+ Requires-Dist: pyopenssl~=23.0
45
+ Requires-Dist: pypd<1.2.0,>=1.1.0
46
+ Requires-Dist: python-gitlab==6.0.0
47
+ Requires-Dist: requests-oauthlib~=1.3
48
+ Requires-Dist: requests~=2.32
49
+ Requires-Dist: rich<14.0.0,>=13.3.0
50
+ Requires-Dist: ruamel-yaml<0.18.0,>=0.17.22
51
+ Requires-Dist: semver~=3.0
52
+ Requires-Dist: sendgrid<6.5.0,>=6.4.8
53
+ Requires-Dist: sentry-sdk~=2.0
54
+ Requires-Dist: setuptools==80.8.0
55
+ Requires-Dist: slack-sdk<4.0,>=3.10
56
+ Requires-Dist: sretoolbox==3.0.0
57
+ Requires-Dist: sshtunnel>=0.4.0
58
+ Requires-Dist: tabulate<0.9.0,>=0.8.6
59
+ Requires-Dist: terrascript==0.9.0
60
+ Requires-Dist: toml<0.11.0,>=0.10.0
61
+ Requires-Dist: unleashclient~=5.11
62
+ Requires-Dist: urllib3~=2.2
63
+ Requires-Dist: websocket-client<0.55.0,>=0.35
64
+ Requires-Dist: yamllint==1.34.0
65
+ Description-Content-Type: text/markdown
66
+
67
+ # qontract-reconcile
68
+
69
+ [![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
70
+ [![uv](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/uv/main/assets/badge/v0.json)](https://github.com/astral-sh/uv)
71
+ [![PyPI](https://img.shields.io/pypi/v/qontract-reconcile)][pypi-link]
72
+ [![PyPI platforms][pypi-platforms]][pypi-link]
73
+ ![PyPI - License](https://img.shields.io/pypi/l/qontract-reconcile)
74
+ [![Checked with mypy](https://www.mypy-lang.org/static/mypy_badge.svg)](https://mypy-lang.org/)
75
+
76
+ A tool to reconcile services with their desired state as defined in app-interface.
77
+ Additional tools that use the libraries created by the reconciliations are also hosted here.
78
+
79
+ ## Usage
80
+
81
+ Use [config.toml.example](config.toml.example) as a template to create a `config.toml` file.
82
+
83
+ Run a reconcile integration like this:
84
+
85
+ ```sh
86
+ qontract-reconcile --config config.toml --dry-run <subcommand>
87
+
88
+ # review output and run without `--dry-run` to perform actual changes
89
+ qontract-reconcile --config config.toml <subcommand>
90
+ ```
91
+
92
+ > Note: you can use the `QONTRACT_CONFIG` environment variable instead of using `--config`.
93
+
94
+ ### OpenShift usage
95
+
96
+ OpenShift templates can be found [here](/openshift/qontract-reconcile.yaml). In order to add integrations there please use the [helm](/helm/README.md) chart provided.
97
+
98
+ ## Available Integrations
99
+
100
+ `qontract-reconcile` includes the following integrations:
101
+
102
+ ```text
103
+ acs-policies Manages RHACS security policy configurations
104
+ acs-rbac Manages RHACS rbac configuration
105
+ advanced-upgrade-scheduler Manage Cluster Upgrade Policy schedules in
106
+ OCM organizations based on OCM labels.
107
+ aws-account-manager Create and manage AWS accounts.
108
+ aws-ami-cleanup Cleanup old and unused AMIs.
109
+ aws-ami-share Share AMI and AMI tags between accounts.
110
+ aws-cloudwatch-log-retention Set up retention period for Cloudwatch logs.
111
+ aws-ecr-image-pull-secrets Generate AWS ECR image pull secrets and
112
+ store them in Vault.
113
+ aws-iam-keys Delete IAM access keys by access key ID.
114
+ aws-iam-password-reset Reset IAM user password by user reference.
115
+ aws-saml-idp Manage the SAML IDP config for all AWS
116
+ accounts.
117
+ aws-saml-roles Manage the SAML IAM roles for all AWS
118
+ accounts with SSO enabled.
119
+ aws-support-cases-sos Scan AWS support cases for reports of leaked
120
+ keys and remove them (only submits PR)
121
+ aws-version-sync Sync AWS asset version numbers to App-
122
+ Interface
123
+ blackbox-exporter-endpoint-monitoring
124
+ Manages Prometheus Probe resources for
125
+ blackbox-exporter
126
+ change-log-tracking Analyze bundle diffs by change types.
127
+ change-owners Detects owners for changes in app-interface
128
+ PRs and allows them to self-service merge.
129
+ cluster-auth-rhidp Manages the OCM subscription labels for
130
+ clusters with RHIDP authentication. Part of
131
+ RHIDP.
132
+ cluster-deployment-mapper Maps ClusterDeployment resources to Cluster
133
+ IDs.
134
+ dashdotdb-dora Collects dora metrics.
135
+ dashdotdb-dvo Collects the DeploymentValidations from all
136
+ the clusters and posts them to Dashdotdb.
137
+ dashdotdb-slo Collects the ServiceSloMetrics from all the
138
+ clusters and posts them to Dashdotdb.
139
+ database-access-manager Manage Databases and Database Users.
140
+ deadmanssnitch Automate Deadmanssnitch Creation/Deletion
141
+ dynatrace-token-provider Automatically provide dedicated Dynatrace
142
+ tokens to management clusters
143
+ email-sender Send email notifications to app-interface
144
+ audience.
145
+ endpoints-discovery Discover routes and update endpoints
146
+ external-resources Manages External Resources
147
+ external-resources-secrets-sync
148
+ Syncs External Resources Secrets from Vault
149
+ to Clusters
150
+ gabi-authorized-users Manages user access for GABI instances.
151
+ gcr-mirror Mirrors external images into Google
152
+ Container Registry.
153
+ github Configures the teams and members in a GitHub
154
+ org.
155
+ github-owners Configures owners in a GitHub org.
156
+ github-repo-invites Accept GitHub repository invitations for
157
+ known repositories.
158
+ github-repo-permissions-validator
159
+ Validates permissions in github
160
+ repositories.
161
+ github-validator Validates GitHub organization settings.
162
+ gitlab-fork-compliance Ensures that forks of App Interface are
163
+ compliant.
164
+ gitlab-housekeeping Manage issues and merge requests on GitLab
165
+ projects.
166
+ gitlab-labeler Guesses and adds labels to merge requests
167
+ according to changed paths.
168
+ gitlab-members Manage GitLab group members.
169
+ gitlab-mr-sqs-consumer Listen to SQS and creates MRs out of the
170
+ messages.
171
+ gitlab-owners Manages labels on gitlab merge requests
172
+ based on OWNERS files schema.
173
+ gitlab-permissions Manage permissions on GitLab projects.
174
+ gitlab-projects Create GitLab projects.
175
+ glitchtip Configure and enforce glitchtip instance
176
+ configuration.
177
+ glitchtip-project-alerts Configure Glitchtip project alerts.
178
+ glitchtip-project-dsn Glitchtip project dsn as openshift secret.
179
+ integrations-manager Manages Qontract Reconcile integrations.
180
+ jenkins-job-builder Manage Jenkins jobs configurations using
181
+ jenkins-jobs.
182
+ jenkins-job-builds-cleaner Clean up jenkins job history.
183
+ jenkins-roles Manage Jenkins roles association via REST
184
+ API.
185
+ jenkins-webhooks Manage web hooks to Jenkins jobs.
186
+ jenkins-webhooks-cleaner Remove webhooks to previous Jenkins
187
+ instances.
188
+ jenkins-worker-fleets Manage Jenkins worker fleets via JCasC.
189
+ jira-permissions-validator Validate permissions in Jira.
190
+ ldap-groups Manages LDAP groups based on App-Interface
191
+ roles.
192
+ ldap-users Removes users which are not found in LDAP
193
+ search.
194
+ ocm-additional-routers Manage additional routers in OCM.
195
+ ocm-addons Manages cluster Addons in OCM.
196
+ ocm-addons-upgrade-scheduler-org
197
+ Manage Addons Upgrade Policy schedules in
198
+ OCM organizations.
199
+ ocm-addons-upgrade-tests-trigger
200
+ Trigger jenkins jobs following Addon
201
+ upgrades.
202
+ ocm-aws-infrastructure-access Grants AWS infrastructure access to members
203
+ in AWS groups via OCM.
204
+ ocm-clusters Manages clusters via OCM.
205
+ ocm-external-configuration-labels
206
+ Manage External Configuration labels in OCM.
207
+ ocm-groups Manage membership in OpenShift groups via
208
+ OCM.
209
+ ocm-internal-notifications Notifications to internal Red Hat users
210
+ based on conditions in OCM.
211
+ ocm-labels Manage cluster OCM labels.
212
+ ocm-machine-pools Manage Machine Pools in OCM.
213
+ ocm-oidc-idp Manage OIDC cluster configuration in OCM
214
+ organizations based on OCM labels. Part of
215
+ RHIDP.
216
+ ocm-standalone-user-management Manages OCM cluster usergroups and
217
+ notifications via OCM labels.
218
+ ocm-update-recommended-version Update recommended version for OCM orgs
219
+ ocm-upgrade-scheduler-org Manage Upgrade Policy schedules in OCM
220
+ organizations.
221
+ ocm-upgrade-scheduler-org-updater
222
+ Update Upgrade Policy schedules in OCM
223
+ organizations.
224
+ openshift-cluster-bots Manages dedicated-admin and cluster-admin
225
+ creds.
226
+ openshift-clusterrolebindings Configures ClusterRolebindings in OpenShift
227
+ clusters.
228
+ openshift-groups Manages OpenShift Groups.
229
+ openshift-limitranges Manages OpenShift LimitRange objects.
230
+ openshift-namespace-labels Manages labels on OpenShift namespaces.
231
+ openshift-namespaces Manages OpenShift Namespaces.
232
+ openshift-network-policies Manages OpenShift NetworkPolicies.
233
+ openshift-prometheus-rules Manages OpenShift Prometheus Rules.
234
+ openshift-resourcequotas Manages OpenShift ResourceQuota objects.
235
+ openshift-resources Manages OpenShift Resources.
236
+ openshift-rolebindings Configures Rolebindings in OpenShift
237
+ clusters.
238
+ openshift-routes Manages OpenShift Routes.
239
+ openshift-saas-deploy Manage OpenShift resources defined in Saas
240
+ files.
241
+ openshift-saas-deploy-change-tester
242
+ Runs openshift-saas-deploy for each saas-
243
+ file that changed within a bundle.
244
+ openshift-saas-deploy-trigger-cleaner
245
+ Clean up deployment related resources.
246
+ openshift-saas-deploy-trigger-configs
247
+ Trigger deployments when configuration
248
+ changes.
249
+ openshift-saas-deploy-trigger-images
250
+ Trigger deployments when images are pushed.
251
+ openshift-saas-deploy-trigger-moving-commits
252
+ Trigger deployments when a commit changed
253
+ for a ref.
254
+ openshift-saas-deploy-trigger-upstream-jobs
255
+ Trigger deployments when upstream job runs.
256
+ openshift-serviceaccount-tokens
257
+ Use OpenShift ServiceAccount tokens across
258
+ namespaces/clusters.
259
+ openshift-tekton-resources Manages custom resources for Tekton based
260
+ deployments.
261
+ openshift-upgrade-watcher Watches for OpenShift upgrades and sends
262
+ notifications.
263
+ openshift-users Deletion of users from OpenShift clusters.
264
+ openshift-vault-secrets Manages OpenShift Secrets from Vault.
265
+ prometheus-rules-tester Tests prometheus rules using promtool.
266
+ quay-membership Configures the teams and members in Quay.
267
+ quay-mirror Mirrors external images into Quay.
268
+ quay-mirror-org Mirrors entire Quay orgs.
269
+ quay-permissions Manage permissions for Quay Repositories.
270
+ quay-repos Creates and Manages Quay Repos.
271
+ query-validator Validate queries to maintain consumer schema
272
+ compatibility.
273
+ requests-sender Send emails to users based on requests
274
+ submitted to app-interface.
275
+ resource-scraper Get resources from clusters and store in
276
+ Vault.
277
+ resource-template-tester Tests templating of resources.
278
+ rhidp-sso-client Manage Keycloak SSO clients for OCM
279
+ clusters. Part of RHIDP.
280
+ saas-auto-promotions-manager Manage auto-promotions defined in SaaS files
281
+ saas-file-validator Validates Saas files.
282
+ sendgrid-teammates Manages SendGrid teammates for a given
283
+ account.
284
+ service-dependencies Validate dependencies are defined for each
285
+ service.
286
+ signalfx-prometheus-endpoint-monitoring
287
+ Manages Prometheus Probe resources for
288
+ signalfx exporter
289
+ skupper-network Manages Skupper Networks.
290
+ slack-usergroups Manage Slack User Groups (channels and
291
+ users).
292
+ sql-query Runs SQL Queries against app-interface RDS
293
+ resources.
294
+ status-board-exporter Export Product and Application informnation
295
+ to Status Board.
296
+ status-page-components Manages components on statuspage.io hosted
297
+ status pages.
298
+ status-page-maintenances Manages maintenances on statuspage.io hosted
299
+ status pages.
300
+ template-renderer Render datafile templates in app-interface.
301
+ template-validator Test app-interface templates.
302
+ terraform-aws-route53 Manage AWS Route53 resources using
303
+ Terraform.
304
+ terraform-cloudflare-dns Manage Cloudflare DNS using Terraform.
305
+ terraform-cloudflare-resources Manage Cloudflare Resources using Terraform.
306
+ terraform-cloudflare-users Manage Cloudflare Users using Terraform.
307
+ terraform-init Initialize AWS accounts for Terraform usage.
308
+ terraform-repo Manages raw HCL Terraform from a separate
309
+ repository.
310
+ terraform-resources Manage AWS Resources using Terraform.
311
+ terraform-tgw-attachments Manages Transit Gateway attachments.
312
+ terraform-users Manage AWS users using Terraform.
313
+ terraform-vpc-peerings Manage VPC peerings between OSD clusters and
314
+ AWS accounts or other OSD clusters.
315
+ terraform-vpc-resources Manage VPC creation
316
+ unleash-feature-toggles Manage Unleash feature toggles.
317
+ vault-replication Allow vault to replicate secrets to other
318
+ instances.
319
+ version-gate-approver Approves OCM cluster upgrade version gates.
320
+ vpc-peerings-validator Validates that VPC peerings do not exist
321
+ between public and internal clusters.
322
+ ```
323
+
324
+ ## Tools
325
+
326
+ Additionally, the following tools are available:
327
+
328
+ - `app-interface-metrics-exporter`: Exports metrics from App-Interface.
329
+ - `app-interface-reporter`: Creates service reports and submits PR to App-Interface.
330
+ - `glitchtip-access-reporter`: Creates a report of users with access to Glitchtip.
331
+ - `glitchtip-access-revalidation`: Requests a revalidation of Glitchtip access.
332
+ - `qontract-cli`: A cli tool for qontract (currently very good at getting information).
333
+ - `run-integration`: A script to run qontract-reconcile in a container.
334
+ - `saas-metrics-exporter`: This tool is responsible for exposing/exporting SaaS metrics and data.
335
+ - `template-validation`: Run template validation.
336
+
337
+ ## Installation
338
+
339
+ Install the package from PyPI:
340
+
341
+ ```sh
342
+ uv tool install --python 3.12 qontract-reconcile
343
+ ```
344
+
345
+ or via `pip`:
346
+
347
+ ```sh
348
+ pip install qontract-reconcile
349
+ ```
350
+
351
+ Install runtime requirements:
352
+
353
+ Versions can be found in [qontract-reconcile-base Dockerfile](https://github.com/app-sre/container-images/blob/master/qontract-reconcile-base/Dockerfile).
354
+
355
+ - amtool
356
+ - git-secrets
357
+ - helm
358
+ - kubectl
359
+ - oc
360
+ - promtool
361
+ - skopeo
362
+ - terraform
363
+
364
+ ## Development
365
+
366
+ This project targets Python version 3.12.x for best compatibility and leverages [uv](https://docs.astral.sh/uv/) for the dependency managment.
367
+
368
+ Create a local development environment with all required dependencies:
369
+
370
+ ```sh
371
+ make dev-env
372
+ ```
373
+
374
+ ### Image build
375
+
376
+ In order to speed up frequent builds and avoid issues with dependencies, docker image
377
+ makes use [`qontract-reconcile-build`](https://quay.io/repository/app-sre/qontract-reconcile-base?tag=latest&tab=tags)
378
+ image. See [`app-sre/coontainer-images`](https://github.com/app-sre/container-images)
379
+ repository if you want to make changes to the base image.
380
+
381
+ This repo [`Dockerfile`](dockerfiles/Dockerfile) must only contain instructions related to the Python code build.
382
+
383
+ The [README](dockerfiles/README.md) contains more information about the Dockerfile and the build stages.
384
+
385
+ ### Testing
386
+
387
+ This project uses [pytset](https://docs.pytest.org/en/stable/) as the test runner and
388
+ these tools for static analysis and type checking:
389
+
390
+ - [ruff](https://docs.astral.sh/ruff/): A fast Python linter and code formatter.
391
+ - [mypy](https://mypy.readthedocs.io/en/stable/): A static type checker for Python.
392
+
393
+ The [Makefile](Makefile) contains several targets to help with testing, linting,
394
+ formatting, and type checking:
395
+
396
+ - `make all-tests`: Run all available tests.
397
+ - `make linter-test`: Run the linter and formatter tests.
398
+ - `make types-test`: Run the type checker tests.
399
+ - `make qenerate-test`: Run the query classes generation tests.
400
+ - `make helm-test`: Run the helm chart tests.
401
+ - `make unittest`: Run all Python unit tests.
402
+
403
+ ## Run reconcile loop for an integration locally in a container
404
+
405
+ This is currently only tested with the docker container engine.
406
+
407
+ For more flexible way to run in container, please see [qontract-development-cli](https://github.com/app-sre/qontract-development-cli).
408
+
409
+ ### Prepare config.toml
410
+
411
+ Make sure the file `./config.dev.toml` exists and contains your current configuration.
412
+ Your `config.dev.toml` should point to the following qontract-server address:
413
+
414
+ ```toml
415
+ [graphql]
416
+ server = "http://host.docker.internal:4000/graphql"
417
+ ```
418
+
419
+ ### Run qontract-server
420
+
421
+ Start the [qontract-server](https://github.com/app-sre/qontract-server) in a different window, e.g., via:
422
+
423
+ Run this in the root dir of `qontract-server` repo:
424
+
425
+ ```shell
426
+ make build-dev
427
+ ```
428
+
429
+ ### Trigger integration
430
+
431
+ ```shell
432
+ make dev-reconcile-loop INTEGRATION_NAME=terraform-resources DRY_RUN=--dry-run LOG_LEVEL=DEBUG INTEGRATION_EXTRA_ARGS=--light SLEEP_DURATION_SECS=100
433
+ ```
434
+
435
+ ## Query Classes
436
+
437
+ We use [qenerate](https://github.com/app-sre/qenerate) to generate data classes for GQL queries.
438
+ GQL definitions and generated classes can be found [here](reconcile/gql_definitions/).
439
+
440
+ ### Workflow
441
+
442
+ 1. Define your query or fragment in a `.gql` file somewhere in `reconcile/gql_definitions`.
443
+ 2. Every gql file must hold exactly one `query` OR `fragment` definition. You must not have multiple definitions within one file.
444
+ 3. Do not forget to add `# qenerate: plugin=pydantic_v1` in the beginning of the file. This tells `qenerate` which plugin is used to render the code.
445
+ 4. Have an up-to-date schema available at localhost:4000
446
+ 5. `make gql-introspection` gets the type definitions. They will be stored in `reconcile/gql_definitions/introspection.json`
447
+ 6. `make gql-query-classes` generates the data classes for your queries and fragments
448
+
449
+ ## Design Patterns
450
+
451
+ This project follows a set of established architectural and implementation patterns to ensure consistency, reliability, and scalability. For a detailed explanation of these concepts, please see the **[Design Patterns Documentation](docs/patterns/README.md)**.
452
+
453
+ Understanding these patterns, especially the `qenerate` workflow for GraphQL data binding, is highly recommended for new developers.
454
+
455
+ ## Troubleshooting
456
+
457
+ `faulthandler` is enabled for this project and SIGUSR1 is registered to dump the traceback. To do so, you can use `kill -USR1 pid` where pid is the ID of the qontract-reconcile process.
458
+
459
+ ## Profiling
460
+
461
+ Enable the Python cProfile module by setting the environment variable `ENABLE_PROFILING=1` before running the integration. This will generate a profile file `/tmp/profile.prof`.
462
+
463
+ You can then analyze the profile using `snakeviz`:
464
+
465
+ ```sh
466
+ snakeviz /tmp/profile.prof
467
+ ```
468
+
469
+ > :information_source: Note
470
+ >
471
+ > `cProfile` doesn't support multithreading, but it can still highlight performance issues on the main thread.
472
+ > If you need to profile multithreaded code, consider using [py-spy](https://github.com/benfred/py-spy) or similar tools that support sampling profiling.
473
+ > Also [memray](https://github.com/bloomberg/memray) could be beneficial for memory profiling.
474
+
475
+ ## Code style guide
476
+
477
+ Qontract-reconcile uses [PEP8](https://peps.python.org/pep-0008/) as the code style guide.
478
+ The style is enforced via PR checks (`make test`) with the help of the following utilities:
479
+
480
+ - [Ruff - An extremely fast Python linter and code formatter, written in Rust.](https://docs.astral.sh/ruff/)
481
+ - [Mypy](https://mypy.readthedocs.io/en/stable/)
482
+
483
+ Run `make format` before you commit your changes to keep the code compliant.
484
+
485
+ ## Release
486
+
487
+ Release version are calculated from git tags of the form X.Y.Z.
488
+
489
+ - If the current commit has such a tag, it will be used as is
490
+ - Otherwise the latest tag of that format is used and:
491
+ - the patch label (Z) is incremented
492
+ - the string `.pre<count>+<commitid>` is appended. `<count>` is the number of commits since the X.Y.Z tag. `<commitid>` is... the current commit id.
493
+
494
+ After the PR is merged, a CI job will be triggered that will publish the package to pypi: <https://pypi.org/project/qontract-reconcile>.
495
+
496
+ ## Licence
497
+
498
+ [Apache License Version 2.0](LICENSE).
499
+
500
+ ## Authors
501
+
502
+ These tools have been written by the [Red Hat App-SRE Team](mailto:sd-app-sre@redhat.com).
503
+
504
+ [pypi-link]: https://pypi.org/project/qontract-reconcile/
505
+ [pypi-platforms]: https://img.shields.io/pypi/pyversions/qontract-reconcile