You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -63,6 +63,7 @@ Options:
63
63
validate the certificate presented by the mongod/mongos instance
64
64
--tlsCertificateKeyFile <path> Specifies the location of a local .pem file that contains either the
65
65
client's TLS/SSL certificate and key
66
+
--tlsCertificateKeyFilePassword <password> Specifies the password to de-crypt the tlsCertificateKeyFile
66
67
-m --db-map [dump-db-name=target-db-name...] Map the databases in the dump with the target databases. We have our own naming convention for the production databases, but it is up to the customers to name their databases (default: ["google_production=codefresh","chart-manager=charts-manager","kubernetes-monitor=k8s-monitor"])
67
68
-h, --help display help for command
68
69
```
@@ -108,6 +109,7 @@ Options:
108
109
validate the certificate presented by the mongod/mongos instance
109
110
--tlsCertificateKeyFile <path> Specifies the location of a local .pem file that contains either the
110
111
client's TLS/SSL certificate and key
112
+
--tlsCertificateKeyFilePassword <password> Specifies the password to de-crypt the tlsCertificateKeyFile
111
113
-h, --help display help for command
112
114
```
113
115
@@ -140,6 +142,7 @@ Options:
140
142
validate the certificate presented by the mongod/mongos instance
141
143
--tlsCertificateKeyFile <path> Specifies the location of a local .pem file that contains either the
142
144
client's TLS/SSL certificate and key
145
+
--tlsCertificateKeyFilePassword <password> Specifies the password to de-crypt the tlsCertificateKeyFile
143
146
-f --force Create indexes even on heavily populated collections, which may take a while
144
147
-m --db-map [dump-db-name=target-db-name...] Map the databases in the dump with the target databases. We have our own naming convention for the production databases, but it is up to the customers to name their databases (default: ["google_production=codefresh","chart-manager=charts-manager","kubernetes-monitor=k8s-monitor"])
Copy file name to clipboardExpand all lines: src/index.ts
+16Lines changed: 16 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -28,6 +28,10 @@ program
28
28
'--tlsCertificateKeyFile <path>',
29
29
`Specifies the location of a local .pem file that contains either the client's TLS/SSL certificate and key`,
30
30
)
31
+
.option(
32
+
'--tlsCertificateKeyFilePassword <password>',
33
+
'Specifies the password to de-crypt the tlsCertificateKeyFile',
34
+
)
31
35
.action(dumpAllIndexes);
32
36
33
37
program
@@ -52,6 +56,10 @@ program
52
56
'--tlsCertificateKeyFile <path>',
53
57
`Specifies the location of a local .pem file that contains either the client's TLS/SSL certificate and key`,
54
58
)
59
+
.option(
60
+
'--tlsCertificateKeyFilePassword <password>',
61
+
'Specifies the password to de-crypt the tlsCertificateKeyFile',
62
+
)
55
63
.action(stats);
56
64
57
65
program
@@ -77,6 +85,10 @@ program
77
85
'--tlsCertificateKeyFile <path>',
78
86
`Specifies the location of a local .pem file that contains either the client's TLS/SSL certificate and key`,
79
87
)
88
+
.option(
89
+
'--tlsCertificateKeyFilePassword <password>',
90
+
'Specifies the password to de-crypt the tlsCertificateKeyFile',
91
+
)
80
92
.option(
81
93
'-m --db-map [dump-db-name=target-db-name...]',
82
94
'Map the databases in the dump with the target databases. We have our own naming convention for the production databases, but it is up to the customers to name their databases',
@@ -107,6 +119,10 @@ program
107
119
'--tlsCertificateKeyFile <path>',
108
120
`Specifies the location of a local .pem file that contains either the client's TLS/SSL certificate and key`,
109
121
)
122
+
.option(
123
+
'--tlsCertificateKeyFilePassword <password>',
124
+
'Specifies the password to de-crypt the tlsCertificateKeyFile',
125
+
)
110
126
.option('-f --force','Create indexes even on heavily populated collections, which may take a while')
0 commit comments