@codiac.io/codiac-cli 1.3.37 → 1.3.39
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.
- package/README.md +1 -1
- package/dist/apis/codiac-relay/gen/client.d.ts +4 -4
- package/dist/apis/codiac-relay/gen/client.js +2 -2
- package/dist/apis/codiac-relay/gen/client.js.map +1 -1
- package/dist/apis/codiac-relay/gen/contracts.d.ts +19 -0
- package/dist/apis/codiac-relay/gen/contracts.js.map +1 -1
- package/dist/apis/nats/nats-client.d.ts +7 -2
- package/dist/apis/nats/nats-client.js +33 -13
- package/dist/apis/nats/nats-client.js.map +1 -1
- package/dist/command-base-enterprise.js +1 -1
- package/dist/command-base-enterprise.js.map +1 -1
- package/dist/commands/asset/deploy.js +5 -4
- package/dist/commands/asset/deploy.js.map +1 -1
- package/dist/commands/asset/view.js +1 -1
- package/dist/commands/asset/view.js.map +1 -1
- package/dist/commands/cabinet/create.d.ts +25 -4
- package/dist/commands/cabinet/create.js +142 -96
- package/dist/commands/cabinet/create.js.map +1 -1
- package/dist/commands/csp/login.js +7 -2
- package/dist/commands/csp/login.js.map +1 -1
- package/dist/commands/deploy.js +4 -3
- package/dist/commands/deploy.js.map +1 -1
- package/dist/commands/filestore/capture.js +7 -7
- package/dist/commands/filestore/capture.js.map +1 -1
- package/dist/commands/noc/cluster/create.js +5 -1
- package/dist/commands/noc/cluster/create.js.map +1 -1
- package/dist/commands/noc/cluster/deinit.js +9 -7
- package/dist/commands/noc/cluster/deinit.js.map +1 -1
- package/dist/commands/noc/cluster/destroy.js +8 -6
- package/dist/commands/noc/cluster/destroy.js.map +1 -1
- package/dist/commands/noc/cluster/grant.js +1 -1
- package/dist/commands/noc/cluster/grant.js.map +1 -1
- package/dist/commands/noc/cluster/init.js +8 -6
- package/dist/commands/noc/cluster/init.js.map +1 -1
- package/dist/commands/noc/cluster/recreate.js +2 -2
- package/dist/commands/noc/cluster/recreate.js.map +1 -1
- package/dist/commands/secretStore/capture.js +17 -1
- package/dist/commands/secretStore/capture.js.map +1 -1
- package/dist/relay/relay-container.js +1 -1
- package/dist/relay/relay-container.js.map +1 -1
- package/dist/uilogic/cloud-provider-contextualizer.d.ts +9 -1
- package/dist/uilogic/cloud-provider-contextualizer.js +66 -27
- package/dist/uilogic/cloud-provider-contextualizer.js.map +1 -1
- package/dist/uilogic/cloud-resource-configurators/aws-resource-configurator.d.ts +4 -4
- package/dist/uilogic/cloud-resource-configurators/aws-resource-configurator.js +56 -34
- package/dist/uilogic/cloud-resource-configurators/aws-resource-configurator.js.map +1 -1
- package/dist/uilogic/cloud-resource-configurators/az-interactive-login-configurator.d.ts +2 -1
- package/dist/uilogic/cloud-resource-configurators/az-interactive-login-configurator.js +9 -2
- package/dist/uilogic/cloud-resource-configurators/az-interactive-login-configurator.js.map +1 -1
- package/dist/uilogic/cloud-resource-configurators/azure-resource-configurator.d.ts +8 -0
- package/dist/uilogic/cloud-resource-configurators/azure-resource-configurator.js +40 -31
- package/dist/uilogic/cloud-resource-configurators/azure-resource-configurator.js.map +1 -1
- package/dist/uilogic/cloud-resource-configurators/docker-hub-resource-configurator.d.ts +5 -4
- package/dist/uilogic/cloud-resource-configurators/docker-hub-resource-configurator.js +13 -6
- package/dist/uilogic/cloud-resource-configurators/docker-hub-resource-configurator.js.map +1 -1
- package/dist/uilogic/cloud-resource-configurators/helm-resource-configurator.d.ts +5 -4
- package/dist/uilogic/cloud-resource-configurators/helm-resource-configurator.js +20 -11
- package/dist/uilogic/cloud-resource-configurators/helm-resource-configurator.js.map +1 -1
- package/dist/uilogic/i-login-configurator.d.ts +2 -1
- package/dist/uilogic/i-registry-configurator.d.ts +1 -1
- package/dist/uilogic/image-registry-contextualizer.js +5 -7
- package/dist/uilogic/image-registry-contextualizer.js.map +1 -1
- package/oclif.manifest.json +66 -2
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.3.
|
|
2
|
+
"version": "1.3.39",
|
|
3
3
|
"commands": {
|
|
4
4
|
"branch": {
|
|
5
5
|
"id": "branch",
|
|
@@ -2106,7 +2106,7 @@
|
|
|
2106
2106
|
},
|
|
2107
2107
|
"cabinet:create": {
|
|
2108
2108
|
"id": "cabinet:create",
|
|
2109
|
-
"description": "Initializes a cabinet for a given enterprise and environment.
|
|
2109
|
+
"description": "Initializes a cabinet for a given enterprise and environment. Returns an error if the cabinet already exists.",
|
|
2110
2110
|
"strict": true,
|
|
2111
2111
|
"pluginName": "@codiac.io/codiac-cli",
|
|
2112
2112
|
"pluginAlias": "@codiac.io/codiac-cli",
|
|
@@ -2115,6 +2115,24 @@
|
|
|
2115
2115
|
"cab:create"
|
|
2116
2116
|
],
|
|
2117
2117
|
"hiddenAliases": [],
|
|
2118
|
+
"examples": [
|
|
2119
|
+
{
|
|
2120
|
+
"description": "Create a cabinet interativley.",
|
|
2121
|
+
"command": "cod cabinet create"
|
|
2122
|
+
},
|
|
2123
|
+
{
|
|
2124
|
+
"description": "Create a cabinet interativley and assemble a non-interactive command string.",
|
|
2125
|
+
"command": "cod cabinet create --echo"
|
|
2126
|
+
},
|
|
2127
|
+
{
|
|
2128
|
+
"description": "Assemble a non-interactive command string WITHOUT actually creating a cabinet (dry run).",
|
|
2129
|
+
"command": "cod cabinet create --to-script"
|
|
2130
|
+
},
|
|
2131
|
+
{
|
|
2132
|
+
"description": "Create a cabinet silently.",
|
|
2133
|
+
"command": "cod cabinet create my-cab-name --enterprise main -e dev-environemt -c my-cluster --silent"
|
|
2134
|
+
}
|
|
2135
|
+
],
|
|
2118
2136
|
"flags": {
|
|
2119
2137
|
"as": {
|
|
2120
2138
|
"name": "as",
|
|
@@ -2172,6 +2190,52 @@
|
|
|
2172
2190
|
"char": "e",
|
|
2173
2191
|
"description": "(optional: defaults to that of the current project branch) The name of the environment this cabinet will be grouped under.",
|
|
2174
2192
|
"multiple": false
|
|
2193
|
+
},
|
|
2194
|
+
"cluster": {
|
|
2195
|
+
"name": "cluster",
|
|
2196
|
+
"type": "option",
|
|
2197
|
+
"char": "c",
|
|
2198
|
+
"description": "(optional: defaults to the first cluster in the environment) The name of the cluster to use for the cabinet.",
|
|
2199
|
+
"multiple": false
|
|
2200
|
+
},
|
|
2201
|
+
"silent": {
|
|
2202
|
+
"name": "silent",
|
|
2203
|
+
"type": "boolean",
|
|
2204
|
+
"description": "Non-Interactive mode; executes without any user interaction and fails on any missing or invalid arguments.",
|
|
2205
|
+
"allowNo": false,
|
|
2206
|
+
"exclusive": [
|
|
2207
|
+
"echo",
|
|
2208
|
+
"to-script"
|
|
2209
|
+
]
|
|
2210
|
+
},
|
|
2211
|
+
"echo": {
|
|
2212
|
+
"name": "echo",
|
|
2213
|
+
"type": "boolean",
|
|
2214
|
+
"description": "Echo interaction mode; renders the equivalent non-interactive cli command for future use before final execution.",
|
|
2215
|
+
"allowNo": false,
|
|
2216
|
+
"exclusive": [
|
|
2217
|
+
"to-script",
|
|
2218
|
+
"silent"
|
|
2219
|
+
]
|
|
2220
|
+
},
|
|
2221
|
+
"to-script": {
|
|
2222
|
+
"name": "to-script",
|
|
2223
|
+
"type": "boolean",
|
|
2224
|
+
"description": "Toscript interaction mode; renders the equivalent non-interactive cli command WITHOUT any execution.",
|
|
2225
|
+
"allowNo": false,
|
|
2226
|
+
"exclusive": [
|
|
2227
|
+
"echo",
|
|
2228
|
+
"silent"
|
|
2229
|
+
]
|
|
2230
|
+
},
|
|
2231
|
+
"take-defaults": {
|
|
2232
|
+
"name": "take-defaults",
|
|
2233
|
+
"type": "boolean",
|
|
2234
|
+
"description": "Setting this to true prevents prompting for confirmation on parameters that were passed in or were automatically set to default values (Irrelevant in --silent mode).",
|
|
2235
|
+
"allowNo": false,
|
|
2236
|
+
"exclusive": [
|
|
2237
|
+
"silent"
|
|
2238
|
+
]
|
|
2175
2239
|
}
|
|
2176
2240
|
},
|
|
2177
2241
|
"args": {
|
package/package.json
CHANGED