qontract-reconcile 0.10.2.dev386__tar.gz → 0.10.2.dev428__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.
Potentially problematic release.
This version of qontract-reconcile might be problematic. Click here for more details.
- qontract_reconcile-0.10.2.dev428/PKG-INFO +505 -0
- qontract_reconcile-0.10.2.dev428/pyproject.toml +281 -0
- qontract_reconcile-0.10.2.dev428/reconcile/acs_rbac.py +595 -0
- qontract_reconcile-0.10.2.dev428/reconcile/aus/advanced_upgrade_service.py +649 -0
- qontract_reconcile-0.10.2.dev428/reconcile/aus/base.py +1429 -0
- qontract_reconcile-0.10.2.dev428/reconcile/aus/cluster_version_data.py +189 -0
- qontract_reconcile-0.10.2.dev428/reconcile/aus/models.py +280 -0
- qontract_reconcile-0.10.2.dev428/reconcile/aus/ocm_addons_upgrade_scheduler_org.py +275 -0
- qontract_reconcile-0.10.2.dev428/reconcile/aus/ocm_upgrade_scheduler.py +111 -0
- qontract_reconcile-0.10.2.dev428/reconcile/aus/ocm_upgrade_scheduler_org.py +116 -0
- qontract_reconcile-0.10.2.dev428/reconcile/aus/version_gates/sts_version_gate_handler.py +153 -0
- qontract_reconcile-0.10.2.dev428/reconcile/automated_actions/config/integration.py +391 -0
- qontract_reconcile-0.10.2.dev428/reconcile/aws_account_manager/integration.py +379 -0
- qontract_reconcile-0.10.2.dev428/reconcile/aws_account_manager/reconciler.py +460 -0
- qontract_reconcile-0.10.2.dev428/reconcile/aws_ami_cleanup/integration.py +266 -0
- qontract_reconcile-0.10.2.dev428/reconcile/aws_ami_share.py +108 -0
- qontract_reconcile-0.10.2.dev428/reconcile/aws_cloudwatch_log_retention/integration.py +289 -0
- qontract_reconcile-0.10.2.dev428/reconcile/aws_saml_idp/integration.py +213 -0
- qontract_reconcile-0.10.2.dev428/reconcile/aws_saml_roles/integration.py +330 -0
- qontract_reconcile-0.10.2.dev428/reconcile/aws_version_sync/integration.py +525 -0
- qontract_reconcile-0.10.2.dev428/reconcile/change_owners/bundle.py +198 -0
- qontract_reconcile-0.10.2.dev428/reconcile/change_owners/change_log_tracking.py +243 -0
- qontract_reconcile-0.10.2.dev428/reconcile/change_owners/change_owners.py +480 -0
- qontract_reconcile-0.10.2.dev428/reconcile/checkpoint.py +181 -0
- qontract_reconcile-0.10.2.dev428/reconcile/cli.py +3981 -0
- qontract_reconcile-0.10.2.dev428/reconcile/dashdotdb_dora.py +523 -0
- qontract_reconcile-0.10.2.dev428/reconcile/dashdotdb_slo.py +122 -0
- qontract_reconcile-0.10.2.dev428/reconcile/database_access_manager.py +760 -0
- qontract_reconcile-0.10.2.dev428/reconcile/dynatrace_token_provider/integration.py +703 -0
- qontract_reconcile-0.10.2.dev428/reconcile/endpoints_discovery/integration.py +412 -0
- qontract_reconcile-0.10.2.dev428/reconcile/endpoints_discovery/merge_request.py +96 -0
- qontract_reconcile-0.10.2.dev428/reconcile/endpoints_discovery/merge_request_manager.py +176 -0
- qontract_reconcile-0.10.2.dev428/reconcile/external_resources/integration.py +202 -0
- qontract_reconcile-0.10.2.dev428/reconcile/external_resources/manager.py +472 -0
- qontract_reconcile-0.10.2.dev428/reconcile/external_resources/metrics.py +117 -0
- qontract_reconcile-0.10.2.dev428/reconcile/external_resources/model.py +443 -0
- qontract_reconcile-0.10.2.dev428/reconcile/external_resources/reconciler.py +282 -0
- qontract_reconcile-0.10.2.dev428/reconcile/external_resources/secrets_sync.py +456 -0
- qontract_reconcile-0.10.2.dev428/reconcile/external_resources/state.py +347 -0
- qontract_reconcile-0.10.2.dev428/reconcile/fleet_labeler/integration.py +347 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gcp_image_mirror.py +252 -0
- qontract_reconcile-0.10.2.dev428/reconcile/github_org.py +519 -0
- qontract_reconcile-0.10.2.dev428/reconcile/github_owners.py +107 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gitlab_members.py +238 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gitlab_permissions.py +236 -0
- qontract_reconcile-0.10.2.dev428/reconcile/glitchtip_project_alerts/integration.py +332 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/acs/acs_instances.py +83 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/acs/acs_policies.py +157 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/acs/acs_rbac.py +111 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/advanced_upgrade_service/aus_clusters.py +202 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/advanced_upgrade_service/aus_organization.py +167 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/app_interface_metrics_exporter/onboarding_status.py +60 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/app_sre_tekton_access_revalidation/roles.py +86 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/app_sre_tekton_access_revalidation/users.py +92 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/automated_actions/instance.py +412 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/aws_account_manager/aws_accounts.py +182 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/aws_ami_cleanup/aws_accounts.py +170 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/aws_cloudwatch_log_retention/aws_accounts.py +116 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/aws_saml_idp/aws_accounts.py +126 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/aws_saml_roles/aws_accounts.py +126 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/aws_saml_roles/roles.py +97 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/aws_version_sync/clusters.py +83 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/aws_version_sync/namespaces.py +143 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/change_owners/queries/change_types.py +153 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/change_owners/queries/self_service_roles.py +179 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/cluster_auth_rhidp/clusters.py +128 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/common/alerting_services_settings.py +60 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/common/app_code_component_repos.py +72 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/common/app_interface_custom_messages.py +68 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/common/app_interface_dms_settings.py +86 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/common/app_interface_repo_settings.py +60 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/common/app_interface_roles.py +120 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/common/app_interface_state_settings.py +88 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/common/app_interface_vault_settings.py +60 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/common/app_quay_repos_escalation_policies.py +120 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/common/apps.py +72 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/common/aws_vpc_requests.py +122 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/common/aws_vpcs.py +84 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/common/clusters.py +677 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/common/clusters_minimal.py +169 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/common/clusters_with_dms.py +72 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/common/clusters_with_peering.py +364 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/common/github_orgs.py +77 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/common/jira_settings.py +68 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/common/jiralert_settings.py +68 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/common/ldap_settings.py +68 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/common/namespaces.py +360 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/common/namespaces_minimal.py +123 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/common/ocm_env_telemeter.py +95 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/common/ocm_environments.py +77 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/common/pagerduty_instances.py +75 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/common/pgp_reencryption_settings.py +72 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/common/pipeline_providers.py +285 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/common/quay_instances.py +64 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/common/quay_orgs.py +68 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/common/reserved_networks.py +94 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/common/rhcs_provider_settings.py +70 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/common/saas_files.py +640 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/common/saas_target_namespaces.py +141 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/common/saasherder_settings.py +62 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/common/slack_workspaces.py +62 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/common/smtp_client_settings.py +81 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/common/state_aws_account.py +76 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/common/users.py +66 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/common/users_with_paths.py +102 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/cost_report/app_names.py +68 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/cost_report/cost_namespaces.py +86 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/cost_report/settings.py +77 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/dashdotdb_slo/slo_documents_query.py +109 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/dynatrace_token_provider/dynatrace_bootstrap_tokens.py +79 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/dynatrace_token_provider/token_specs.py +84 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/email_sender/apps.py +64 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/email_sender/emails.py +133 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/email_sender/users.py +62 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/endpoints_discovery/apps.py +131 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/external_resources/aws_accounts.py +73 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/external_resources/external_resources_modules.py +105 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/external_resources/external_resources_namespaces.py +1238 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/external_resources/external_resources_settings.py +117 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/external_resources/fragments/external_resources_module_overrides.py +37 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/fleet_labeler/fleet_labels.py +137 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/fragments/aus_organization.py +107 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/fragments/aws_account_common.py +63 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/fragments/aws_account_managed.py +58 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/fragments/aws_account_sso.py +35 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/fragments/aws_infra_management_account.py +40 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/fragments/aws_organization.py +33 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/fragments/aws_vpc.py +47 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/fragments/aws_vpc_request.py +70 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/fragments/container_image_mirror.py +33 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/fragments/deploy_resources.py +39 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/fragments/disable.py +28 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/fragments/email_service.py +32 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/fragments/email_user.py +28 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/fragments/jumphost_common_fields.py +35 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/fragments/membership_source.py +47 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/fragments/minimal_ocm_organization.py +29 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/fragments/oc_connection_cluster.py +42 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/fragments/ocm_environment.py +36 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/fragments/pipeline_provider_retention.py +30 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/fragments/prometheus_instance.py +48 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/fragments/resource_limits_requirements.py +29 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/fragments/resource_requests_requirements.py +29 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/fragments/resource_values.py +29 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/fragments/saas_slo_document.py +82 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/fragments/saas_target_namespace.py +108 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/fragments/serviceaccount_token.py +38 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/fragments/terraform_state.py +36 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/fragments/upgrade_policy.py +38 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/fragments/user.py +32 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/fragments/vault_secret.py +31 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/gcp/gcp_docker_repos.py +128 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/gcp/gcp_projects.py +77 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/gitlab_members/gitlab_instances.py +81 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/gitlab_members/permissions.py +125 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/glitchtip/glitchtip_instance.py +93 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/glitchtip/glitchtip_project.py +235 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/glitchtip_project_alerts/glitchtip_project.py +173 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/integrations/integrations.py +374 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/introspection.json +56116 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/jenkins_configs/jenkins_configs.py +112 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/jenkins_configs/jenkins_instances.py +79 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/jira/jira_servers.py +80 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/jira_permissions_validator/jira_boards_for_permissions_validator.py +143 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/jumphosts/jumphosts.py +95 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/ldap_groups/roles.py +111 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/ldap_groups/settings.py +79 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/maintenance/maintenances.py +101 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/membershipsources/roles.py +110 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/ocm_labels/clusters.py +111 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/ocm_labels/organizations.py +78 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/openshift_cluster_bots/clusters.py +126 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/openshift_groups/managed_groups.py +70 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/openshift_groups/managed_roles.py +100 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/openshift_serviceaccount_tokens/tokens.py +132 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/quay_membership/quay_membership.py +115 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/rhcs/certs.py +149 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/rhcs/openshift_resource_rhcs_cert.py +43 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/rhidp/organizations.py +96 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/service_dependencies/jenkins_instance_fragment.py +28 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/service_dependencies/service_dependencies.py +166 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/sharding/aws_accounts.py +68 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/sharding/ocm_organization.py +63 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/skupper_network/site_controller_template.py +29 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/skupper_network/skupper_networks.py +197 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/slack_usergroups/clusters.py +76 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/slack_usergroups/permissions.py +195 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/slack_usergroups/users.py +109 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/slo_documents/slo_documents.py +142 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/status_board/status_board.py +162 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/statuspage/statuspages.py +179 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/templating/template_collection.py +132 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/templating/templates.py +110 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/terraform_cloudflare_dns/app_interface_cloudflare_dns_settings.py +62 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/terraform_cloudflare_dns/terraform_cloudflare_zones.py +193 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/terraform_cloudflare_resources/terraform_cloudflare_accounts.py +127 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/terraform_cloudflare_resources/terraform_cloudflare_resources.py +359 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/terraform_cloudflare_users/app_interface_setting_cloudflare_and_vault.py +62 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/terraform_cloudflare_users/terraform_cloudflare_roles.py +139 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/terraform_init/aws_accounts.py +107 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/terraform_repo/terraform_repo.py +141 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/terraform_resources/database_access_manager.py +158 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/terraform_resources/terraform_resources_namespaces.py +1168 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/terraform_tgw_attachments/aws_accounts.py +124 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/unleash_feature_toggles/feature_toggles.py +113 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/vault_instances/vault_instances.py +245 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/vault_policies/vault_policies.py +70 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/vpc_peerings_validator/vpc_peerings_validator.py +157 -0
- qontract_reconcile-0.10.2.dev428/reconcile/gql_definitions/vpc_peerings_validator/vpc_peerings_validator_peered_cluster_fragment.py +39 -0
- qontract_reconcile-0.10.2.dev428/reconcile/integrations_manager.py +301 -0
- qontract_reconcile-0.10.2.dev428/reconcile/jenkins_worker_fleets.py +219 -0
- qontract_reconcile-0.10.2.dev428/reconcile/jira_permissions_validator.py +492 -0
- qontract_reconcile-0.10.2.dev428/reconcile/ldap_groups/integration.py +280 -0
- qontract_reconcile-0.10.2.dev428/reconcile/ocm/types.py +90 -0
- qontract_reconcile-0.10.2.dev428/reconcile/ocm_aws_infrastructure_access.py +209 -0
- qontract_reconcile-0.10.2.dev428/reconcile/ocm_clusters.py +458 -0
- qontract_reconcile-0.10.2.dev428/reconcile/ocm_labels/integration.py +408 -0
- qontract_reconcile-0.10.2.dev428/reconcile/ocm_machine_pools.py +557 -0
- qontract_reconcile-0.10.2.dev428/reconcile/openshift_base.py +1672 -0
- qontract_reconcile-0.10.2.dev428/reconcile/openshift_cluster_bots.py +344 -0
- qontract_reconcile-0.10.2.dev428/reconcile/openshift_namespace_labels.py +473 -0
- qontract_reconcile-0.10.2.dev428/reconcile/openshift_namespaces.py +189 -0
- qontract_reconcile-0.10.2.dev428/reconcile/openshift_resources_base.py +1307 -0
- qontract_reconcile-0.10.2.dev428/reconcile/openshift_rhcs_certs.py +334 -0
- qontract_reconcile-0.10.2.dev428/reconcile/openshift_rolebindings.py +323 -0
- qontract_reconcile-0.10.2.dev428/reconcile/openshift_saas_deploy.py +348 -0
- qontract_reconcile-0.10.2.dev428/reconcile/openshift_saas_deploy_change_tester.py +252 -0
- qontract_reconcile-0.10.2.dev428/reconcile/openshift_serviceaccount_tokens.py +237 -0
- qontract_reconcile-0.10.2.dev428/reconcile/openshift_upgrade_watcher.py +199 -0
- qontract_reconcile-0.10.2.dev428/reconcile/oum/labelset.py +57 -0
- qontract_reconcile-0.10.2.dev428/reconcile/oum/models.py +66 -0
- qontract_reconcile-0.10.2.dev428/reconcile/prometheus_rules_tester/integration.py +304 -0
- qontract_reconcile-0.10.2.dev428/reconcile/quay_mirror.py +409 -0
- qontract_reconcile-0.10.2.dev428/reconcile/queries.py +2977 -0
- qontract_reconcile-0.10.2.dev428/reconcile/rhidp/common.py +218 -0
- qontract_reconcile-0.10.2.dev428/reconcile/rhidp/sso_client/base.py +275 -0
- qontract_reconcile-0.10.2.dev428/reconcile/saas_auto_promotions_manager/merge_request_manager/renderer.py +193 -0
- qontract_reconcile-0.10.2.dev428/reconcile/skupper_network/integration.py +309 -0
- qontract_reconcile-0.10.2.dev428/reconcile/slack_usergroups.py +921 -0
- qontract_reconcile-0.10.2.dev428/reconcile/status_board.py +465 -0
- qontract_reconcile-0.10.2.dev428/reconcile/statuspage/atlassian.py +492 -0
- qontract_reconcile-0.10.2.dev428/reconcile/statuspage/page.py +193 -0
- qontract_reconcile-0.10.2.dev428/reconcile/templating/lib/rendering.py +212 -0
- qontract_reconcile-0.10.2.dev428/reconcile/templating/renderer.py +413 -0
- qontract_reconcile-0.10.2.dev428/reconcile/terraform_cloudflare_dns.py +379 -0
- qontract_reconcile-0.10.2.dev428/reconcile/terraform_cloudflare_resources.py +445 -0
- qontract_reconcile-0.10.2.dev428/reconcile/terraform_cloudflare_users.py +374 -0
- qontract_reconcile-0.10.2.dev428/reconcile/terraform_init/integration.py +331 -0
- qontract_reconcile-0.10.2.dev428/reconcile/terraform_repo.py +402 -0
- qontract_reconcile-0.10.2.dev428/reconcile/terraform_resources.py +605 -0
- qontract_reconcile-0.10.2.dev428/reconcile/terraform_tgw_attachments.py +589 -0
- qontract_reconcile-0.10.2.dev428/reconcile/terraform_vpc_peerings.py +767 -0
- qontract_reconcile-0.10.2.dev428/reconcile/terraform_vpc_resources/integration.py +250 -0
- qontract_reconcile-0.10.2.dev428/reconcile/typed_queries/aws_account_tags.py +41 -0
- qontract_reconcile-0.10.2.dev428/reconcile/typed_queries/cost_report/app_names.py +22 -0
- qontract_reconcile-0.10.2.dev428/reconcile/typed_queries/cost_report/cost_namespaces.py +43 -0
- qontract_reconcile-0.10.2.dev428/reconcile/typed_queries/saas_files.py +342 -0
- qontract_reconcile-0.10.2.dev428/reconcile/typed_queries/status_board.py +57 -0
- qontract_reconcile-0.10.2.dev428/reconcile/unleash_feature_toggles/integration.py +289 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/acs/base.py +84 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/acs/policies.py +163 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/aws_api.py +1691 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/aws_api_typed/api.py +304 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/aws_api_typed/logs.py +73 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/aws_api_typed/organization.py +157 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/binary.py +74 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/deadmanssnitch_api.py +84 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/early_exit_cache.py +288 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/gitlab_api.py +869 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/glitchtip/client.py +275 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/glitchtip/models.py +212 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/gql.py +479 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/instrumented_wrappers.py +70 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/internal_groups/client.py +160 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/internal_groups/models.py +62 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/jinja2/utils.py +296 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/jira_client.py +351 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/jobcontroller/controller.py +413 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/jobcontroller/models.py +211 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/json.py +74 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/membershipsources/app_interface_resolver.py +62 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/membershipsources/models.py +83 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/membershipsources/resolver.py +112 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/merge_request_manager/merge_request_manager.py +99 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/merge_request_manager/parser.py +67 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/metrics.py +571 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/models.py +346 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/mr/notificator.py +91 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/mr/user_maintenance.py +164 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/oc.py +1960 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/ocm/addons.py +227 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/ocm/base.py +635 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/ocm/cluster_groups.py +62 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/ocm/identity_providers.py +66 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/ocm/labels.py +216 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/ocm/products.py +767 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/ocm/service_log.py +60 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/ocm/sre_capability_labels.py +58 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/openshift_resource.py +740 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/pagerduty_api.py +244 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/promotion_state.py +106 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/raw_github_api.py +94 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/rhcsv2_certs.py +179 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/rosa/session.py +217 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/runtime/integration.py +310 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/saasherder/interfaces.py +418 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/saasherder/models.py +438 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/saasherder/saasherder.py +2281 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/slack_api.py +554 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/sloth.py +224 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/structs.py +16 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/terraform_client.py +928 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/terrascript_aws_client.py +7319 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/unleash/server.py +139 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/vault.py +449 -0
- qontract_reconcile-0.10.2.dev428/reconcile/utils/vcs.py +293 -0
- qontract_reconcile-0.10.2.dev428/reconcile/vault_replication.py +519 -0
- qontract_reconcile-0.10.2.dev428/tools/cli_commands/cost_report/cost_management_api.py +155 -0
- qontract_reconcile-0.10.2.dev428/tools/cli_commands/cost_report/view.py +535 -0
- qontract_reconcile-0.10.2.dev428/tools/cli_commands/erv2.py +732 -0
- qontract_reconcile-0.10.2.dev428/tools/qontract_cli.py +4888 -0
- qontract_reconcile-0.10.2.dev428/tools/template_validation.py +109 -0
- qontract_reconcile-0.10.2.dev386/PKG-INFO +0 -504
- qontract_reconcile-0.10.2.dev386/pyproject.toml +0 -283
- qontract_reconcile-0.10.2.dev386/reconcile/acs_rbac.py +0 -595
- qontract_reconcile-0.10.2.dev386/reconcile/aus/advanced_upgrade_service.py +0 -643
- qontract_reconcile-0.10.2.dev386/reconcile/aus/base.py +0 -1330
- qontract_reconcile-0.10.2.dev386/reconcile/aus/cluster_version_data.py +0 -179
- qontract_reconcile-0.10.2.dev386/reconcile/aus/models.py +0 -278
- qontract_reconcile-0.10.2.dev386/reconcile/aus/ocm_addons_upgrade_scheduler_org.py +0 -274
- qontract_reconcile-0.10.2.dev386/reconcile/aus/ocm_upgrade_scheduler.py +0 -104
- qontract_reconcile-0.10.2.dev386/reconcile/aus/ocm_upgrade_scheduler_org.py +0 -101
- qontract_reconcile-0.10.2.dev386/reconcile/aus/version_gates/sts_version_gate_handler.py +0 -100
- qontract_reconcile-0.10.2.dev386/reconcile/automated_actions/config/integration.py +0 -379
- qontract_reconcile-0.10.2.dev386/reconcile/aws_account_manager/integration.py +0 -379
- qontract_reconcile-0.10.2.dev386/reconcile/aws_account_manager/reconciler.py +0 -460
- qontract_reconcile-0.10.2.dev386/reconcile/aws_ami_cleanup/integration.py +0 -269
- qontract_reconcile-0.10.2.dev386/reconcile/aws_ami_share.py +0 -101
- qontract_reconcile-0.10.2.dev386/reconcile/aws_cloudwatch_log_retention/integration.py +0 -263
- qontract_reconcile-0.10.2.dev386/reconcile/aws_saml_idp/integration.py +0 -211
- qontract_reconcile-0.10.2.dev386/reconcile/aws_saml_roles/integration.py +0 -329
- qontract_reconcile-0.10.2.dev386/reconcile/aws_version_sync/integration.py +0 -531
- qontract_reconcile-0.10.2.dev386/reconcile/change_owners/bundle.py +0 -198
- qontract_reconcile-0.10.2.dev386/reconcile/change_owners/change_log_tracking.py +0 -242
- qontract_reconcile-0.10.2.dev386/reconcile/change_owners/change_owners.py +0 -480
- qontract_reconcile-0.10.2.dev386/reconcile/checkpoint.py +0 -173
- qontract_reconcile-0.10.2.dev386/reconcile/cli.py +0 -3914
- qontract_reconcile-0.10.2.dev386/reconcile/dashdotdb_dora.py +0 -523
- qontract_reconcile-0.10.2.dev386/reconcile/dashdotdb_slo.py +0 -122
- qontract_reconcile-0.10.2.dev386/reconcile/database_access_manager.py +0 -761
- qontract_reconcile-0.10.2.dev386/reconcile/dynatrace_token_provider/integration.py +0 -703
- qontract_reconcile-0.10.2.dev386/reconcile/endpoints_discovery/integration.py +0 -409
- qontract_reconcile-0.10.2.dev386/reconcile/endpoints_discovery/merge_request.py +0 -96
- qontract_reconcile-0.10.2.dev386/reconcile/endpoints_discovery/merge_request_manager.py +0 -176
- qontract_reconcile-0.10.2.dev386/reconcile/external_resources/integration.py +0 -202
- qontract_reconcile-0.10.2.dev386/reconcile/external_resources/manager.py +0 -471
- qontract_reconcile-0.10.2.dev386/reconcile/external_resources/metrics.py +0 -117
- qontract_reconcile-0.10.2.dev386/reconcile/external_resources/model.py +0 -441
- qontract_reconcile-0.10.2.dev386/reconcile/external_resources/reconciler.py +0 -279
- qontract_reconcile-0.10.2.dev386/reconcile/external_resources/secrets_sync.py +0 -456
- qontract_reconcile-0.10.2.dev386/reconcile/external_resources/state.py +0 -338
- qontract_reconcile-0.10.2.dev386/reconcile/fleet_labeler/integration.py +0 -347
- qontract_reconcile-0.10.2.dev386/reconcile/gcp_image_mirror.py +0 -252
- qontract_reconcile-0.10.2.dev386/reconcile/github_org.py +0 -519
- qontract_reconcile-0.10.2.dev386/reconcile/github_owners.py +0 -103
- qontract_reconcile-0.10.2.dev386/reconcile/gitlab_members.py +0 -244
- qontract_reconcile-0.10.2.dev386/reconcile/gitlab_permissions.py +0 -240
- qontract_reconcile-0.10.2.dev386/reconcile/glitchtip_project_alerts/integration.py +0 -330
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/acs/acs_instances.py +0 -83
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/acs/acs_policies.py +0 -157
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/acs/acs_rbac.py +0 -111
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/advanced_upgrade_service/aus_clusters.py +0 -202
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/advanced_upgrade_service/aus_organization.py +0 -167
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/app_interface_metrics_exporter/onboarding_status.py +0 -60
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/app_sre_tekton_access_revalidation/roles.py +0 -86
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/app_sre_tekton_access_revalidation/users.py +0 -92
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/automated_actions/instance.py +0 -373
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/aws_account_manager/aws_accounts.py +0 -182
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/aws_ami_cleanup/aws_accounts.py +0 -160
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/aws_cloudwatch_log_retention/aws_accounts.py +0 -155
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/aws_saml_idp/aws_accounts.py +0 -116
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/aws_saml_roles/aws_accounts.py +0 -116
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/aws_saml_roles/roles.py +0 -97
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/aws_version_sync/clusters.py +0 -83
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/aws_version_sync/namespaces.py +0 -143
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/change_owners/queries/change_types.py +0 -153
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/change_owners/queries/self_service_roles.py +0 -179
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/cluster_auth_rhidp/clusters.py +0 -128
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/common/alerting_services_settings.py +0 -60
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/common/app_code_component_repos.py +0 -72
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/common/app_interface_custom_messages.py +0 -68
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/common/app_interface_dms_settings.py +0 -86
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/common/app_interface_repo_settings.py +0 -60
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/common/app_interface_roles.py +0 -120
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/common/app_interface_state_settings.py +0 -88
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/common/app_interface_vault_settings.py +0 -60
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/common/app_quay_repos_escalation_policies.py +0 -120
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/common/apps.py +0 -72
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/common/aws_vpc_requests.py +0 -112
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/common/aws_vpcs.py +0 -84
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/common/clusters.py +0 -677
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/common/clusters_minimal.py +0 -169
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/common/clusters_with_dms.py +0 -72
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/common/clusters_with_peering.py +0 -364
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/common/github_orgs.py +0 -77
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/common/jira_settings.py +0 -68
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/common/jiralert_settings.py +0 -68
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/common/ldap_settings.py +0 -68
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/common/namespaces.py +0 -360
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/common/namespaces_minimal.py +0 -121
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/common/ocm_env_telemeter.py +0 -95
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/common/ocm_environments.py +0 -77
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/common/pagerduty_instances.py +0 -75
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/common/pgp_reencryption_settings.py +0 -72
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/common/pipeline_providers.py +0 -285
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/common/quay_instances.py +0 -64
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/common/quay_orgs.py +0 -68
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/common/reserved_networks.py +0 -94
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/common/rhcs_provider_settings.py +0 -70
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/common/saas_files.py +0 -640
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/common/saas_target_namespaces.py +0 -141
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/common/saasherder_settings.py +0 -62
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/common/slack_workspaces.py +0 -62
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/common/smtp_client_settings.py +0 -81
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/common/state_aws_account.py +0 -76
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/common/users.py +0 -66
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/common/users_with_paths.py +0 -102
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/cost_report/app_names.py +0 -68
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/cost_report/cost_namespaces.py +0 -86
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/cost_report/settings.py +0 -77
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/dashdotdb_slo/slo_documents_query.py +0 -109
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/dynatrace_token_provider/dynatrace_bootstrap_tokens.py +0 -79
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/dynatrace_token_provider/token_specs.py +0 -84
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/email_sender/apps.py +0 -64
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/email_sender/emails.py +0 -133
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/email_sender/users.py +0 -62
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/endpoints_discovery/apps.py +0 -131
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/external_resources/aws_accounts.py +0 -73
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/external_resources/external_resources_modules.py +0 -105
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/external_resources/external_resources_namespaces.py +0 -1211
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/external_resources/external_resources_settings.py +0 -117
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/external_resources/fragments/external_resources_module_overrides.py +0 -37
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/fleet_labeler/fleet_labels.py +0 -137
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/fragments/aus_organization.py +0 -107
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/fragments/aws_account_common.py +0 -61
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/fragments/aws_account_managed.py +0 -58
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/fragments/aws_account_sso.py +0 -35
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/fragments/aws_infra_management_account.py +0 -40
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/fragments/aws_vpc.py +0 -47
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/fragments/aws_vpc_request.py +0 -68
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/fragments/container_image_mirror.py +0 -33
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/fragments/deploy_resources.py +0 -39
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/fragments/disable.py +0 -28
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/fragments/email_service.py +0 -32
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/fragments/email_user.py +0 -28
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/fragments/jumphost_common_fields.py +0 -35
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/fragments/membership_source.py +0 -47
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/fragments/minimal_ocm_organization.py +0 -29
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/fragments/oc_connection_cluster.py +0 -42
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/fragments/ocm_environment.py +0 -36
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/fragments/pipeline_provider_retention.py +0 -30
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/fragments/prometheus_instance.py +0 -48
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/fragments/resource_limits_requirements.py +0 -29
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/fragments/resource_requests_requirements.py +0 -29
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/fragments/resource_values.py +0 -29
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/fragments/saas_slo_document.py +0 -82
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/fragments/saas_target_namespace.py +0 -108
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/fragments/serviceaccount_token.py +0 -38
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/fragments/terraform_state.py +0 -36
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/fragments/upgrade_policy.py +0 -38
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/fragments/user.py +0 -32
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/fragments/vault_secret.py +0 -31
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/gcp/gcp_docker_repos.py +0 -128
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/gcp/gcp_projects.py +0 -77
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/gitlab_members/gitlab_instances.py +0 -81
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/gitlab_members/permissions.py +0 -125
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/glitchtip/glitchtip_instance.py +0 -93
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/glitchtip/glitchtip_project.py +0 -235
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/glitchtip_project_alerts/glitchtip_project.py +0 -173
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/integrations/integrations.py +0 -374
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/introspection.json +0 -55683
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/jenkins_configs/jenkins_configs.py +0 -112
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/jenkins_configs/jenkins_instances.py +0 -79
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/jira/jira_servers.py +0 -80
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/jira_permissions_validator/jira_boards_for_permissions_validator.py +0 -139
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/jumphosts/jumphosts.py +0 -95
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/ldap_groups/roles.py +0 -111
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/ldap_groups/settings.py +0 -79
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/maintenance/maintenances.py +0 -101
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/membershipsources/roles.py +0 -110
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/ocm_labels/clusters.py +0 -111
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/ocm_labels/organizations.py +0 -78
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/openshift_cluster_bots/clusters.py +0 -126
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/openshift_groups/managed_groups.py +0 -70
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/openshift_groups/managed_roles.py +0 -100
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/openshift_serviceaccount_tokens/tokens.py +0 -132
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/quay_membership/quay_membership.py +0 -115
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/rhcs/certs.py +0 -203
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/rhidp/organizations.py +0 -96
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/service_dependencies/jenkins_instance_fragment.py +0 -28
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/service_dependencies/service_dependencies.py +0 -166
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/sharding/aws_accounts.py +0 -68
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/sharding/ocm_organization.py +0 -63
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/skupper_network/site_controller_template.py +0 -29
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/skupper_network/skupper_networks.py +0 -197
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/slack_usergroups/clusters.py +0 -76
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/slack_usergroups/permissions.py +0 -195
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/slack_usergroups/users.py +0 -109
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/slo_documents/slo_documents.py +0 -142
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/status_board/status_board.py +0 -162
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/statuspage/statuspages.py +0 -179
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/templating/template_collection.py +0 -132
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/templating/templates.py +0 -110
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/terraform_cloudflare_dns/app_interface_cloudflare_dns_settings.py +0 -62
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/terraform_cloudflare_dns/terraform_cloudflare_zones.py +0 -193
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/terraform_cloudflare_resources/terraform_cloudflare_accounts.py +0 -127
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/terraform_cloudflare_resources/terraform_cloudflare_resources.py +0 -359
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/terraform_cloudflare_users/app_interface_setting_cloudflare_and_vault.py +0 -62
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/terraform_cloudflare_users/terraform_cloudflare_roles.py +0 -139
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/terraform_init/aws_accounts.py +0 -95
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/terraform_repo/terraform_repo.py +0 -141
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/terraform_resources/database_access_manager.py +0 -158
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/terraform_resources/terraform_resources_namespaces.py +0 -1146
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/terraform_tgw_attachments/aws_accounts.py +0 -114
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/unleash_feature_toggles/feature_toggles.py +0 -113
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/vault_instances/vault_instances.py +0 -245
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/vault_policies/vault_policies.py +0 -70
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/vpc_peerings_validator/vpc_peerings_validator.py +0 -157
- qontract_reconcile-0.10.2.dev386/reconcile/gql_definitions/vpc_peerings_validator/vpc_peerings_validator_peered_cluster_fragment.py +0 -39
- qontract_reconcile-0.10.2.dev386/reconcile/integrations_manager.py +0 -301
- qontract_reconcile-0.10.2.dev386/reconcile/jenkins_worker_fleets.py +0 -218
- qontract_reconcile-0.10.2.dev386/reconcile/jira_permissions_validator.py +0 -377
- qontract_reconcile-0.10.2.dev386/reconcile/ldap_groups/integration.py +0 -280
- qontract_reconcile-0.10.2.dev386/reconcile/ocm/types.py +0 -112
- qontract_reconcile-0.10.2.dev386/reconcile/ocm_aws_infrastructure_access.py +0 -209
- qontract_reconcile-0.10.2.dev386/reconcile/ocm_clusters.py +0 -458
- qontract_reconcile-0.10.2.dev386/reconcile/ocm_labels/integration.py +0 -407
- qontract_reconcile-0.10.2.dev386/reconcile/ocm_machine_pools.py +0 -551
- qontract_reconcile-0.10.2.dev386/reconcile/openshift_base.py +0 -1563
- qontract_reconcile-0.10.2.dev386/reconcile/openshift_cluster_bots.py +0 -344
- qontract_reconcile-0.10.2.dev386/reconcile/openshift_namespace_labels.py +0 -473
- qontract_reconcile-0.10.2.dev386/reconcile/openshift_namespaces.py +0 -193
- qontract_reconcile-0.10.2.dev386/reconcile/openshift_resources_base.py +0 -1303
- qontract_reconcile-0.10.2.dev386/reconcile/openshift_rhcs_certs.py +0 -297
- qontract_reconcile-0.10.2.dev386/reconcile/openshift_rolebindings.py +0 -327
- qontract_reconcile-0.10.2.dev386/reconcile/openshift_saas_deploy.py +0 -349
- qontract_reconcile-0.10.2.dev386/reconcile/openshift_saas_deploy_change_tester.py +0 -250
- qontract_reconcile-0.10.2.dev386/reconcile/openshift_serviceaccount_tokens.py +0 -237
- qontract_reconcile-0.10.2.dev386/reconcile/openshift_upgrade_watcher.py +0 -199
- qontract_reconcile-0.10.2.dev386/reconcile/oum/labelset.py +0 -55
- qontract_reconcile-0.10.2.dev386/reconcile/oum/models.py +0 -69
- qontract_reconcile-0.10.2.dev386/reconcile/prometheus_rules_tester/integration.py +0 -304
- qontract_reconcile-0.10.2.dev386/reconcile/quay_mirror.py +0 -409
- qontract_reconcile-0.10.2.dev386/reconcile/queries.py +0 -2847
- qontract_reconcile-0.10.2.dev386/reconcile/rhidp/common.py +0 -220
- qontract_reconcile-0.10.2.dev386/reconcile/rhidp/sso_client/base.py +0 -264
- qontract_reconcile-0.10.2.dev386/reconcile/saas_auto_promotions_manager/merge_request_manager/renderer.py +0 -193
- qontract_reconcile-0.10.2.dev386/reconcile/skupper_network/integration.py +0 -309
- qontract_reconcile-0.10.2.dev386/reconcile/slack_usergroups.py +0 -901
- qontract_reconcile-0.10.2.dev386/reconcile/status_board.py +0 -465
- qontract_reconcile-0.10.2.dev386/reconcile/statuspage/atlassian.py +0 -492
- qontract_reconcile-0.10.2.dev386/reconcile/statuspage/page.py +0 -198
- qontract_reconcile-0.10.2.dev386/reconcile/templating/lib/rendering.py +0 -212
- qontract_reconcile-0.10.2.dev386/reconcile/templating/renderer.py +0 -413
- qontract_reconcile-0.10.2.dev386/reconcile/terraform_cloudflare_dns.py +0 -379
- qontract_reconcile-0.10.2.dev386/reconcile/terraform_cloudflare_resources.py +0 -445
- qontract_reconcile-0.10.2.dev386/reconcile/terraform_cloudflare_users.py +0 -373
- qontract_reconcile-0.10.2.dev386/reconcile/terraform_init/integration.py +0 -328
- qontract_reconcile-0.10.2.dev386/reconcile/terraform_repo.py +0 -398
- qontract_reconcile-0.10.2.dev386/reconcile/terraform_resources.py +0 -605
- qontract_reconcile-0.10.2.dev386/reconcile/terraform_tgw_attachments.py +0 -587
- qontract_reconcile-0.10.2.dev386/reconcile/terraform_vpc_peerings.py +0 -767
- qontract_reconcile-0.10.2.dev386/reconcile/terraform_vpc_resources/integration.py +0 -248
- qontract_reconcile-0.10.2.dev386/reconcile/typed_queries/cost_report/app_names.py +0 -22
- qontract_reconcile-0.10.2.dev386/reconcile/typed_queries/cost_report/cost_namespaces.py +0 -43
- qontract_reconcile-0.10.2.dev386/reconcile/typed_queries/saas_files.py +0 -342
- qontract_reconcile-0.10.2.dev386/reconcile/typed_queries/status_board.py +0 -57
- qontract_reconcile-0.10.2.dev386/reconcile/unleash_feature_toggles/integration.py +0 -287
- qontract_reconcile-0.10.2.dev386/reconcile/utils/acs/base.py +0 -81
- qontract_reconcile-0.10.2.dev386/reconcile/utils/acs/policies.py +0 -163
- qontract_reconcile-0.10.2.dev386/reconcile/utils/aws_api.py +0 -1660
- qontract_reconcile-0.10.2.dev386/reconcile/utils/aws_api_typed/api.py +0 -286
- qontract_reconcile-0.10.2.dev386/reconcile/utils/aws_api_typed/organization.py +0 -155
- qontract_reconcile-0.10.2.dev386/reconcile/utils/binary.py +0 -79
- qontract_reconcile-0.10.2.dev386/reconcile/utils/deadmanssnitch_api.py +0 -84
- qontract_reconcile-0.10.2.dev386/reconcile/utils/early_exit_cache.py +0 -290
- qontract_reconcile-0.10.2.dev386/reconcile/utils/gitlab_api.py +0 -867
- qontract_reconcile-0.10.2.dev386/reconcile/utils/glitchtip/client.py +0 -271
- qontract_reconcile-0.10.2.dev386/reconcile/utils/glitchtip/models.py +0 -215
- qontract_reconcile-0.10.2.dev386/reconcile/utils/gql.py +0 -482
- qontract_reconcile-0.10.2.dev386/reconcile/utils/instrumented_wrappers.py +0 -70
- qontract_reconcile-0.10.2.dev386/reconcile/utils/internal_groups/client.py +0 -160
- qontract_reconcile-0.10.2.dev386/reconcile/utils/internal_groups/models.py +0 -71
- qontract_reconcile-0.10.2.dev386/reconcile/utils/jinja2/utils.py +0 -299
- qontract_reconcile-0.10.2.dev386/reconcile/utils/jira_client.py +0 -332
- qontract_reconcile-0.10.2.dev386/reconcile/utils/jobcontroller/controller.py +0 -413
- qontract_reconcile-0.10.2.dev386/reconcile/utils/jobcontroller/models.py +0 -195
- qontract_reconcile-0.10.2.dev386/reconcile/utils/json.py +0 -32
- qontract_reconcile-0.10.2.dev386/reconcile/utils/membershipsources/app_interface_resolver.py +0 -60
- qontract_reconcile-0.10.2.dev386/reconcile/utils/membershipsources/models.py +0 -90
- qontract_reconcile-0.10.2.dev386/reconcile/utils/membershipsources/resolver.py +0 -110
- qontract_reconcile-0.10.2.dev386/reconcile/utils/merge_request_manager/merge_request_manager.py +0 -99
- qontract_reconcile-0.10.2.dev386/reconcile/utils/merge_request_manager/parser.py +0 -67
- qontract_reconcile-0.10.2.dev386/reconcile/utils/metrics.py +0 -571
- qontract_reconcile-0.10.2.dev386/reconcile/utils/models.py +0 -124
- qontract_reconcile-0.10.2.dev386/reconcile/utils/mr/notificator.py +0 -91
- qontract_reconcile-0.10.2.dev386/reconcile/utils/mr/user_maintenance.py +0 -163
- qontract_reconcile-0.10.2.dev386/reconcile/utils/oc.py +0 -1915
- qontract_reconcile-0.10.2.dev386/reconcile/utils/ocm/addons.py +0 -228
- qontract_reconcile-0.10.2.dev386/reconcile/utils/ocm/base.py +0 -638
- qontract_reconcile-0.10.2.dev386/reconcile/utils/ocm/cluster_groups.py +0 -62
- qontract_reconcile-0.10.2.dev386/reconcile/utils/ocm/identity_providers.py +0 -66
- qontract_reconcile-0.10.2.dev386/reconcile/utils/ocm/labels.py +0 -216
- qontract_reconcile-0.10.2.dev386/reconcile/utils/ocm/products.py +0 -767
- qontract_reconcile-0.10.2.dev386/reconcile/utils/ocm/service_log.py +0 -60
- qontract_reconcile-0.10.2.dev386/reconcile/utils/ocm/sre_capability_labels.py +0 -51
- qontract_reconcile-0.10.2.dev386/reconcile/utils/openshift_resource.py +0 -735
- qontract_reconcile-0.10.2.dev386/reconcile/utils/pagerduty_api.py +0 -241
- qontract_reconcile-0.10.2.dev386/reconcile/utils/promotion_state.py +0 -111
- qontract_reconcile-0.10.2.dev386/reconcile/utils/raw_github_api.py +0 -94
- qontract_reconcile-0.10.2.dev386/reconcile/utils/rhcsv2_certs.py +0 -116
- qontract_reconcile-0.10.2.dev386/reconcile/utils/rosa/session.py +0 -201
- qontract_reconcile-0.10.2.dev386/reconcile/utils/runtime/integration.py +0 -310
- qontract_reconcile-0.10.2.dev386/reconcile/utils/saasherder/interfaces.py +0 -425
- qontract_reconcile-0.10.2.dev386/reconcile/utils/saasherder/models.py +0 -435
- qontract_reconcile-0.10.2.dev386/reconcile/utils/saasherder/saasherder.py +0 -2259
- qontract_reconcile-0.10.2.dev386/reconcile/utils/slack_api.py +0 -554
- qontract_reconcile-0.10.2.dev386/reconcile/utils/sloth.py +0 -224
- qontract_reconcile-0.10.2.dev386/reconcile/utils/structs.py +0 -16
- qontract_reconcile-0.10.2.dev386/reconcile/utils/terraform_client.py +0 -928
- qontract_reconcile-0.10.2.dev386/reconcile/utils/terrascript_aws_client.py +0 -7326
- qontract_reconcile-0.10.2.dev386/reconcile/utils/unleash/server.py +0 -145
- qontract_reconcile-0.10.2.dev386/reconcile/utils/vault.py +0 -456
- qontract_reconcile-0.10.2.dev386/reconcile/utils/vcs.py +0 -293
- qontract_reconcile-0.10.2.dev386/reconcile/vault_replication.py +0 -519
- qontract_reconcile-0.10.2.dev386/tools/cli_commands/cost_report/cost_management_api.py +0 -155
- qontract_reconcile-0.10.2.dev386/tools/cli_commands/cost_report/view.py +0 -534
- qontract_reconcile-0.10.2.dev386/tools/cli_commands/erv2.py +0 -732
- qontract_reconcile-0.10.2.dev386/tools/qontract_cli.py +0 -4878
- qontract_reconcile-0.10.2.dev386/tools/template_validation.py +0 -107
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/README.md +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/acs_policies.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/aus/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/aus/aus_label_source.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/aus/healthchecks.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/aus/metrics.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/aus/node_pool_spec.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/aus/upgrades.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/aus/version_gate_approver.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/aus/version_gates/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/aus/version_gates/handler.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/aus/version_gates/ingress_gate_handler.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/aus/version_gates/ocp_gate_handler.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/automated_actions/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/automated_actions/config/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/aws_account_manager/README.md +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/aws_account_manager/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/aws_account_manager/merge_request_manager.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/aws_account_manager/metrics.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/aws_account_manager/utils.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/aws_ami_cleanup/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/aws_cloudwatch_log_retention/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/aws_ecr_image_pull_secrets.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/aws_iam_keys.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/aws_iam_password_reset.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/aws_saml_idp/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/aws_saml_roles/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/aws_support_cases_sos.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/aws_version_sync/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/aws_version_sync/merge_request_manager/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/aws_version_sync/merge_request_manager/merge_request.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/aws_version_sync/merge_request_manager/merge_request_manager.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/aws_version_sync/utils.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/blackbox_exporter_endpoint_monitoring.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/change_owners/README.md +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/change_owners/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/change_owners/approver.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/change_owners/change_types.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/change_owners/changes.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/change_owners/decision.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/change_owners/diff.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/change_owners/implicit_ownership.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/change_owners/self_service_roles.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/change_owners/tester.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/closedbox_endpoint_monitoring_base.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/cluster_auth_rhidp/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/cluster_auth_rhidp/integration.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/cluster_deployment_mapper.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/dashdotdb_base.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/dashdotdb_dvo.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/deadmanssnitch.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/dynatrace_token_provider/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/dynatrace_token_provider/dependencies.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/dynatrace_token_provider/metrics.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/dynatrace_token_provider/model.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/dynatrace_token_provider/ocm.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/dynatrace_token_provider/validate.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/email_sender.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/endpoints_discovery/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/external_resources/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/external_resources/aws.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/external_resources/factories.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/external_resources/integration_secrets_sync.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/external_resources/meta.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/fleet_labeler/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/fleet_labeler/dependencies.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/fleet_labeler/merge_request.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/fleet_labeler/meta.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/fleet_labeler/metrics.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/fleet_labeler/ocm.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/fleet_labeler/validate.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/fleet_labeler/vcs.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gabi_authorized_users.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/github_repo_invites.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/github_repo_permissions_validator.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/github_validator.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gitlab_fork_compliance.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gitlab_housekeeping.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gitlab_labeler.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gitlab_mr_sqs_consumer.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gitlab_owners.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gitlab_projects.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/glitchtip/README.md +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/glitchtip/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/glitchtip/integration.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/glitchtip/reconciler.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/glitchtip_project_alerts/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/glitchtip_project_dsn/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/glitchtip_project_dsn/integration.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/acs/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/advanced_upgrade_service/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/app_interface_metrics_exporter/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/app_sre_tekton_access_revalidation/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/automated_actions/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/aws_account_manager/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/aws_ami_cleanup/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/aws_cloudwatch_log_retention/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/aws_saml_idp/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/aws_saml_roles/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/aws_version_sync/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/change_owners/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/change_owners/queries/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/cluster_auth_rhidp/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/common/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/cost_report/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/dashdotdb_slo/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/dynatrace_token_provider/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/email_sender/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/endpoints_discovery/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/external_resources/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/external_resources/fragments/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/fleet_labeler/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/fragments/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/gcp/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/gitlab_members/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/glitchtip/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/glitchtip_project_alerts/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/integrations/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/jenkins_configs/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/jira/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/jira_permissions_validator/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/jumphosts/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/ldap_groups/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/maintenance/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/membershipsources/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/ocm_labels/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/openshift_cluster_bots/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/openshift_groups/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/openshift_serviceaccount_tokens/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/quay_membership/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/rhcs/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/rhidp/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/service_dependencies/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/sharding/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/skupper_network/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/slack_usergroups/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/slo_documents/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/status_board/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/statuspage/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/templating/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/terraform_cloudflare_dns/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/terraform_cloudflare_resources/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/terraform_cloudflare_users/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/terraform_init/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/terraform_repo/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/terraform_resources/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/terraform_tgw_attachments/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/unleash_feature_toggles/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/vault_instances/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/vault_policies/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/gql_definitions/vpc_peerings_validator/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/jenkins_base.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/jenkins_job_builder.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/jenkins_job_builds_cleaner.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/jenkins_roles.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/jenkins_webhooks.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/jenkins_webhooks_cleaner.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/ldap_groups/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/ldap_users.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/mr_client_gateway.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/ocm/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/ocm_additional_routers.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/ocm_addons.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/ocm_addons_upgrade_tests_trigger.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/ocm_external_configuration_labels.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/ocm_groups.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/ocm_internal_notifications/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/ocm_internal_notifications/integration.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/ocm_labels/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/ocm_update_recommended_version.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/ocm_upgrade_scheduler_org_updater.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/openshift_clusterrolebindings.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/openshift_groups.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/openshift_limitranges.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/openshift_network_policies.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/openshift_prometheus_rules.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/openshift_resourcequotas.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/openshift_resources.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/openshift_routes.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/openshift_saas_deploy_trigger_base.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/openshift_saas_deploy_trigger_cleaner.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/openshift_saas_deploy_trigger_configs.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/openshift_saas_deploy_trigger_images.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/openshift_saas_deploy_trigger_moving_commits.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/openshift_saas_deploy_trigger_upstream_jobs.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/openshift_tekton_resources.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/openshift_users.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/openshift_vault_secrets.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/oum/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/oum/base.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/oum/metrics.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/oum/providers.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/oum/standalone.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/prometheus_rules_tester/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/quay_base.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/quay_membership.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/quay_mirror_org.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/quay_permissions.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/quay_repos.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/query_validator.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/requests_sender.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/resource_scraper.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/resource_template_tester.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/rhidp/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/rhidp/metrics.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/rhidp/ocm_oidc_idp/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/rhidp/ocm_oidc_idp/base.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/rhidp/ocm_oidc_idp/integration.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/rhidp/ocm_oidc_idp/metrics.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/rhidp/sso_client/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/rhidp/sso_client/integration.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/rhidp/sso_client/metrics.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/run_integration.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/saas_auto_promotions_manager/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/saas_auto_promotions_manager/dependencies.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/saas_auto_promotions_manager/integration.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/saas_auto_promotions_manager/merge_request_manager/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/saas_auto_promotions_manager/merge_request_manager/batcher.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/saas_auto_promotions_manager/merge_request_manager/desired_state.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/saas_auto_promotions_manager/merge_request_manager/merge_request.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/saas_auto_promotions_manager/merge_request_manager/merge_request_manager_v2.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/saas_auto_promotions_manager/merge_request_manager/metrics.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/saas_auto_promotions_manager/merge_request_manager/mr_parser.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/saas_auto_promotions_manager/merge_request_manager/open_merge_requests.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/saas_auto_promotions_manager/meta.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/saas_auto_promotions_manager/publisher.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/saas_auto_promotions_manager/s3_exporter.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/saas_auto_promotions_manager/subscriber.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/saas_auto_promotions_manager/utils/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/saas_auto_promotions_manager/utils/saas_files_inventory.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/saas_file_validator.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/sendgrid_teammates.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/service_dependencies.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/signalfx_endpoint_monitoring.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/skupper_network/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/skupper_network/models.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/skupper_network/reconciler.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/skupper_network/site_controller.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/slack_base.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/sql_query.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/status.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/statuspage/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/statuspage/integration.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/statuspage/integrations/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/statuspage/integrations/components.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/statuspage/integrations/maintenances.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/statuspage/state.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/statuspage/status.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/templates/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/templates/aws_access_key_email.j2 +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/templates/email.yml.j2 +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/templates/jira-checkpoint-missinginfo.j2 +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/templates/rosa-classic-cluster-creation.sh.j2 +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/templates/rosa-hcp-cluster-creation.sh.j2 +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/templating/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/templating/lib/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/templating/lib/merge_request_manager.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/templating/lib/model.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/templating/validator.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/terraform_aws_route53.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/terraform_init/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/terraform_init/merge_request.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/terraform_init/merge_request_manager.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/terraform_users.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/terraform_vpc_resources/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/terraform_vpc_resources/merge_request.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/terraform_vpc_resources/merge_request_manager.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/alerting_services_settings.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/app_interface_custom_messages.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/app_interface_deadmanssnitch_settings.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/app_interface_metrics_exporter/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/app_interface_metrics_exporter/onboarding_status.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/app_interface_metrics_exporter/terraform_repo.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/app_interface_repo_url.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/app_interface_roles.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/app_interface_state_settings.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/app_interface_vault_settings.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/app_quay_repos_escalation_policies.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/apps.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/aws_cloudwatch_log_retention/aws_accounts.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/aws_vpc_requests.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/aws_vpcs.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/cloudflare.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/clusters.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/clusters_minimal.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/clusters_with_dms.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/clusters_with_peering.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/cost_report/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/cost_report/settings.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/dynatrace.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/dynatrace_environments.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/dynatrace_token_provider_token_specs.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/external_resources.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/fleet_labels.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/get_state_aws_account.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/github_orgs.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/gitlab_instances.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/glitchtip.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/jenkins.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/jira.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/jira_settings.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/jiralert_settings.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/ldap_settings.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/namespaces.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/namespaces_minimal.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/ocm.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/pagerduty_instances.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/quay.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/repos.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/reserved_networks.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/rhcs_provider_settings.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/slack.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/slo_documents.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/smtp.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/tekton_pipeline_providers.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/terraform_namespaces.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/terraform_tgw_attachments/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/terraform_tgw_attachments/aws_accounts.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/unleash.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/users.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/users_with_paths.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/typed_queries/vault.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/unleash_feature_toggles/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/acs/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/acs/rbac.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/aggregated_list.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/amtool.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/aws_api_typed/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/aws_api_typed/account.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/aws_api_typed/cloudformation.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/aws_api_typed/dynamodb.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/aws_api_typed/iam.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/aws_api_typed/s3.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/aws_api_typed/service_quotas.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/aws_api_typed/sts.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/aws_api_typed/support.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/aws_helper.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/batches.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/cloud_resource_best_practice/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/cloud_resource_best_practice/aws_rds.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/clusterhealth/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/clusterhealth/providerbase.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/clusterhealth/telemeter.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/config.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/constants.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/datetime_util.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/defer.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/differ.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/disabled_integrations.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/dnsutils.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/dynatrace/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/dynatrace/client.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/elasticsearch_exceptions.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/environ.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/exceptions.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/expiration.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/extended_early_exit.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/external_resource_spec.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/external_resources.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/filtering.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/git.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/github_api.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/glitchtip/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/gpg.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/grouping.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/helm.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/helpers.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/imap_client.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/internal_groups/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/jenkins_api.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/jinja2/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/jinja2/extensions.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/jinja2/filters.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/jjb_client.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/jobcontroller/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/jsonpath.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/jump_host.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/keycloak.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/ldap_client.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/lean_terraform_client.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/make.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/membershipsources/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/merge_request_manager/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/mr/README.md +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/mr/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/mr/app_interface_reporter.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/mr/app_sre_tekton_access_report.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/mr/aws_access.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/mr/base.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/mr/clusters_updates.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/mr/glitchtip_access_reporter.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/mr/labels.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/mr/ocm_update_recommended_version.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/mr/ocm_upgrade_scheduler_org_updates.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/mr/promote_qontract.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/mr/update_access_report_base.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/oauth2_backend_application_session.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/oc_connection_parameters.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/oc_filters.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/oc_map.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/ocm/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/ocm/clusters.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/ocm/label_sources.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/ocm/manifests.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/ocm/ocm.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/ocm/search_filters.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/ocm/status_board.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/ocm/subscriptions.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/ocm/syncsets.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/ocm/upgrades.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/ocm_base_client.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/openssl.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/output.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/parse_dhms_duration.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/password_validator.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/prometheus.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/promtool.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/quay_api.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/quay_mirror.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/repo_owners.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/rest_api_base.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/rosa/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/rosa/rosa_cli.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/ruamel.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/runtime/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/runtime/desired_state_diff.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/runtime/environment.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/runtime/meta.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/runtime/runner.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/runtime/sharding.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/saasherder/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/secret_reader.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/semver_helper.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/sharding.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/slo_document_manager.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/smtp_client.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/sqs_gateway.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/state.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/terraform/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/terraform/config.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/terraform/config_client.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/terrascript/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/terrascript/cloudflare_client.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/terrascript/cloudflare_resources.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/terrascript/models.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/terrascript/resources.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/three_way_diff_strategy.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/throughput.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/unleash/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/utils/unleash/client.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/reconcile/vpc_peerings_validator.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/tools/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/tools/alert_report.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/tools/app_interface_metrics_exporter.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/tools/app_interface_reporter.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/tools/app_sre_tekton_access_reporter.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/tools/app_sre_tekton_access_revalidation.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/tools/cli_commands/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/tools/cli_commands/container_images_report.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/tools/cli_commands/cost_report/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/tools/cli_commands/cost_report/aws.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/tools/cli_commands/cost_report/model.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/tools/cli_commands/cost_report/openshift.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/tools/cli_commands/cost_report/openshift_cost_optimization.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/tools/cli_commands/cost_report/response.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/tools/cli_commands/cost_report/util.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/tools/cli_commands/gpg_encrypt.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/tools/cli_commands/systems_and_tools.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/tools/glitchtip_access_reporter.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/tools/glitchtip_access_revalidation.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/tools/saas_metrics_exporter/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/tools/saas_metrics_exporter/commit_distance/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/tools/saas_metrics_exporter/commit_distance/channel.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/tools/saas_metrics_exporter/commit_distance/commit_distance.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/tools/saas_metrics_exporter/commit_distance/metrics.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/tools/saas_metrics_exporter/main.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/tools/saas_promotion_state/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/tools/saas_promotion_state/saas_promotion_state.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/tools/sre_checkpoints/__init__.py +0 -0
- {qontract_reconcile-0.10.2.dev386 → qontract_reconcile-0.10.2.dev428}/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.dev428
|
|
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==32.0.1
|
|
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~=2.12.3
|
|
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.2.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
|
+
[](https://github.com/astral-sh/ruff)
|
|
70
|
+
[](https://github.com/astral-sh/uv)
|
|
71
|
+
[][pypi-link]
|
|
72
|
+
[![PyPI platforms][pypi-platforms]][pypi-link]
|
|
73
|
+

|
|
74
|
+
[](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
|