Last active
August 29, 2015 14:11
-
-
Save micktwomey/ab8e9f92dbd2fc996594 to your computer and use it in GitHub Desktop.
Deploy config keys not explicitly parsed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import argparse | |
| import collections | |
| import base64 | |
| import json | |
| import logging | |
| import sys | |
| import github3 | |
| import yaml | |
| WHITELIST = [s.strip() for s in """ | |
| name | |
| buildName | |
| artifactId | |
| appRoot | |
| env | |
| loadBalancers | |
| loadBalancer | |
| warmupUrl | |
| warmupTimeout | |
| warmupCheckTimeout | |
| healthcheckUrl | |
| procfile | |
| servers | |
| nginxExtraConfigs | |
| nginx | |
| singleProcessRunning | |
| owners | |
| type | |
| rewriteAppRootTo | |
| includeConfigs | |
| zkGroup | |
| hipchat_room_id_to_notify | |
| hipchatRoomId | |
| smokeTests | |
| http | |
| logging | |
| loadBalancerProjectName | |
| numRetriesOnFailure | |
| healthcheckIntervalSeconds | |
| healthcheckTimeoutSeconds | |
| deployHealthTimeoutSeconds | |
| considerTaskHealthyAfterRunningForSeconds | |
| projects | |
| mesosApiVersion | |
| hipchat | |
| sigKillProcessesAfterMillis | |
| mesosUserOverride | |
| buildResolution | |
| killOldNonLongRunningTasksAfterMillis | |
| traceviewAgentConfig | |
| routedPaths | |
| loadBalancerRoutes | |
| github | |
| postDeployTests | |
| staticProjectName | |
| jira | |
| rodanConfig | |
| numBuildsToKeep | |
| skipHealthchecksOnDeploy | |
| postDeployHooks | |
| detailed_smoke_tests | |
| """.split() if s.strip()] | |
| def main(): | |
| parser = argparse.ArgumentParser() | |
| parser.add_argument("github_token", help="GitHub personal access token to use (you can create one in https://git.hubteam.com/settings/applications#personal-access-tokens)") | |
| # parser.add_argument("hapikey", help="HubSpot hapikey to use to access the registry") | |
| args = parser.parse_args() | |
| logging.basicConfig(level=logging.INFO, format="%(message)s") | |
| logging.getLogger("github3").setLevel(logging.WARNING) | |
| github = github3.enterprise_login(token=args.github_token, url='https://git.hubteam.com') | |
| unknown = collections.defaultdict(list) | |
| unknown_keys = collections.Counter() | |
| for repo in github.organization("HubSpot").repositories(): | |
| for filename, contents in repo.directory_contents("hubspot.deploy"): | |
| try: | |
| if not filename.endswith(".yaml"): | |
| continue | |
| logging.debug(filename) | |
| path = contents.path | |
| contents = repo.file_contents(contents.path) | |
| contents = base64.b64decode(contents.content) | |
| decoded_contents = yaml.load(contents) | |
| for key in decoded_contents: | |
| if key not in WHITELIST: | |
| logging.info("https://git.hubteam.com/{}/blob/master/hubspot.deploy/{} {} is unknown".format(repo.full_name, filename, key)) | |
| unknown[key].append((repo.full_name, path)) | |
| unknown_keys[key] += 1 | |
| except Exception: | |
| logging.exception("Problem parsing {} {}".format(repo.full_name, filename)) | |
| json.dump(unknown, sys.stdout) | |
| for (count, key) in sorted(unknown_keys.iteritems(), key=lambda x: (x[1], x[0])): | |
| logging.info("{} - {}".format(key, count)) | |
| if __name__ == '__main__': | |
| main() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 1 - cooldownAfterFailures | |
| 1 - gunicorn | |
| 1 - jobs | |
| 1 - livePaths | |
| 1 - loadBalancerOpts | |
| 1 - queues | |
| 1 - sandboxDefaultsToTaskId | |
| 1 - seleniumName | |
| 1 - southMigrationFolders | |
| 1 - staticMajorVersion | |
| 1 - static_project_name | |
| 1 - successString | |
| 1 - virtual_env_name | |
| 2 - guthub | |
| 3 - auth | |
| 3 - django_settings_module | |
| 3 - masterAuthKey | |
| 3 - nonRequiredPostDeployTests | |
| 3 - previousNames | |
| 3 - scm | |
| 3 - staticSubprojects | |
| 3 - statusUrl | |
| 4 - database | |
| 4 - defaultSlavePlacement | |
| 4 - forcePorts | |
| 4 - loadBalancerQueryParams | |
| 4 - loadBalancerUri | |
| 4 - mesos | |
| 4 - ports | |
| 4 - proc | |
| 4 - s3 | |
| 4 - sentry | |
| 4 - smoke_tests | |
| 4 - smtp | |
| 4 - ui | |
| 5 - contextPath | |
| 5 - cosPages | |
| 5 - jenkinsProject | |
| 5 - warmup_url | |
| 6 - appPrefix | |
| 6 - proxyConfig | |
| 6 - rodan_config | |
| 8 - major_version | |
| 8 - server | |
| 8 - zookeeper | |
| 9 - loggers | |
| 12 - mail_to | |
| 16 - repo | |
| 16 - repoPath | |
| 16 - scmType | |
| 27 - enableSeleniumBlocking | |
| 33 - load_balancer | |
| 34 - branch | |
| 36 - app_root | |
| 59 - jenkins | |
| 64 - alerts | |
| 99 - logrotate | |
| 102 - description |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "scm": [ | |
| [ | |
| "HubSpot/pictos", | |
| "hubspot.deploy/pictos_app.yaml" | |
| ], | |
| [ | |
| "HubSpot/hubspot_public_assets", | |
| "hubspot.deploy/update_browser_static_page.yaml" | |
| ], | |
| [ | |
| "HubSpot/support_widget", | |
| "hubspot.deploy/support_widget.yaml" | |
| ] | |
| ], | |
| "loggers": [ | |
| [ | |
| "HubSpot/IPLocationService", | |
| "hubspot.deploy/IPLocationService.yaml" | |
| ], | |
| [ | |
| "HubSpot/Territories", | |
| "hubspot.deploy/TerritoriesBidenCompanyUpdateKafkaJob.yaml" | |
| ], | |
| [ | |
| "HubSpot/Territories", | |
| "hubspot.deploy/TerritoriesEnrichmentPollJob.yaml" | |
| ], | |
| [ | |
| "HubSpot/Territories", | |
| "hubspot.deploy/TerritoriesEnrichmentTasks.yaml" | |
| ], | |
| [ | |
| "HubSpot/Territories", | |
| "hubspot.deploy/TerritoriesJobs.yaml" | |
| ], | |
| [ | |
| "HubSpot/Territories", | |
| "hubspot.deploy/TerritoriesLeadAssignmentPollJob.yaml" | |
| ], | |
| [ | |
| "HubSpot/Territories", | |
| "hubspot.deploy/TerritoriesLeadEnrichmentPollJob.yaml" | |
| ], | |
| [ | |
| "HubSpot/Territories", | |
| "hubspot.deploy/TerritoriesOneOffJobs.yaml" | |
| ], | |
| [ | |
| "HubSpot/Territories", | |
| "hubspot.deploy/TerritoriesResetDomainTask.yaml" | |
| ] | |
| ], | |
| "ui": [ | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/Singularity3x3.yaml" | |
| ], | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/SingularityProd3x3.yaml" | |
| ], | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/SingularityTest3x4.yaml" | |
| ], | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/SingularityTest3x5.yaml" | |
| ] | |
| ], | |
| "livePaths": [ | |
| [ | |
| "HubSpot/comments_embed", | |
| "hubspot.deploy/comments_embed.yaml" | |
| ] | |
| ], | |
| "appPrefix": [ | |
| [ | |
| "HubSpot/whodunit", | |
| "hubspot.deploy/whodunit_static.yaml" | |
| ], | |
| [ | |
| "HubSpot/longbow_search", | |
| "hubspot.deploy/longbow_search.yaml" | |
| ], | |
| [ | |
| "HubSpot/nps_static", | |
| "hubspot.deploy/nps_static.yaml" | |
| ], | |
| [ | |
| "HubSpot/territories_static", | |
| "hubspot.deploy/CompanyInfoEmbedUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/territories_static", | |
| "hubspot.deploy/CompanyInfoEnrichUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/territories_static", | |
| "hubspot.deploy/TerritoriesDashboard.yaml" | |
| ] | |
| ], | |
| "mesos": [ | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/Singularity3x3.yaml" | |
| ], | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/SingularityProd3x3.yaml" | |
| ], | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/SingularityTest3x4.yaml" | |
| ], | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/SingularityTest3x5.yaml" | |
| ] | |
| ], | |
| "contextPath": [ | |
| [ | |
| "HubSpot/pictos", | |
| "hubspot.deploy/pictos_app.yaml" | |
| ], | |
| [ | |
| "HubSpot/hubspot_public_assets", | |
| "hubspot.deploy/update_browser_static_page.yaml" | |
| ], | |
| [ | |
| "HubSpot/support_widget", | |
| "hubspot.deploy/support_widget.yaml" | |
| ], | |
| [ | |
| "HubSpot/BestJS", | |
| "hubspot.deploy/BestJS.yaml" | |
| ], | |
| [ | |
| "HubSpot/file_manager", | |
| "hubspot.deploy/file_manager.yaml" | |
| ] | |
| ], | |
| "staticSubprojects": [ | |
| [ | |
| "HubSpot/Content", | |
| "hubspot.deploy/content_web_proc.yaml" | |
| ], | |
| [ | |
| "HubSpot/contacts_web", | |
| "hubspot.deploy/contacts_web.yaml" | |
| ], | |
| [ | |
| "HubSpot/marketplace_web", | |
| "hubspot.deploy/marketplace_web.yaml" | |
| ] | |
| ], | |
| "loadBalancerOpts": [ | |
| [ | |
| "HubSpot/opentsdb", | |
| "hubspot.deploy/opentsdb-web.yaml" | |
| ] | |
| ], | |
| "warmup_url": [ | |
| [ | |
| "HubSpot/reliance", | |
| "hubspot.deploy/reliance.yaml" | |
| ], | |
| [ | |
| "HubSpot/longbow", | |
| "hubspot.deploy/longbow.yaml" | |
| ], | |
| [ | |
| "HubSpot/HSDocServer", | |
| "hubspot.deploy/HSDoc.yaml" | |
| ], | |
| [ | |
| "HubSpot/signals_case_listener", | |
| "hubspot.deploy/signals_case_listener.yaml" | |
| ], | |
| [ | |
| "HubSpot/BuckyOSServer", | |
| "hubspot.deploy/BuckyOSServer.yaml" | |
| ] | |
| ], | |
| "logrotate": [ | |
| [ | |
| "HubSpot/FormSubmissionWeb", | |
| "hubspot.deploy/FormSubmissionWeb.yaml" | |
| ], | |
| [ | |
| "HubSpot/EmbedRestWeb", | |
| "hubspot.deploy/EmbedRestWeb.yaml" | |
| ], | |
| [ | |
| "HubSpot/Broadcast", | |
| "hubspot.deploy/BroadcastApiWeb.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts", | |
| "hubspot.deploy/ContactsApiWeb.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts", | |
| "hubspot.deploy/ContactsFutureListSegKafka.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts", | |
| "hubspot.deploy/ContactsHadoopContactsWalPuller.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts", | |
| "hubspot.deploy/ContactsHadoopDailyJobs.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts", | |
| "hubspot.deploy/ContactsHadoopDynamicListSegJobs.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts", | |
| "hubspot.deploy/ContactsHadoopFormSubmissionWalJobs.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts", | |
| "hubspot.deploy/ContactsHadoopIdentityWalJobs.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts", | |
| "hubspot.deploy/ContactsHadoopMiscContactsWalJobs.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts", | |
| "hubspot.deploy/ContactsHadoopPurgeTasks.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts", | |
| "hubspot.deploy/ContactsHadoopSocialMonitoredListJobs.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts", | |
| "hubspot.deploy/ContactsHadoopTasks.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts", | |
| "hubspot.deploy/ContactsImportHadoop.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts", | |
| "hubspot.deploy/ContactsKafkaWalAudit.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts", | |
| "hubspot.deploy/ContactsLeadScoringKafka.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts", | |
| "hubspot.deploy/ContactsListHadoop.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts", | |
| "hubspot.deploy/ContactsListsKafka-companies.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts", | |
| "hubspot.deploy/ContactsListsKafka-deals.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts", | |
| "hubspot.deploy/ContactsListsKafka-metrics.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts", | |
| "hubspot.deploy/ContactsListsKafka-penaltybox.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts", | |
| "hubspot.deploy/ContactsListsKafka.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts", | |
| "hubspot.deploy/ContactsTasks-billing.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts", | |
| "hubspot.deploy/ContactsTasks-exports.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts", | |
| "hubspot.deploy/ContactsTasks-parallel-machines.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts", | |
| "hubspot.deploy/ContactsTasks-single-machine.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts", | |
| "hubspot.deploy/ContactsUpdatesRequestsKafka.yaml" | |
| ], | |
| [ | |
| "HubSpot/ProspectGrader", | |
| "hubspot.deploy/ProspectGrader.yaml" | |
| ], | |
| [ | |
| "HubSpot/Email", | |
| "hubspot.deploy/EmailApiWebBatch.yaml" | |
| ], | |
| [ | |
| "HubSpot/Content", | |
| "hubspot.deploy/blog_publishing_daemons.yaml" | |
| ], | |
| [ | |
| "HubSpot/Companies", | |
| "hubspot.deploy/CompaniesKafka.yaml" | |
| ], | |
| [ | |
| "HubSpot/Companies", | |
| "hubspot.deploy/CompaniesOwnerKafka.yaml" | |
| ], | |
| [ | |
| "HubSpot/SocialMonitoring", | |
| "hubspot.deploy/SocialMonitoringProcessingService.yaml" | |
| ], | |
| [ | |
| "HubSpot/SocialMonitoring", | |
| "hubspot.deploy/SocialMonitoringService.yaml" | |
| ], | |
| [ | |
| "HubSpot/TaskService", | |
| "hubspot.deploy/TaskServiceWorker.yaml" | |
| ], | |
| [ | |
| "HubSpot/Automation", | |
| "hubspot.deploy/AutomationActivityKafkaJob.yaml" | |
| ], | |
| [ | |
| "HubSpot/Automation", | |
| "hubspot.deploy/AutomationApiWeb.yaml" | |
| ], | |
| [ | |
| "HubSpot/Automation", | |
| "hubspot.deploy/AutomationContactKafkaJob.yaml" | |
| ], | |
| [ | |
| "HubSpot/Automation", | |
| "hubspot.deploy/AutomationContactLifecycleUpdateKafkaJob.yaml" | |
| ], | |
| [ | |
| "HubSpot/Automation", | |
| "hubspot.deploy/AutomationJobs.yaml" | |
| ], | |
| [ | |
| "HubSpot/Automation", | |
| "hubspot.deploy/AutomationWorkers.yaml" | |
| ], | |
| [ | |
| "HubSpot/Automation", | |
| "hubspot.deploy/AutomationWorkflowExecution.yaml" | |
| ], | |
| [ | |
| "HubSpot/DeployService", | |
| "hubspot.deploy/DeployGithubEventMonitor.yaml" | |
| ], | |
| [ | |
| "HubSpot/DeployService", | |
| "hubspot.deploy/DeployWebHookMonitor-v1.yaml" | |
| ], | |
| [ | |
| "HubSpot/DeployService", | |
| "hubspot.deploy/DeployWebHookMonitor.yaml" | |
| ], | |
| [ | |
| "HubSpot/EventTracking", | |
| "hubspot.deploy/EventTrackingDurationService.yaml" | |
| ], | |
| [ | |
| "HubSpot/InternalEmail", | |
| "hubspot.deploy/InternalEmailCronJobs.yaml" | |
| ], | |
| [ | |
| "HubSpot/InternalEmail", | |
| "hubspot.deploy/InternalEmailDaemonJobs.yaml" | |
| ], | |
| [ | |
| "HubSpot/InternalEmail", | |
| "hubspot.deploy/InternalEmailService.yaml" | |
| ], | |
| [ | |
| "HubSpot/Zorse", | |
| "hubspot.deploy/ZorseApiWeb.yaml" | |
| ], | |
| [ | |
| "HubSpot/Goals", | |
| "hubspot.deploy/GoalsApiWeb.yaml" | |
| ], | |
| [ | |
| "HubSpot/Goals", | |
| "hubspot.deploy/GoalsJobs.yaml" | |
| ], | |
| [ | |
| "HubSpot/DisasterRecovery", | |
| "hubspot.deploy/AnalyticsHLogPersister.yaml" | |
| ], | |
| [ | |
| "HubSpot/DisasterRecovery", | |
| "hubspot.deploy/ContactsHLogPersister.yaml" | |
| ], | |
| [ | |
| "HubSpot/DisasterRecovery", | |
| "hubspot.deploy/EmailHLogPersister.yaml" | |
| ], | |
| [ | |
| "HubSpot/Deals", | |
| "hubspot.deploy/DealsKafka.yaml" | |
| ], | |
| [ | |
| "HubSpot/KafkaPersister", | |
| "hubspot.deploy/BidenKafkaPersister.yaml" | |
| ], | |
| [ | |
| "HubSpot/KafkaPersister", | |
| "hubspot.deploy/EmailKafkaPersister.yaml" | |
| ], | |
| [ | |
| "HubSpot/KafkaPersister", | |
| "hubspot.deploy/KafkaPersister.yaml" | |
| ], | |
| [ | |
| "HubSpot/KafkaPersister", | |
| "hubspot.deploy/SecondaryKafkaPersister.yaml" | |
| ], | |
| [ | |
| "HubSpot/KafkaPersister", | |
| "hubspot.deploy/SignalsKafkaPersister.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts-Search", | |
| "hubspot.deploy/CompaniesSearchKafka.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts-Search", | |
| "hubspot.deploy/ContactsPrioritySearchKafka.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts-Search", | |
| "hubspot.deploy/ContactsSearchElasticSearchKafka-migration.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts-Search", | |
| "hubspot.deploy/ContactsSearchElasticSearchKafka.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts-Search", | |
| "hubspot.deploy/ContactsSearchKafka.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts-Search", | |
| "hubspot.deploy/ContactsSearchLoadTest.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts-Search", | |
| "hubspot.deploy/ContactsSearchTasks.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts-Search", | |
| "hubspot.deploy/DealsSearchKafka.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts-Search", | |
| "hubspot.deploy/EngagementsSearchKafka.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts-Search", | |
| "hubspot.deploy/InboundDbElasticSEarchKafka-migration.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts-Search", | |
| "hubspot.deploy/InboundDbElasticSearchKafka.yaml" | |
| ], | |
| [ | |
| "HubSpot/Sales", | |
| "hubspot.deploy/SalesKafka.yaml" | |
| ], | |
| [ | |
| "HubSpot/cms_blog_notify", | |
| "hubspot.deploy/cms_blog_notify.yaml" | |
| ], | |
| [ | |
| "HubSpot/assist", | |
| "hubspot.deploy/AssistApiWeb.yaml" | |
| ], | |
| [ | |
| "HubSpot/assist", | |
| "hubspot.deploy/AssistEmbedGeneratorService.yaml" | |
| ], | |
| [ | |
| "HubSpot/Owners", | |
| "hubspot.deploy/OwnersService.yaml" | |
| ], | |
| [ | |
| "HubSpot/Territories", | |
| "hubspot.deploy/TerritoriesBidenCompanyUpdateKafkaJob.yaml" | |
| ], | |
| [ | |
| "HubSpot/Territories", | |
| "hubspot.deploy/TerritoriesEnrichmentPollJob.yaml" | |
| ], | |
| [ | |
| "HubSpot/Territories", | |
| "hubspot.deploy/TerritoriesEnrichmentTasks.yaml" | |
| ], | |
| [ | |
| "HubSpot/Territories", | |
| "hubspot.deploy/TerritoriesJobs.yaml" | |
| ], | |
| [ | |
| "HubSpot/Territories", | |
| "hubspot.deploy/TerritoriesLeadAssignmentPollJob.yaml" | |
| ], | |
| [ | |
| "HubSpot/Territories", | |
| "hubspot.deploy/TerritoriesLeadEnrichmentPollJob.yaml" | |
| ], | |
| [ | |
| "HubSpot/Territories", | |
| "hubspot.deploy/TerritoriesOneOffJobs.yaml" | |
| ], | |
| [ | |
| "HubSpot/Territories", | |
| "hubspot.deploy/TerritoriesResetDomainTask.yaml" | |
| ], | |
| [ | |
| "HubSpot/Territories", | |
| "hubspot.deploy/TerritoriesService.yaml" | |
| ], | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/Singularity3x3.yaml" | |
| ], | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/SingularityProd3x3.yaml" | |
| ], | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/SingularityTest3x4.yaml" | |
| ], | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/SingularityTest3x5.yaml" | |
| ], | |
| [ | |
| "HubSpot/Engagements", | |
| "hubspot.deploy/EngagementsKafka.yaml" | |
| ], | |
| [ | |
| "HubSpot/Engagements", | |
| "hubspot.deploy/EngagementsScheduledTasksKafka.yaml" | |
| ], | |
| [ | |
| "HubSpot/CompanyProspects", | |
| "hubspot.deploy/CompanyProspectsKafka.yaml" | |
| ], | |
| [ | |
| "HubSpot/PartnerSync", | |
| "hubspot.deploy/PartnerSyncAccountPoller.yaml" | |
| ], | |
| [ | |
| "HubSpot/PartnerSync", | |
| "hubspot.deploy/PartnerSyncAccountWorker.yaml" | |
| ], | |
| [ | |
| "HubSpot/PartnerSync", | |
| "hubspot.deploy/PartnerSyncContactsProcessingWorker.yaml" | |
| ], | |
| [ | |
| "HubSpot/IntegrationsPlatform", | |
| "hubspot.deploy/IntegrationsPlatformKafkaElasticSearchUpdater.yaml" | |
| ], | |
| [ | |
| "HubSpot/content_blog_importer", | |
| "hubspot.deploy/content_blog_import_daemon_dk.yaml" | |
| ] | |
| ], | |
| "previousNames": [ | |
| [ | |
| "HubSpot/ProspectGrader", | |
| "hubspot.deploy/ProspectGrader.yaml" | |
| ], | |
| [ | |
| "HubSpot/DeployService", | |
| "hubspot.deploy/DeployService-v1.yaml" | |
| ], | |
| [ | |
| "HubSpot/DeployService", | |
| "hubspot.deploy/DeployService.yaml" | |
| ] | |
| ], | |
| "sandboxDefaultsToTaskId": [ | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/SingularityTest3x5.yaml" | |
| ] | |
| ], | |
| "sentry": [ | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/Singularity3x3.yaml" | |
| ], | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/SingularityProd3x3.yaml" | |
| ], | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/SingularityTest3x4.yaml" | |
| ], | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/SingularityTest3x5.yaml" | |
| ] | |
| ], | |
| "gunicorn": [ | |
| [ | |
| "HubSpot/post_deploy_watcher", | |
| "hubspot.deploy/post_deploy_watcher.yaml" | |
| ] | |
| ], | |
| "cosPages": [ | |
| [ | |
| "HubSpot/hubspot_public_assets", | |
| "hubspot.deploy/home_page.yaml" | |
| ], | |
| [ | |
| "HubSpot/hubspot_public_assets", | |
| "hubspot.deploy/pricing_comparison-v2.yaml" | |
| ], | |
| [ | |
| "HubSpot/hubspot_public_assets", | |
| "hubspot.deploy/pricing_pages.yaml" | |
| ], | |
| [ | |
| "HubSpot/hubspot_public_assets", | |
| "hubspot.deploy/product_pages.yaml" | |
| ], | |
| [ | |
| "HubSpot/hubspot_public_assets", | |
| "hubspot.deploy/state_of_inbound.yaml" | |
| ] | |
| ], | |
| "smtp": [ | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/Singularity3x3.yaml" | |
| ], | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/SingularityProd3x3.yaml" | |
| ], | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/SingularityTest3x4.yaml" | |
| ], | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/SingularityTest3x5.yaml" | |
| ] | |
| ], | |
| "s3": [ | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/Singularity3x3.yaml" | |
| ], | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/SingularityProd3x3.yaml" | |
| ], | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/SingularityTest3x4.yaml" | |
| ], | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/SingularityTest3x5.yaml" | |
| ] | |
| ], | |
| "alerts": [ | |
| [ | |
| "HubSpot/Broadcast", | |
| "hubspot.deploy/BroadcastApiWeb.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts", | |
| "hubspot.deploy/ContactsFutureListSegKafka.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts", | |
| "hubspot.deploy/ContactsHadoopPurgeTasks.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts", | |
| "hubspot.deploy/ContactsHadoopTasks.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts", | |
| "hubspot.deploy/ContactsKafkaWalAudit.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts", | |
| "hubspot.deploy/ContactsLeadScoringKafka.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts", | |
| "hubspot.deploy/ContactsListsKafka-companies.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts", | |
| "hubspot.deploy/ContactsListsKafka-deals.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts", | |
| "hubspot.deploy/ContactsListsKafka-metrics.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts", | |
| "hubspot.deploy/ContactsListsKafka-penaltybox.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts", | |
| "hubspot.deploy/ContactsListsKafka.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts", | |
| "hubspot.deploy/ContactsTasks-billing.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts", | |
| "hubspot.deploy/ContactsTasks-exports.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts", | |
| "hubspot.deploy/ContactsTasks-parallel-machines.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts", | |
| "hubspot.deploy/ContactsTasks-single-machine.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts", | |
| "hubspot.deploy/ContactsUpdatesRequestsKafka.yaml" | |
| ], | |
| [ | |
| "HubSpot/ProspectGrader", | |
| "hubspot.deploy/ProspectGrader.yaml" | |
| ], | |
| [ | |
| "HubSpot/Analytics", | |
| "hubspot.deploy/AnalyticsKafkaAssociateJobs.yaml" | |
| ], | |
| [ | |
| "HubSpot/Analytics", | |
| "hubspot.deploy/AnalyticsKafkaContactDetailsJobs.yaml" | |
| ], | |
| [ | |
| "HubSpot/Analytics", | |
| "hubspot.deploy/AnalyticsKafkaRevisitJobs.yaml" | |
| ], | |
| [ | |
| "HubSpot/Analytics", | |
| "hubspot.deploy/AnalyticsKafkaWalJobs.yaml" | |
| ], | |
| [ | |
| "HubSpot/Salesforce", | |
| "hubspot.deploy/SalesforceConnectorApiWeb.yaml" | |
| ], | |
| [ | |
| "HubSpot/Progression", | |
| "hubspot.deploy/ProgressionKafkaWorkers.yaml" | |
| ], | |
| [ | |
| "HubSpot/Companies", | |
| "hubspot.deploy/CompaniesKafka.yaml" | |
| ], | |
| [ | |
| "HubSpot/Companies", | |
| "hubspot.deploy/CompaniesService.yaml" | |
| ], | |
| [ | |
| "HubSpot/Companies", | |
| "hubspot.deploy/CompaniesTasks.yaml" | |
| ], | |
| [ | |
| "HubSpot/SocialMonitoring", | |
| "hubspot.deploy/SocialMonitoringProcessingService.yaml" | |
| ], | |
| [ | |
| "HubSpot/SocialMonitoring", | |
| "hubspot.deploy/SocialMonitoringService.yaml" | |
| ], | |
| [ | |
| "HubSpot/DeployService", | |
| "hubspot.deploy/DeployService-refactor_deploy_registry.yaml" | |
| ], | |
| [ | |
| "HubSpot/DeployService", | |
| "hubspot.deploy/DeployService-v1.yaml" | |
| ], | |
| [ | |
| "HubSpot/DeployService", | |
| "hubspot.deploy/DeployService.yaml" | |
| ], | |
| [ | |
| "HubSpot/Haystack", | |
| "hubspot.deploy/Haystack.yaml" | |
| ], | |
| [ | |
| "HubSpot/TrialUsage", | |
| "hubspot.deploy/TrialUsageService.yaml" | |
| ], | |
| [ | |
| "HubSpot/GoToWebinar", | |
| "hubspot.deploy/GoToWebinarService.yaml" | |
| ], | |
| [ | |
| "HubSpot/Zapier", | |
| "hubspot.deploy/ZapierService.yaml" | |
| ], | |
| [ | |
| "HubSpot/SurveyMonkey", | |
| "hubspot.deploy/SurveyMonkeyService.yaml" | |
| ], | |
| [ | |
| "HubSpot/Deals", | |
| "hubspot.deploy/DealsKafka.yaml" | |
| ], | |
| [ | |
| "HubSpot/KafkaPersister", | |
| "hubspot.deploy/BidenKafkaPersister.yaml" | |
| ], | |
| [ | |
| "HubSpot/KafkaPersister", | |
| "hubspot.deploy/EmailKafkaPersister.yaml" | |
| ], | |
| [ | |
| "HubSpot/KafkaPersister", | |
| "hubspot.deploy/KafkaPersister.yaml" | |
| ], | |
| [ | |
| "HubSpot/KafkaPersister", | |
| "hubspot.deploy/SignalsKafkaPersister.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts-Search", | |
| "hubspot.deploy/CompaniesSearchKafka.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts-Search", | |
| "hubspot.deploy/ContactsPrioritySearchKafka.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts-Search", | |
| "hubspot.deploy/ContactsSearchElasticSearchKafka-migration.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts-Search", | |
| "hubspot.deploy/ContactsSearchElasticSearchKafka.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts-Search", | |
| "hubspot.deploy/ContactsSearchKafka.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts-Search", | |
| "hubspot.deploy/ContactsSearchLoadTest.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts-Search", | |
| "hubspot.deploy/ContactsSearchTasks.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts-Search", | |
| "hubspot.deploy/DealsSearchKafka.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts-Search", | |
| "hubspot.deploy/EngagementsSearchKafka.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts-Search", | |
| "hubspot.deploy/InboundDbElasticSEarchKafka-migration.yaml" | |
| ], | |
| [ | |
| "HubSpot/Contacts-Search", | |
| "hubspot.deploy/InboundDbElasticSearchKafka.yaml" | |
| ], | |
| [ | |
| "HubSpot/Twilio", | |
| "hubspot.deploy/TwilioService.yaml" | |
| ], | |
| [ | |
| "HubSpot/Territories", | |
| "hubspot.deploy/TerritoriesService.yaml" | |
| ], | |
| [ | |
| "HubSpot/GoogleDrive", | |
| "hubspot.deploy/GoogleDriveService.yaml" | |
| ], | |
| [ | |
| "HubSpot/Toponym", | |
| "hubspot.deploy/ToponymService.yaml" | |
| ], | |
| [ | |
| "HubSpot/Engagements", | |
| "hubspot.deploy/EngagementsKafka.yaml" | |
| ], | |
| [ | |
| "HubSpot/Engagements", | |
| "hubspot.deploy/EngagementsScheduledTasksKafka.yaml" | |
| ], | |
| [ | |
| "HubSpot/IntegrationsPlatform", | |
| "hubspot.deploy/IntegrationsPlatformKafkaElasticSearchUpdater.yaml" | |
| ], | |
| [ | |
| "HubSpot/IntegrationsPlatform", | |
| "hubspot.deploy/IntegrationsPlatformRenderingService.yaml" | |
| ], | |
| [ | |
| "HubSpot/IntegrationsPlatform", | |
| "hubspot.deploy/IntegrationsPlatformService.yaml" | |
| ], | |
| [ | |
| "HubSpot/IntegrationsPlatform", | |
| "hubspot.deploy/IntegratorsService.yaml" | |
| ], | |
| [ | |
| "HubSpot/Spinnaker", | |
| "hubspot.deploy/SpinnakerService.yaml" | |
| ], | |
| [ | |
| "HubSpot/GoogleCalendarMonitoring", | |
| "hubspot.deploy/GoogleCalendarMonitoringService.yaml" | |
| ] | |
| ], | |
| "nonRequiredPostDeployTests": [ | |
| [ | |
| "HubSpot/Content", | |
| "hubspot.deploy/content_web_proc.yaml" | |
| ], | |
| [ | |
| "HubSpot/BlogUI", | |
| "hubspot.deploy/BlogUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/email_static", | |
| "hubspot.deploy/email_static.yaml" | |
| ] | |
| ], | |
| "defaultSlavePlacement": [ | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/Singularity3x3.yaml" | |
| ], | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/SingularityProd3x3.yaml" | |
| ], | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/SingularityTest3x4.yaml" | |
| ], | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/SingularityTest3x5.yaml" | |
| ] | |
| ], | |
| "cooldownAfterFailures": [ | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/SingularityProd3x3.yaml" | |
| ] | |
| ], | |
| "branch": [ | |
| [ | |
| "HubSpot/pictos", | |
| "hubspot.deploy/pictos_app.yaml" | |
| ], | |
| [ | |
| "HubSpot/EventTracking", | |
| "hubspot.deploy/EventTrackingEtsuConfig.yaml" | |
| ], | |
| [ | |
| "HubSpot/hubspot_public_assets", | |
| "hubspot.deploy/home_page.yaml" | |
| ], | |
| [ | |
| "HubSpot/hubspot_public_assets", | |
| "hubspot.deploy/pricing_comparison-v2.yaml" | |
| ], | |
| [ | |
| "HubSpot/hubspot_public_assets", | |
| "hubspot.deploy/pricing_pages.yaml" | |
| ], | |
| [ | |
| "HubSpot/hubspot_public_assets", | |
| "hubspot.deploy/product_pages.yaml" | |
| ], | |
| [ | |
| "HubSpot/hubspot_public_assets", | |
| "hubspot.deploy/state_of_inbound.yaml" | |
| ], | |
| [ | |
| "HubSpot/hubspot_public_assets", | |
| "hubspot.deploy/update_browser_static_page.yaml" | |
| ], | |
| [ | |
| "HubSpot/ExampleStaticApp", | |
| "hubspot.deploy/ParagonUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/support_widget", | |
| "hubspot.deploy/support_widget.yaml" | |
| ], | |
| [ | |
| "HubSpot/BestJS", | |
| "hubspot.deploy/BestJS.yaml" | |
| ], | |
| [ | |
| "HubSpot/file_manager", | |
| "hubspot.deploy/file_manager.yaml" | |
| ], | |
| [ | |
| "HubSpot/cta", | |
| "hubspot.deploy/CtaUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/whodunit", | |
| "hubspot.deploy/whodunit_static.yaml" | |
| ], | |
| [ | |
| "HubSpot/longbow_search", | |
| "hubspot.deploy/longbow_search.yaml" | |
| ], | |
| [ | |
| "HubSpot/content_creator", | |
| "hubspot.deploy/content_creator.yaml" | |
| ], | |
| [ | |
| "HubSpot/template_builder", | |
| "hubspot.deploy/template_builder.yaml" | |
| ], | |
| [ | |
| "HubSpot/nps_static", | |
| "hubspot.deploy/nps_static.yaml" | |
| ], | |
| [ | |
| "HubSpot/content_editor", | |
| "hubspot.deploy/content_editor.yaml" | |
| ], | |
| [ | |
| "HubSpot/integrate", | |
| "hubspot.deploy/integrate.yaml" | |
| ], | |
| [ | |
| "HubSpot/BlogUI", | |
| "hubspot.deploy/BlogUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/email_static", | |
| "hubspot.deploy/email_static.yaml" | |
| ], | |
| [ | |
| "HubSpot/MarketingGraderUI", | |
| "hubspot.deploy/MarketingGraderAppUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/MarketingGraderUI", | |
| "hubspot.deploy/MarketingGraderIntegrateRunner.yaml" | |
| ], | |
| [ | |
| "HubSpot/MarketingGraderUI", | |
| "hubspot.deploy/MarketingGraderPublicUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/IntegratePlugins", | |
| "hubspot.deploy/integrate_plugins.yaml" | |
| ], | |
| [ | |
| "HubSpot/territories_static", | |
| "hubspot.deploy/CompanyInfoEmbedUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/territories_static", | |
| "hubspot.deploy/CompanyInfoEnrichUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/territories_static", | |
| "hubspot.deploy/TerritoriesDashboard.yaml" | |
| ], | |
| [ | |
| "HubSpot/EmailApiRouting", | |
| "hubspot.deploy/EmailApiRouting.yaml" | |
| ], | |
| [ | |
| "HubSpot/Auxilium", | |
| "hubspot.deploy/Auxilium.yaml" | |
| ], | |
| [ | |
| "HubSpot/BareStaticApp", | |
| "hubspot.deploy/BareStaticAppUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/CosCutoverUI", | |
| "hubspot.deploy/CosCutoverUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/TargetedContentUI", | |
| "hubspot.deploy/TargetedContentUI.yaml" | |
| ] | |
| ], | |
| "loadBalancerUri": [ | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/Singularity3x3.yaml" | |
| ], | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/SingularityProd3x3.yaml" | |
| ], | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/SingularityTest3x4.yaml" | |
| ], | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/SingularityTest3x5.yaml" | |
| ] | |
| ], | |
| "jenkins": [ | |
| [ | |
| "HubSpot/Navigation", | |
| "hubspot.deploy/NavigationStatic.yaml" | |
| ], | |
| [ | |
| "HubSpot/post_deploy_watcher", | |
| "hubspot.deploy/post_deploy_watcher.yaml" | |
| ], | |
| [ | |
| "HubSpot/Keywords", | |
| "hubspot.deploy/KeywordsUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/FormsUI", | |
| "hubspot.deploy/FormsUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/contacts_web", | |
| "hubspot.deploy/ContactsUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/ads_web", | |
| "hubspot.deploy/ads_web.yaml" | |
| ], | |
| [ | |
| "HubSpot/socialpy", | |
| "hubspot.deploy/socialpy.yaml" | |
| ], | |
| [ | |
| "HubSpot/library_web", | |
| "hubspot.deploy/library_web.yaml" | |
| ], | |
| [ | |
| "HubSpot/InternalEmail", | |
| "hubspot.deploy/InternalEmailService.yaml" | |
| ], | |
| [ | |
| "HubSpot/katamari", | |
| "hubspot.deploy/AccountsDashboardWeb.yaml" | |
| ], | |
| [ | |
| "HubSpot/CampaignsWeb", | |
| "hubspot.deploy/CampaignsUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/content_static", | |
| "hubspot.deploy/CalendarUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/content_static", | |
| "hubspot.deploy/ContentModulesUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/content_static", | |
| "hubspot.deploy/UrlMappingsUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/analytics_static", | |
| "hubspot.deploy/CustomReportUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/analytics_static", | |
| "hubspot.deploy/EventAnalysisUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/analytics_static", | |
| "hubspot.deploy/EventsUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/analytics_static", | |
| "hubspot.deploy/LinksUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/analytics_static", | |
| "hubspot.deploy/NarniaUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/analytics_static", | |
| "hubspot.deploy/PagePerformanceUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/analytics_static", | |
| "hubspot.deploy/PeopleUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/analytics_static", | |
| "hubspot.deploy/ReportsLandingPagesUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/analytics_static", | |
| "hubspot.deploy/ReportsSettingsUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/analytics_static", | |
| "hubspot.deploy/ReportsUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/analytics_static", | |
| "hubspot.deploy/SourcesUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/analytics_static", | |
| "hubspot.deploy/TrackingUrlsUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/Bucky", | |
| "hubspot.deploy/Bucky.yaml" | |
| ], | |
| [ | |
| "HubSpot/performance-rubric", | |
| "hubspot.deploy/performance-rubric.yaml" | |
| ], | |
| [ | |
| "HubSpot/HSDocServer", | |
| "hubspot.deploy/HSDoc.yaml" | |
| ], | |
| [ | |
| "HubSpot/FireStation", | |
| "hubspot.deploy/firestation.yaml" | |
| ], | |
| [ | |
| "HubSpot/kibana-hubspot", | |
| "hubspot.deploy/kibana.yaml" | |
| ], | |
| [ | |
| "HubSpot/BuckyOSServer", | |
| "hubspot.deploy/BuckyOSServer.yaml" | |
| ], | |
| [ | |
| "HubSpot/PersonasUI", | |
| "hubspot.deploy/PersonasUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/PartnerLeadRegistration", | |
| "hubspot.deploy/PartnerLeadRegistration.yaml" | |
| ], | |
| [ | |
| "HubSpot/MarketingGraderUI", | |
| "hubspot.deploy/MarketingGraderAppUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/MarketingGraderUI", | |
| "hubspot.deploy/MarketingGraderPublicUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/csv_import", | |
| "hubspot.deploy/csv_import.yaml" | |
| ], | |
| [ | |
| "HubSpot/s3Proxy", | |
| "hubspot.deploy/s3Proxy.yaml" | |
| ], | |
| [ | |
| "HubSpot/PartnerClientsUI", | |
| "hubspot.deploy/PartnerClientsUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/MobileRedirects", | |
| "hubspot.deploy/MobileRedirects.yaml" | |
| ], | |
| [ | |
| "HubSpot/MobileLogin", | |
| "hubspot.deploy/MobileLogin.yaml" | |
| ], | |
| [ | |
| "HubSpot/Recipes", | |
| "hubspot.deploy/RecipesUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/PagesUI", | |
| "hubspot.deploy/PagesUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/ReportsEmailUI", | |
| "hubspot.deploy/deploy.yaml" | |
| ], | |
| [ | |
| "HubSpot/IntegrationsUI", | |
| "hubspot.deploy/IntegrationsUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/SpawningPoolUI", | |
| "hubspot.deploy/SpawningPoolUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/MobileContactsTimelineUI", | |
| "hubspot.deploy/MobileContactsTimelineUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/PortalSetupUI", | |
| "hubspot.deploy/PortalSetupUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/StaticAppTemplate", | |
| "hubspot.deploy/StaticAppTemplate.yaml" | |
| ], | |
| [ | |
| "HubSpot/ScoreCardUI", | |
| "hubspot.deploy/ScoreCardUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/MobileBetaUI", | |
| "hubspot.deploy/MobileBetaUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/JobsUI", | |
| "hubspot.deploy/JobsUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/ContentEditorUI", | |
| "hubspot.deploy/ContentEditorUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/ContentEditorUI", | |
| "hubspot.deploy/InpageEditorUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/MerlinExample", | |
| "hubspot.deploy/MerlinExample.yaml" | |
| ], | |
| [ | |
| "HubSpot/CritsitUI", | |
| "hubspot.deploy/CritsitUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/DevelopersUI", | |
| "hubspot.deploy/DevelopersUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/CompetitorsUI", | |
| "hubspot.deploy/CompetitorsUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/BidenDisputesUI", | |
| "hubspot.deploy/BidenDisputesUI.yaml" | |
| ] | |
| ], | |
| "smoke_tests": [ | |
| [ | |
| "HubSpot/cta", | |
| "hubspot.deploy/cta_web2.yaml" | |
| ], | |
| [ | |
| "HubSpot/classic_cms_migrator", | |
| "hubspot.deploy/classic_cms_migrator_api.yaml" | |
| ], | |
| [ | |
| "HubSpot/portal_design_copy_daemon", | |
| "hubspot.deploy/portal_design_copy_api.yaml" | |
| ], | |
| [ | |
| "HubSpot/content_blog_importer", | |
| "hubspot.deploy/content_blog_import_api_dk.yaml" | |
| ] | |
| ], | |
| "guthub": [ | |
| [ | |
| "HubSpot/assist", | |
| "hubspot.deploy/assist_contacts_static.yaml" | |
| ], | |
| [ | |
| "HubSpot/assist", | |
| "hubspot.deploy/assist_widget_test_static.yaml" | |
| ] | |
| ], | |
| "proc": [ | |
| [ | |
| "HubSpot/Bucky", | |
| "hubspot.deploy/Bucky.yaml" | |
| ], | |
| [ | |
| "HubSpot/Spitfire", | |
| "hubspot.deploy/Spitfire.yaml" | |
| ], | |
| [ | |
| "HubSpot/HSDocServer", | |
| "hubspot.deploy/HSDoc.yaml" | |
| ], | |
| [ | |
| "HubSpot/BuckyOSServer", | |
| "hubspot.deploy/BuckyOSServer.yaml" | |
| ] | |
| ], | |
| "virtual_env_name": [ | |
| [ | |
| "HubSpot/ads_web", | |
| "hubspot.deploy/ads_jobs.yaml" | |
| ] | |
| ], | |
| "load_balancer": [ | |
| [ | |
| "HubSpot/Navigation", | |
| "hubspot.deploy/NavigationStatic.yaml" | |
| ], | |
| [ | |
| "HubSpot/contacts_web", | |
| "hubspot.deploy/ContactEmbedUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/contacts_web", | |
| "hubspot.deploy/ContactsUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/katamari", | |
| "hubspot.deploy/AccountsDashboardWeb.yaml" | |
| ], | |
| [ | |
| "HubSpot/CampaignsWeb", | |
| "hubspot.deploy/CampaignsUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/HaystackUI", | |
| "hubspot.deploy/HaystackUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/content_static", | |
| "hubspot.deploy/CalendarUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/content_static", | |
| "hubspot.deploy/ContentModulesUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/content_static", | |
| "hubspot.deploy/UrlMappingsUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/reliance", | |
| "hubspot.deploy/reliance.yaml" | |
| ], | |
| [ | |
| "HubSpot/performance-rubric", | |
| "hubspot.deploy/performance-rubric.yaml" | |
| ], | |
| [ | |
| "HubSpot/WorkflowsUI", | |
| "hubspot.deploy/WorkflowsUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/longbow", | |
| "hubspot.deploy/longbow.yaml" | |
| ], | |
| [ | |
| "HubSpot/HSDocServer", | |
| "hubspot.deploy/HSDoc.yaml" | |
| ], | |
| [ | |
| "HubSpot/signals_case_listener", | |
| "hubspot.deploy/signals_case_listener.yaml" | |
| ], | |
| [ | |
| "HubSpot/FireStation", | |
| "hubspot.deploy/firestation.yaml" | |
| ], | |
| [ | |
| "HubSpot/BuckyOSServer", | |
| "hubspot.deploy/BuckyOSServer.yaml" | |
| ], | |
| [ | |
| "HubSpot/PersonasUI", | |
| "hubspot.deploy/PersonasUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/PartnerLeadRegistration", | |
| "hubspot.deploy/PartnerLeadRegistration.yaml" | |
| ], | |
| [ | |
| "HubSpot/StaticErrors", | |
| "hubspot.deploy/StaticErrors.yaml" | |
| ], | |
| [ | |
| "HubSpot/StyleGuideDocsUI", | |
| "hubspot.deploy/StyleGuideDocsUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/MobileRedirects", | |
| "hubspot.deploy/MobileRedirects.yaml" | |
| ], | |
| [ | |
| "HubSpot/MobileLogin", | |
| "hubspot.deploy/MobileLogin.yaml" | |
| ], | |
| [ | |
| "HubSpot/Recipes", | |
| "hubspot.deploy/RecipesUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/PagesUI", | |
| "hubspot.deploy/PagesUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/ReportsEmailUI", | |
| "hubspot.deploy/deploy.yaml" | |
| ], | |
| [ | |
| "HubSpot/IntegrationsUI", | |
| "hubspot.deploy/IntegrationsUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/SpawningPoolUI", | |
| "hubspot.deploy/SpawningPoolUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/MobileContactsTimelineUI", | |
| "hubspot.deploy/MobileContactsTimelineUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/ContentEditorUI", | |
| "hubspot.deploy/ContentEditorUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/ContentEditorUI", | |
| "hubspot.deploy/InpageEditorUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/DevelopersUI", | |
| "hubspot.deploy/DevelopersUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/CompetitorsUI", | |
| "hubspot.deploy/CompetitorsUI.yaml" | |
| ] | |
| ], | |
| "static_project_name": [ | |
| [ | |
| "HubSpot/Navigation", | |
| "hubspot.deploy/NavigationStatic.yaml" | |
| ] | |
| ], | |
| "zookeeper": [ | |
| [ | |
| "HubSpot/misc_deploy", | |
| "hubspot.deploy/BaragonService.yaml" | |
| ], | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/BaragonService2.yaml" | |
| ], | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/BaragonService2Prod.yaml" | |
| ], | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/BaragonServiceTest.yaml" | |
| ], | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/Singularity3x3.yaml" | |
| ], | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/SingularityProd3x3.yaml" | |
| ], | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/SingularityTest3x4.yaml" | |
| ], | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/SingularityTest3x5.yaml" | |
| ] | |
| ], | |
| "jobs": [ | |
| [ | |
| "HubSpot/ads_web", | |
| "hubspot.deploy/ads_jobs.yaml" | |
| ] | |
| ], | |
| "description": [ | |
| [ | |
| "HubSpot/dashboard_plus_web", | |
| "hubspot.deploy/dashboard_plus_web.yaml" | |
| ], | |
| [ | |
| "HubSpot/example_web_static_v3", | |
| "hubspot.deploy/example_web_static_v3.yaml" | |
| ], | |
| [ | |
| "HubSpot/Keywords", | |
| "hubspot.deploy/KeywordsUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/Email", | |
| "hubspot.deploy/EmailSendgridRedirect.yaml" | |
| ], | |
| [ | |
| "HubSpot/FormsUI", | |
| "hubspot.deploy/FormsUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/tqdash_web", | |
| "hubspot.deploy/deploy.yaml" | |
| ], | |
| [ | |
| "HubSpot/style_guide_doc", | |
| "hubspot.deploy/style_guide_doc.yaml" | |
| ], | |
| [ | |
| "HubSpot/Content", | |
| "hubspot.deploy/blog_publishing_daemons.yaml" | |
| ], | |
| [ | |
| "HubSpot/Content", | |
| "hubspot.deploy/cms_blog_migration_daemon.yaml" | |
| ], | |
| [ | |
| "HubSpot/Content", | |
| "hubspot.deploy/content_daemons.yaml" | |
| ], | |
| [ | |
| "HubSpot/Content", | |
| "hubspot.deploy/content_file_migration_daemon.yaml" | |
| ], | |
| [ | |
| "HubSpot/Content", | |
| "hubspot.deploy/content_jobs_proc.yaml" | |
| ], | |
| [ | |
| "HubSpot/Content", | |
| "hubspot.deploy/content_web_proc.yaml" | |
| ], | |
| [ | |
| "HubSpot/Content", | |
| "hubspot.deploy/content_web_proc_test.yaml" | |
| ], | |
| [ | |
| "HubSpot/Content", | |
| "hubspot.deploy/public_content_web_proc.yaml" | |
| ], | |
| [ | |
| "HubSpot/Content", | |
| "hubspot.deploy/public_content_web_proc_test.yaml" | |
| ], | |
| [ | |
| "HubSpot/Content", | |
| "hubspot.deploy/resharding_runner.yaml" | |
| ], | |
| [ | |
| "HubSpot/Content", | |
| "hubspot.deploy/rss_email_daemon.yaml" | |
| ], | |
| [ | |
| "HubSpot/contacts_web", | |
| "hubspot.deploy/contacts_web.yaml" | |
| ], | |
| [ | |
| "HubSpot/developer_site_web", | |
| "hubspot.deploy/developer_site_web.yaml" | |
| ], | |
| [ | |
| "HubSpot/mobile_push_service_web", | |
| "hubspot.deploy/mobile_push_service_jobs.yaml" | |
| ], | |
| [ | |
| "HubSpot/Social", | |
| "hubspot.deploy/MonitoringUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/Social", | |
| "hubspot.deploy/PublishingUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/Social", | |
| "hubspot.deploy/ReachUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/Social", | |
| "hubspot.deploy/SocialOauthUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/Social", | |
| "hubspot.deploy/SocialReportsUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/Social", | |
| "hubspot.deploy/SocialSettingsUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/internal_email", | |
| "hubspot.deploy/internal_email_daemons_000.yaml" | |
| ], | |
| [ | |
| "HubSpot/internal_email", | |
| "hubspot.deploy/internal_email_jobs.yaml" | |
| ], | |
| [ | |
| "HubSpot/internal_email", | |
| "hubspot.deploy/internal_email_web.yaml" | |
| ], | |
| [ | |
| "HubSpot/hbase-dashboard", | |
| "hubspot.deploy/hbasedash_web.yaml" | |
| ], | |
| [ | |
| "HubSpot/academy_certification", | |
| "hubspot.deploy/academy_certification_jobs.yaml" | |
| ], | |
| [ | |
| "HubSpot/academy_certification", | |
| "hubspot.deploy/academy_certification_web.yaml" | |
| ], | |
| [ | |
| "HubSpot/CampaignsWeb", | |
| "hubspot.deploy/CampaignsUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/MarketingGraderWeb", | |
| "hubspot.deploy/marketinggrader_app.yaml" | |
| ], | |
| [ | |
| "HubSpot/MarketingGraderWeb", | |
| "hubspot.deploy/marketinggrader_web.yaml" | |
| ], | |
| [ | |
| "HubSpot/file_manager", | |
| "hubspot.deploy/file_manager.yaml" | |
| ], | |
| [ | |
| "HubSpot/content_static", | |
| "hubspot.deploy/CalendarUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/content_static", | |
| "hubspot.deploy/ContentModulesUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/content_static", | |
| "hubspot.deploy/UrlMappingsUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/analytics_static", | |
| "hubspot.deploy/CustomReportUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/analytics_static", | |
| "hubspot.deploy/EventAnalysisUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/analytics_static", | |
| "hubspot.deploy/EventsUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/analytics_static", | |
| "hubspot.deploy/LinksUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/analytics_static", | |
| "hubspot.deploy/NarniaUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/analytics_static", | |
| "hubspot.deploy/PagePerformanceUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/analytics_static", | |
| "hubspot.deploy/PeopleUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/analytics_static", | |
| "hubspot.deploy/ReportsLandingPagesUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/analytics_static", | |
| "hubspot.deploy/ReportsSettingsUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/analytics_static", | |
| "hubspot.deploy/ReportsUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/analytics_static", | |
| "hubspot.deploy/SourcesUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/analytics_static", | |
| "hubspot.deploy/TrackingUrlsUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/content_core_jobs", | |
| "hubspot.deploy/content_core_jobs.yaml" | |
| ], | |
| [ | |
| "HubSpot/content_core_jobs", | |
| "hubspot.deploy/content_core_jobs_migrate_row_snapshots_user.yaml" | |
| ], | |
| [ | |
| "HubSpot/content_core_jobs", | |
| "hubspot.deploy/content_core_resharding_jobs.yaml" | |
| ], | |
| [ | |
| "HubSpot/cta", | |
| "hubspot.deploy/cta_jobs.yaml" | |
| ], | |
| [ | |
| "HubSpot/cta", | |
| "hubspot.deploy/cta_upload_jobs.yaml" | |
| ], | |
| [ | |
| "HubSpot/cta", | |
| "hubspot.deploy/cta_web2.yaml" | |
| ], | |
| [ | |
| "HubSpot/email_checker_jobs", | |
| "hubspot.deploy/email_checker_jobs_proc.yaml" | |
| ], | |
| [ | |
| "HubSpot/content_checker_jobs", | |
| "hubspot.deploy/content_checker_jobs.yaml" | |
| ], | |
| [ | |
| "HubSpot/classic_cms_migrator", | |
| "hubspot.deploy/classic_cms_migrator_api.yaml" | |
| ], | |
| [ | |
| "HubSpot/classic_cms_migrator", | |
| "hubspot.deploy/classic_cms_migrator_cutover_daemons.yaml" | |
| ], | |
| [ | |
| "HubSpot/classic_cms_migrator", | |
| "hubspot.deploy/classic_cms_migrator_full.yaml" | |
| ], | |
| [ | |
| "HubSpot/classic_cms_migrator", | |
| "hubspot.deploy/classic_cms_migrator_site_daemons.yaml" | |
| ], | |
| [ | |
| "HubSpot/classic_cms_migrator", | |
| "hubspot.deploy/lp_style_isolator_daemons.yaml" | |
| ], | |
| [ | |
| "HubSpot/usagetracking_admin_web", | |
| "hubspot.deploy/usagetracking_admin_web.yaml" | |
| ], | |
| [ | |
| "HubSpot/blog_checker_jobs", | |
| "hubspot.deploy/blog_checker_jobs.yaml" | |
| ], | |
| [ | |
| "HubSpot/blog_checker_jobs", | |
| "hubspot.deploy/migration_checker_jobs.yaml" | |
| ], | |
| [ | |
| "HubSpot/content_creator", | |
| "hubspot.deploy/content_creator.yaml" | |
| ], | |
| [ | |
| "HubSpot/buckydata", | |
| "hubspot.deploy/buckydata.yaml" | |
| ], | |
| [ | |
| "HubSpot/content4j", | |
| "hubspot.deploy/00_contentrenderingapiweb_cosproc_elb.yaml" | |
| ], | |
| [ | |
| "HubSpot/content4j", | |
| "hubspot.deploy/contentrenderingapiweb_app_proxy.yaml" | |
| ], | |
| [ | |
| "HubSpot/content4j", | |
| "hubspot.deploy/contentrenderingapiweb_hubapi_proxy.yaml" | |
| ], | |
| [ | |
| "HubSpot/PersonasUI", | |
| "hubspot.deploy/PersonasUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/cos_dip_api", | |
| "hubspot.deploy/deploy.yaml" | |
| ], | |
| [ | |
| "HubSpot/MarketingGraderUI", | |
| "hubspot.deploy/MarketingGraderAppUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/MarketingGraderUI", | |
| "hubspot.deploy/MarketingGraderPublicUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/StringsUI", | |
| "hubspot.deploy/StringsUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/StyleGuideDocsUI", | |
| "hubspot.deploy/StyleGuideDocsUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/pagerduty_to_opentsdb", | |
| "hubspot.deploy/deploy.yaml" | |
| ], | |
| [ | |
| "HubSpot/blog_daemons", | |
| "hubspot.deploy/blog_daemons.yaml" | |
| ], | |
| [ | |
| "HubSpot/portal_design_copy_daemon", | |
| "hubspot.deploy/portal_design_copy_api.yaml" | |
| ], | |
| [ | |
| "HubSpot/portal_design_copy_daemon", | |
| "hubspot.deploy/portal_design_copy_daemon.yaml" | |
| ], | |
| [ | |
| "HubSpot/BaragonHubSpot", | |
| "hubspot.deploy/BaragonHubSpotService.yaml" | |
| ], | |
| [ | |
| "HubSpot/MobileRedirects", | |
| "hubspot.deploy/MobileRedirects.yaml" | |
| ], | |
| [ | |
| "HubSpot/MobileLogin", | |
| "hubspot.deploy/MobileLogin.yaml" | |
| ], | |
| [ | |
| "HubSpot/Recipes", | |
| "hubspot.deploy/RecipesUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/PagesUI", | |
| "hubspot.deploy/PagesUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/ReportsEmailUI", | |
| "hubspot.deploy/deploy.yaml" | |
| ], | |
| [ | |
| "HubSpot/cms_blog_notify", | |
| "hubspot.deploy/cms_blog_notify.yaml" | |
| ], | |
| [ | |
| "HubSpot/SpawningPoolUI", | |
| "hubspot.deploy/SpawningPoolUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/JenkinsUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/MobileContactsTimelineUI", | |
| "hubspot.deploy/MobileContactsTimelineUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/ContentEditorUI", | |
| "hubspot.deploy/ContentEditorUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/ContentEditorUI", | |
| "hubspot.deploy/InpageEditorUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/tq_monitor", | |
| "hubspot.deploy/deploy.yaml" | |
| ], | |
| [ | |
| "HubSpot/webpagetest", | |
| "hubspot.deploy/webpagetest.yaml" | |
| ], | |
| [ | |
| "HubSpot/content_blog_importer", | |
| "hubspot.deploy/content_blog_import_api_dk.yaml" | |
| ], | |
| [ | |
| "HubSpot/content_blog_importer", | |
| "hubspot.deploy/content_blog_import_daemon_dk.yaml" | |
| ], | |
| [ | |
| "HubSpot/content_blog_importer", | |
| "hubspot.deploy/content_blog_importer_full.yaml" | |
| ], | |
| [ | |
| "HubSpot/CompetitorsUI", | |
| "hubspot.deploy/CompetitorsUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/ProductScienceUI", | |
| "hubspot.deploy/ProductScienceUI.yaml" | |
| ] | |
| ], | |
| "app_root": [ | |
| [ | |
| "HubSpot/Navigation", | |
| "hubspot.deploy/NavigationStatic.yaml" | |
| ], | |
| [ | |
| "HubSpot/post_deploy_watcher", | |
| "hubspot.deploy/post_deploy_watcher.yaml" | |
| ], | |
| [ | |
| "HubSpot/contacts_web", | |
| "hubspot.deploy/ContactEmbedUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/contacts_web", | |
| "hubspot.deploy/ContactsUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/ads_web", | |
| "hubspot.deploy/ads_web.yaml" | |
| ], | |
| [ | |
| "HubSpot/socialpy", | |
| "hubspot.deploy/socialpy.yaml" | |
| ], | |
| [ | |
| "HubSpot/katamari", | |
| "hubspot.deploy/AccountsDashboardWeb.yaml" | |
| ], | |
| [ | |
| "HubSpot/CampaignsWeb", | |
| "hubspot.deploy/CampaignsUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/content_static", | |
| "hubspot.deploy/CalendarUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/content_static", | |
| "hubspot.deploy/ContentModulesUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/content_static", | |
| "hubspot.deploy/UrlMappingsUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/performance-rubric", | |
| "hubspot.deploy/performance-rubric.yaml" | |
| ], | |
| [ | |
| "HubSpot/WorkflowsUI", | |
| "hubspot.deploy/WorkflowsUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/longbow", | |
| "hubspot.deploy/longbow.yaml" | |
| ], | |
| [ | |
| "HubSpot/HSDocServer", | |
| "hubspot.deploy/HSDoc.yaml" | |
| ], | |
| [ | |
| "HubSpot/signals_case_listener", | |
| "hubspot.deploy/signals_case_listener.yaml" | |
| ], | |
| [ | |
| "HubSpot/FireStation", | |
| "hubspot.deploy/firestation.yaml" | |
| ], | |
| [ | |
| "HubSpot/BuckyOSServer", | |
| "hubspot.deploy/BuckyOSServer.yaml" | |
| ], | |
| [ | |
| "HubSpot/PersonasUI", | |
| "hubspot.deploy/PersonasUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/PartnerLeadRegistration", | |
| "hubspot.deploy/PartnerLeadRegistration.yaml" | |
| ], | |
| [ | |
| "HubSpot/StaticErrors", | |
| "hubspot.deploy/StaticErrors.yaml" | |
| ], | |
| [ | |
| "HubSpot/StyleGuideDocsUI", | |
| "hubspot.deploy/StyleGuideDocsUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/MobileRedirects", | |
| "hubspot.deploy/MobileRedirects.yaml" | |
| ], | |
| [ | |
| "HubSpot/MobileLogin", | |
| "hubspot.deploy/MobileLogin.yaml" | |
| ], | |
| [ | |
| "HubSpot/Recipes", | |
| "hubspot.deploy/RecipesUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/PagesUI", | |
| "hubspot.deploy/PagesUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/ReportsEmailUI", | |
| "hubspot.deploy/deploy.yaml" | |
| ], | |
| [ | |
| "HubSpot/IntegrationsUI", | |
| "hubspot.deploy/IntegrationsUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/SpawningPoolUI", | |
| "hubspot.deploy/SpawningPoolUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/MobileContactsTimelineUI", | |
| "hubspot.deploy/MobileContactsTimelineUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/MobileBetaUI", | |
| "hubspot.deploy/MobileBetaUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/ContentEditorUI", | |
| "hubspot.deploy/ContentEditorUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/ContentEditorUI", | |
| "hubspot.deploy/InpageEditorUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/DevelopersUI", | |
| "hubspot.deploy/DevelopersUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/CompetitorsUI", | |
| "hubspot.deploy/CompetitorsUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/BidenDisputesUI", | |
| "hubspot.deploy/BidenDisputesUI.yaml" | |
| ] | |
| ], | |
| "scmType": [ | |
| [ | |
| "HubSpot/pictos", | |
| "hubspot.deploy/pictos_app.yaml" | |
| ], | |
| [ | |
| "HubSpot/hubspot_public_assets", | |
| "hubspot.deploy/home_page.yaml" | |
| ], | |
| [ | |
| "HubSpot/hubspot_public_assets", | |
| "hubspot.deploy/pricing_comparison-v2.yaml" | |
| ], | |
| [ | |
| "HubSpot/hubspot_public_assets", | |
| "hubspot.deploy/pricing_pages.yaml" | |
| ], | |
| [ | |
| "HubSpot/hubspot_public_assets", | |
| "hubspot.deploy/product_pages.yaml" | |
| ], | |
| [ | |
| "HubSpot/hubspot_public_assets", | |
| "hubspot.deploy/state_of_inbound.yaml" | |
| ], | |
| [ | |
| "HubSpot/hubspot_public_assets", | |
| "hubspot.deploy/update_browser_static_page.yaml" | |
| ], | |
| [ | |
| "HubSpot/support_widget", | |
| "hubspot.deploy/support_widget.yaml" | |
| ], | |
| [ | |
| "HubSpot/BestJS", | |
| "hubspot.deploy/BestJS.yaml" | |
| ], | |
| [ | |
| "HubSpot/file_manager", | |
| "hubspot.deploy/file_manager.yaml" | |
| ], | |
| [ | |
| "HubSpot/whodunit", | |
| "hubspot.deploy/whodunit_static.yaml" | |
| ], | |
| [ | |
| "HubSpot/longbow_search", | |
| "hubspot.deploy/longbow_search.yaml" | |
| ], | |
| [ | |
| "HubSpot/nps_static", | |
| "hubspot.deploy/nps_static.yaml" | |
| ], | |
| [ | |
| "HubSpot/territories_static", | |
| "hubspot.deploy/CompanyInfoEmbedUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/territories_static", | |
| "hubspot.deploy/CompanyInfoEnrichUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/territories_static", | |
| "hubspot.deploy/TerritoriesDashboard.yaml" | |
| ] | |
| ], | |
| "auth": [ | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/BaragonService2.yaml" | |
| ], | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/BaragonService2Prod.yaml" | |
| ], | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/BaragonServiceTest.yaml" | |
| ] | |
| ], | |
| "successString": [ | |
| [ | |
| "HubSpot/ServiceMarketplace", | |
| "hubspot.deploy/ServiceMarketplaceWeb.yaml" | |
| ] | |
| ], | |
| "repo": [ | |
| [ | |
| "HubSpot/pictos", | |
| "hubspot.deploy/pictos_app.yaml" | |
| ], | |
| [ | |
| "HubSpot/hubspot_public_assets", | |
| "hubspot.deploy/home_page.yaml" | |
| ], | |
| [ | |
| "HubSpot/hubspot_public_assets", | |
| "hubspot.deploy/pricing_comparison-v2.yaml" | |
| ], | |
| [ | |
| "HubSpot/hubspot_public_assets", | |
| "hubspot.deploy/pricing_pages.yaml" | |
| ], | |
| [ | |
| "HubSpot/hubspot_public_assets", | |
| "hubspot.deploy/product_pages.yaml" | |
| ], | |
| [ | |
| "HubSpot/hubspot_public_assets", | |
| "hubspot.deploy/state_of_inbound.yaml" | |
| ], | |
| [ | |
| "HubSpot/hubspot_public_assets", | |
| "hubspot.deploy/update_browser_static_page.yaml" | |
| ], | |
| [ | |
| "HubSpot/support_widget", | |
| "hubspot.deploy/support_widget.yaml" | |
| ], | |
| [ | |
| "HubSpot/BestJS", | |
| "hubspot.deploy/BestJS.yaml" | |
| ], | |
| [ | |
| "HubSpot/file_manager", | |
| "hubspot.deploy/file_manager.yaml" | |
| ], | |
| [ | |
| "HubSpot/whodunit", | |
| "hubspot.deploy/whodunit_static.yaml" | |
| ], | |
| [ | |
| "HubSpot/longbow_search", | |
| "hubspot.deploy/longbow_search.yaml" | |
| ], | |
| [ | |
| "HubSpot/nps_static", | |
| "hubspot.deploy/nps_static.yaml" | |
| ], | |
| [ | |
| "HubSpot/territories_static", | |
| "hubspot.deploy/CompanyInfoEmbedUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/territories_static", | |
| "hubspot.deploy/CompanyInfoEnrichUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/territories_static", | |
| "hubspot.deploy/TerritoriesDashboard.yaml" | |
| ] | |
| ], | |
| "enableSeleniumBlocking": [ | |
| [ | |
| "HubSpot/Email", | |
| "hubspot.deploy/EmailApiWeb.yaml" | |
| ], | |
| [ | |
| "HubSpot/Email", | |
| "hubspot.deploy/EmailApiWebBatch.yaml" | |
| ], | |
| [ | |
| "HubSpot/Content", | |
| "hubspot.deploy/content_web_proc.yaml" | |
| ], | |
| [ | |
| "HubSpot/Content", | |
| "hubspot.deploy/public_content_web_proc.yaml" | |
| ], | |
| [ | |
| "HubSpot/contacts_web", | |
| "hubspot.deploy/ContactEmbedUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/contacts_web", | |
| "hubspot.deploy/ContactsUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/contacts_web", | |
| "hubspot.deploy/contacts_web.yaml" | |
| ], | |
| [ | |
| "HubSpot/Tickets", | |
| "hubspot.deploy/Tickets.yaml" | |
| ], | |
| [ | |
| "HubSpot/EventTracking", | |
| "hubspot.deploy/EventTrackingPublicService.yaml" | |
| ], | |
| [ | |
| "HubSpot/file_manager", | |
| "hubspot.deploy/file_manager.yaml" | |
| ], | |
| [ | |
| "HubSpot/content_static", | |
| "hubspot.deploy/CalendarUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/content_static", | |
| "hubspot.deploy/UrlMappingsUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/cta", | |
| "hubspot.deploy/CtaUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/Comments", | |
| "hubspot.deploy/CommentsService.yaml" | |
| ], | |
| [ | |
| "HubSpot/WorkflowsUI", | |
| "hubspot.deploy/WorkflowsUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/comments_embed", | |
| "hubspot.deploy/comments_embed.yaml" | |
| ], | |
| [ | |
| "HubSpot/BlogImportUI", | |
| "hubspot.deploy/BlogImportUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/content4j", | |
| "hubspot.deploy/contentrenderingapiweb-common.yaml" | |
| ], | |
| [ | |
| "HubSpot/BlogUI", | |
| "hubspot.deploy/BlogUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/email_static", | |
| "hubspot.deploy/email_static.yaml" | |
| ], | |
| [ | |
| "HubSpot/MarketingGraderUI", | |
| "hubspot.deploy/MarketingGraderAppUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/MarketingGraderUI", | |
| "hubspot.deploy/MarketingGraderPublicUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/ContentUrlMapping", | |
| "hubspot.deploy/ContentUrlMappingService.yaml" | |
| ], | |
| [ | |
| "HubSpot/IntegrationsUI", | |
| "hubspot.deploy/IntegrationsUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/Calendar", | |
| "hubspot.deploy/CalendarService.yaml" | |
| ], | |
| [ | |
| "HubSpot/COSEmail", | |
| "hubspot.deploy/COSEmailService.yaml" | |
| ], | |
| [ | |
| "HubSpot/DevelopersUI", | |
| "hubspot.deploy/DevelopersUI.yaml" | |
| ] | |
| ], | |
| "mail_to": [ | |
| [ | |
| "HubSpot/Content", | |
| "hubspot.deploy/blog_publishing_daemons.yaml" | |
| ], | |
| [ | |
| "HubSpot/Content", | |
| "hubspot.deploy/cms_blog_migration_daemon.yaml" | |
| ], | |
| [ | |
| "HubSpot/Content", | |
| "hubspot.deploy/content_daemons.yaml" | |
| ], | |
| [ | |
| "HubSpot/Content", | |
| "hubspot.deploy/content_file_migration_daemon.yaml" | |
| ], | |
| [ | |
| "HubSpot/Content", | |
| "hubspot.deploy/rss_email_daemon.yaml" | |
| ], | |
| [ | |
| "HubSpot/ads_web", | |
| "hubspot.deploy/ads_jobs.yaml" | |
| ], | |
| [ | |
| "HubSpot/classic_cms_migrator", | |
| "hubspot.deploy/classic_cms_migrator_cutover_daemons.yaml" | |
| ], | |
| [ | |
| "HubSpot/classic_cms_migrator", | |
| "hubspot.deploy/classic_cms_migrator_site_daemons.yaml" | |
| ], | |
| [ | |
| "HubSpot/classic_cms_migrator", | |
| "hubspot.deploy/lp_style_isolator_daemons.yaml" | |
| ], | |
| [ | |
| "HubSpot/blog_daemons", | |
| "hubspot.deploy/blog_daemons.yaml" | |
| ], | |
| [ | |
| "HubSpot/portal_design_copy_daemon", | |
| "hubspot.deploy/portal_design_copy_daemon.yaml" | |
| ], | |
| [ | |
| "HubSpot/content_blog_importer", | |
| "hubspot.deploy/content_blog_import_daemon_dk.yaml" | |
| ] | |
| ], | |
| "southMigrationFolders": [ | |
| [ | |
| "HubSpot/cta", | |
| "hubspot.deploy/cta_web2.yaml" | |
| ] | |
| ], | |
| "masterAuthKey": [ | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/BaragonService2.yaml" | |
| ], | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/BaragonService2Prod.yaml" | |
| ], | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/BaragonServiceTest.yaml" | |
| ] | |
| ], | |
| "loadBalancerQueryParams": [ | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/Singularity3x3.yaml" | |
| ], | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/SingularityProd3x3.yaml" | |
| ], | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/SingularityTest3x4.yaml" | |
| ], | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/SingularityTest3x5.yaml" | |
| ] | |
| ], | |
| "staticMajorVersion": [ | |
| [ | |
| "HubSpot/LearnFlow", | |
| "hubspot.deploy/deploy.yaml" | |
| ] | |
| ], | |
| "proxyConfig": [ | |
| [ | |
| "HubSpot/Email", | |
| "hubspot.deploy/EmailSendgridRedirect.yaml" | |
| ], | |
| [ | |
| "HubSpot/content4j", | |
| "hubspot.deploy/00_contentrenderingapiweb_cosproc_elb.yaml" | |
| ], | |
| [ | |
| "HubSpot/content4j", | |
| "hubspot.deploy/contentrenderingapiweb_app_proxy.yaml" | |
| ], | |
| [ | |
| "HubSpot/content4j", | |
| "hubspot.deploy/contentrenderingapiweb_hubapi_proxy.yaml" | |
| ], | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/JenkinsUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/webpagetest", | |
| "hubspot.deploy/webpagetest.yaml" | |
| ] | |
| ], | |
| "rodan_config": [ | |
| [ | |
| "HubSpot/ads_web", | |
| "hubspot.deploy/ads_jobs.yaml" | |
| ], | |
| [ | |
| "HubSpot/ads_web", | |
| "hubspot.deploy/ads_web.yaml" | |
| ], | |
| [ | |
| "HubSpot/socialpy", | |
| "hubspot.deploy/socialpy.yaml" | |
| ], | |
| [ | |
| "HubSpot/Bucky", | |
| "hubspot.deploy/Bucky.yaml" | |
| ], | |
| [ | |
| "HubSpot/HSDocServer", | |
| "hubspot.deploy/HSDoc.yaml" | |
| ], | |
| [ | |
| "HubSpot/BuckyOSServer", | |
| "hubspot.deploy/BuckyOSServer.yaml" | |
| ] | |
| ], | |
| "database": [ | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/Singularity3x3.yaml" | |
| ], | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/SingularityProd3x3.yaml" | |
| ], | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/SingularityTest3x4.yaml" | |
| ], | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/SingularityTest3x5.yaml" | |
| ] | |
| ], | |
| "queues": [ | |
| [ | |
| "HubSpot/MarketingGrader", | |
| "hubspot.deploy/MarketingGraderJobs.yaml" | |
| ] | |
| ], | |
| "major_version": [ | |
| [ | |
| "HubSpot/Navigation", | |
| "hubspot.deploy/NavigationStatic.yaml" | |
| ], | |
| [ | |
| "HubSpot/deployer_ui", | |
| "hubspot.deploy/deployer_ui_v3.yaml" | |
| ], | |
| [ | |
| "HubSpot/content_static", | |
| "hubspot.deploy/ContentModulesUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/content_creator", | |
| "hubspot.deploy/content_creator.yaml" | |
| ], | |
| [ | |
| "HubSpot/PagesUI", | |
| "hubspot.deploy/PagesUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/ReportsEmailUI", | |
| "hubspot.deploy/deploy.yaml" | |
| ], | |
| [ | |
| "HubSpot/ContentEditorUI", | |
| "hubspot.deploy/ContentEditorUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/ContentEditorUI", | |
| "hubspot.deploy/InpageEditorUI.yaml" | |
| ] | |
| ], | |
| "server": [ | |
| [ | |
| "HubSpot/misc_deploy", | |
| "hubspot.deploy/BaragonService.yaml" | |
| ], | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/BaragonService2.yaml" | |
| ], | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/BaragonService2Prod.yaml" | |
| ], | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/BaragonServiceTest.yaml" | |
| ], | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/Singularity3x3.yaml" | |
| ], | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/SingularityProd3x3.yaml" | |
| ], | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/SingularityTest3x4.yaml" | |
| ], | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/SingularityTest3x5.yaml" | |
| ] | |
| ], | |
| "statusUrl": [ | |
| [ | |
| "HubSpot/content4j", | |
| "hubspot.deploy/00_contentrenderingapiweb_cosproc_elb.yaml" | |
| ], | |
| [ | |
| "HubSpot/content4j", | |
| "hubspot.deploy/contentrenderingapiweb_app_proxy.yaml" | |
| ], | |
| [ | |
| "HubSpot/content4j", | |
| "hubspot.deploy/contentrenderingapiweb_hubapi_proxy.yaml" | |
| ] | |
| ], | |
| "repoPath": [ | |
| [ | |
| "HubSpot/pictos", | |
| "hubspot.deploy/pictos_app.yaml" | |
| ], | |
| [ | |
| "HubSpot/hubspot_public_assets", | |
| "hubspot.deploy/home_page.yaml" | |
| ], | |
| [ | |
| "HubSpot/hubspot_public_assets", | |
| "hubspot.deploy/pricing_comparison-v2.yaml" | |
| ], | |
| [ | |
| "HubSpot/hubspot_public_assets", | |
| "hubspot.deploy/pricing_pages.yaml" | |
| ], | |
| [ | |
| "HubSpot/hubspot_public_assets", | |
| "hubspot.deploy/product_pages.yaml" | |
| ], | |
| [ | |
| "HubSpot/hubspot_public_assets", | |
| "hubspot.deploy/state_of_inbound.yaml" | |
| ], | |
| [ | |
| "HubSpot/hubspot_public_assets", | |
| "hubspot.deploy/update_browser_static_page.yaml" | |
| ], | |
| [ | |
| "HubSpot/support_widget", | |
| "hubspot.deploy/support_widget.yaml" | |
| ], | |
| [ | |
| "HubSpot/BestJS", | |
| "hubspot.deploy/BestJS.yaml" | |
| ], | |
| [ | |
| "HubSpot/file_manager", | |
| "hubspot.deploy/file_manager.yaml" | |
| ], | |
| [ | |
| "HubSpot/whodunit", | |
| "hubspot.deploy/whodunit_static.yaml" | |
| ], | |
| [ | |
| "HubSpot/longbow_search", | |
| "hubspot.deploy/longbow_search.yaml" | |
| ], | |
| [ | |
| "HubSpot/nps_static", | |
| "hubspot.deploy/nps_static.yaml" | |
| ], | |
| [ | |
| "HubSpot/territories_static", | |
| "hubspot.deploy/CompanyInfoEmbedUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/territories_static", | |
| "hubspot.deploy/CompanyInfoEnrichUI.yaml" | |
| ], | |
| [ | |
| "HubSpot/territories_static", | |
| "hubspot.deploy/TerritoriesDashboard.yaml" | |
| ] | |
| ], | |
| "django_settings_module": [ | |
| [ | |
| "HubSpot/Content", | |
| "hubspot.deploy/public_content_web_proc.yaml" | |
| ], | |
| [ | |
| "HubSpot/Content", | |
| "hubspot.deploy/public_content_web_proc_test.yaml" | |
| ], | |
| [ | |
| "HubSpot/ads_web", | |
| "hubspot.deploy/ads_jobs.yaml" | |
| ] | |
| ], | |
| "jenkinsProject": [ | |
| [ | |
| "HubSpot/RatingsApiWeb", | |
| "hubspot.deploy/RatingsApiWeb.yaml" | |
| ], | |
| [ | |
| "HubSpot/WAL", | |
| "hubspot.deploy/WAlTestApi.yaml" | |
| ], | |
| [ | |
| "HubSpot/ServiceMarketplace", | |
| "hubspot.deploy/ServiceMarketplaceApi.yaml" | |
| ], | |
| [ | |
| "HubSpot/ServiceMarketplace", | |
| "hubspot.deploy/ServiceMarketplaceWeb.yaml" | |
| ], | |
| [ | |
| "HubSpot/Analytics", | |
| "hubspot.deploy/AnalyticsS3ErrorHandler.yaml" | |
| ] | |
| ], | |
| "seleniumName": [ | |
| [ | |
| "HubSpot/Content", | |
| "hubspot.deploy/content_web_proc.yaml" | |
| ] | |
| ], | |
| "ports": [ | |
| [ | |
| "HubSpot/Content", | |
| "hubspot.deploy/public_content_web_proc.yaml" | |
| ], | |
| [ | |
| "HubSpot/Content", | |
| "hubspot.deploy/public_content_web_proc_test.yaml" | |
| ], | |
| [ | |
| "HubSpot/deploy_runner", | |
| "hubspot.deploy/deploy_runner.yaml" | |
| ], | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/JenkinsUI.yaml" | |
| ] | |
| ], | |
| "forcePorts": [ | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/Singularity3x3.yaml" | |
| ], | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/SingularityProd3x3.yaml" | |
| ], | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/SingularityTest3x4.yaml" | |
| ], | |
| [ | |
| "HubSpot/PaaS", | |
| "hubspot.deploy/SingularityTest3x5.yaml" | |
| ] | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment