Skip to content

Commit 40f2093

Browse files
authored
DOCSP-41212: Add dochub links to cluster configuration file page (#3378)
1 parent 0feea6d commit 40f2093

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

docs/command/mongocli-cloud-manager-clusters-create.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Options
3838
* - -f, --file
3939
- string
4040
- true
41-
- Filename to use to create the cluster
41+
- Filename to use to create the cluster. To learn more about configuration files, see https://dochub.mongodb.org/core/mongocli-cluster-config-file.
4242
* - -h, --help
4343
-
4444
- false

docs/command/mongocli-cloud-manager-clusters-update.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Options
3838
* - -f, --file
3939
- string
4040
- true
41-
- Filename to use to update the cluster
41+
- Filename to use to update the cluster. To learn more about configuration files, see https://dochub.mongodb.org/core/mongocli-cluster-config-file.
4242
* - -h, --help
4343
-
4444
- false

docs/command/mongocli-ops-manager-clusters-create.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Options
3838
* - -f, --file
3939
- string
4040
- true
41-
- Filename to use to create the cluster
41+
- Filename to use to create the cluster. To learn more about configuration files, see https://dochub.mongodb.org/core/mongocli-cluster-config-file.
4242
* - -h, --help
4343
-
4444
- false

docs/command/mongocli-ops-manager-clusters-update.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Options
3838
* - -f, --file
3939
- string
4040
- true
41-
- Filename to use to update the cluster
41+
- Filename to use to update the cluster. To learn more about configuration files, see https://dochub.mongodb.org/core/mongocli-cluster-config-file.
4242
* - -h, --help
4343
-
4444
- false

internal/cli/opsmanager/clusters/create.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ func CreateBuilder() *cobra.Command {
9090
},
9191
}
9292

93-
cmd.Flags().StringVarP(&opts.filename, flag.File, flag.FileShort, "", "Filename to use to create the cluster")
93+
cmd.Flags().StringVarP(&opts.filename, flag.File, flag.FileShort, "", "Filename to use to create the cluster. To learn more about configuration files, see https://dochub.mongodb.org/core/mongocli-cluster-config-file.")
9494

9595
cmd.Flags().StringVar(&opts.ProjectID, flag.ProjectID, "", usage.ProjectID)
9696

internal/cli/opsmanager/clusters/update.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ func UpdateBuilder() *cobra.Command {
9090
},
9191
}
9292

93-
cmd.Flags().StringVarP(&opts.filename, flag.File, flag.FileShort, "", "Filename to use to update the cluster")
93+
cmd.Flags().StringVarP(&opts.filename, flag.File, flag.FileShort, "", "Filename to use to update the cluster. To learn more about configuration files, see https://dochub.mongodb.org/core/mongocli-cluster-config-file.")
9494

9595
cmd.Flags().StringVar(&opts.ProjectID, flag.ProjectID, "", usage.ProjectID)
9696

0 commit comments

Comments
 (0)