Skip to content

Commit c80981a

Browse files
llewellyn-slclaude
andcommitted
Enrich GoogleBatchPlatform instance template descriptions
Improve CLI help descriptions for new instance template options added from master: - --head-job-template: Clarify usage with both short name and fully qualified reference formats - --compute-job-template: Same clarification for compute jobs - Add example format: projects/PROJECT_ID/global/instanceTemplates/TEMPLATE_NAME These options were added to GoogleBatchPlatform from master branch merge. Co-Authored-By: Claude Sonnet 4.5 <[email protected]>
1 parent 166173a commit c80981a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/GoogleBatchPlatform.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,10 +99,10 @@ public static class AdvancedOptions {
9999
@Option(names = {"--service-account-email"}, description = "Google Cloud service account email for pipeline execution. Grants fine-grained IAM permissions to Nextflow jobs.")
100100
public String serviceAccountEmail;
101101

102-
@Option(names = {"--head-job-template"}, description = "The name or fully qualified reference of the instance template to use for the head job.")
102+
@Option(names = {"--head-job-template"}, description = "Google Compute Engine instance template for the Nextflow head job. Specify either the template name (if in the same project) or the fully qualified reference (projects/PROJECT_ID/global/instanceTemplates/TEMPLATE_NAME).")
103103
public String headJobInstanceTemplate;
104104

105-
@Option(names = {"--compute-job-template"}, description = "The name or fully qualified reference of the instance template to use for the compute jobs.")
105+
@Option(names = {"--compute-job-template"}, description = "Google Compute Engine instance template for pipeline compute jobs. Specify either the template name (if in the same project) or the fully qualified reference (projects/PROJECT_ID/global/instanceTemplates/TEMPLATE_NAME).")
106106
public String computeJobInstanceTemplate;
107107
}
108108
}

0 commit comments

Comments
 (0)