Skip to content

Commit f87fccb

Browse files
committed
Create release v2.11.0
1 parent fda56ec commit f87fccb

File tree

2 files changed

+262
-19
lines changed

2 files changed

+262
-19
lines changed

nuodb-cp.adoc

Lines changed: 67 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
:revnumber: 2.10.0
1+
:revnumber: 2.11.0
22
:toc: left
33

44
[#nuodb-cp]
@@ -16,6 +16,7 @@ nuodb-cp [-hV] [backup
1616
|server
1717
|external-operator
1818
|k8s
19+
|license
1920
|generate-completion
2021
|generate-doc]
2122
....
@@ -1003,7 +1004,8 @@ nuodb-cp database create [-hV] [-b=<urlBase>] [-u=<user>] [-p[=<password>]]
10031004
[--journal-size=<journalSize>]
10041005
[--tier-param=<String=String>]...
10051006
[--inherit-tier-params]
1006-
[--product-version=<productVersion>] DATABASE
1007+
[--product-version=<productVersion> |
1008+
--product-version-selector-tag=<matchesTag>] DATABASE
10071009
....
10081010

10091011
[cols="1,3"]
@@ -1062,7 +1064,12 @@ nuodb-cp database create [-hV] [-b=<urlBase>] [-u=<user>] [-p[=<password>]]
10621064
|Whether to inherit tier parameters from the project if the database service tier matches the project.
10631065

10641066
|`--product-version`
1065-
|The version/tag of the NuoDB image to use. For available tags, see https://hub.docker.com/r/nuodb/nuodb/tags. If omitted, the database version will be inherited from the project.
1067+
|The version/tag of the NuoDB image to use. For available tags, see https://hub.docker.com/r/nuodb/nuodb/tags. If omitted, the project version will be resolved based on the SLA and cluster configuration. +
1068+
*required*
1069+
1070+
|`--product-version-selector-tag`
1071+
|Set the version metadata tag to match a NuoDB version +
1072+
*required*
10661073

10671074
|`-h, --help`
10681075
|Show this help message and exit.
@@ -1410,8 +1417,9 @@ nuodb-cp project create [-hV] [-b=<urlBase>] [-u=<user>] [-p[=<password>]]
14101417
[--token=<token>] [--trusted-cert=<trustedCert>]
14111418
[-l=<String=String>]... --sla=<sla> --tier=<tier>
14121419
[--tier-param=<String=String>]...
1413-
[--product-version=<productVersion>]
1414-
[--expires-in=<expiresIn>] [--disabled] PROJECT
1420+
[--expires-in=<expiresIn>] [--disabled]
1421+
[--product-version=<productVersion> |
1422+
--product-version-selector-tag=<matchesTag>] PROJECT
14151423
....
14161424

14171425
[cols="1,3"]
@@ -1453,15 +1461,20 @@ nuodb-cp project create [-hV] [-b=<urlBase>] [-u=<user>] [-p[=<password>]]
14531461
|`--tier-param`
14541462
|Opaque parameter supplied to service tier
14551463

1456-
|`--product-version`
1457-
|The version/tag of the NuoDB image to use. For available tags, see https://hub.docker.com/r/nuodb/nuodb/tags. If omitted, the project version will be resolved based on the SLA and cluster configuration.
1458-
14591464
|`--expires-in`
14601465
|Set the database to expire after elapsed time
14611466

14621467
|`--disabled`
14631468
|Set the database as disabled
14641469

1470+
|`--product-version`
1471+
|The version/tag of the NuoDB image to use. For available tags, see https://hub.docker.com/r/nuodb/nuodb/tags. If omitted, the project version will be resolved based on the SLA and cluster configuration. +
1472+
*required*
1473+
1474+
|`--product-version-selector-tag`
1475+
|Set the version metadata tag to match a NuoDB version +
1476+
*required*
1477+
14651478
|`-h, --help`
14661479
|Show this help message and exit.
14671480

@@ -2038,6 +2051,7 @@ Start the DBaaS External Operator
20382051
nuodb-cp external-operator start [-hV] [--log-levels=<logLevels>]
20392052
[--kubeconfig=<kubeconfig>]
20402053
[--enable-leader-election]
2054+
[--disable-http-server] [--port=<port>]
20412055
[--property=<String=String>]... [-b=<urlBase>]
20422056
[-u=<user>] [-p[=<password>]]
20432057
[--token=<token>]
@@ -2055,6 +2069,12 @@ nuodb-cp external-operator start [-hV] [--log-levels=<logLevels>]
20552069
|`--enable-leader-election`
20562070
|Whether to enable leader election
20572071

2072+
|`--disable-http-server`
2073+
|Whether to disable HTTP server used for probes and metrics
2074+
2075+
|`--port`
2076+
|The port the HTTP server should listen on, if enabled
2077+
20582078
|`--property`
20592079
|A server property override
20602080

@@ -2297,6 +2317,45 @@ nuodb-cp k8s delete-cluster-config [-yhV] [-l=<labelFilter>]...
22972317

22982318
|===
22992319

2320+
[#license]
2321+
== license
2322+
2323+
Decode and check NuoDB licenses
2324+
2325+
....
2326+
nuodb-cp license [-chV] [-k=<key>] [-f=<file> | -s=<secret> |
2327+
--content=<content>]
2328+
....
2329+
2330+
[cols="1,3"]
2331+
|===
2332+
|`--file, -f`
2333+
|The file containing the NuoDB license +
2334+
*required*
2335+
2336+
|`--secret, -s`
2337+
|The Kubernetes Secret resource containing the NuoDB license +
2338+
*required*
2339+
2340+
|`--content`
2341+
|The NuoDB license content +
2342+
*required*
2343+
2344+
|`--key, -k`
2345+
|The key within the Kubernetes Secret resource containing the NuoDB license +
2346+
*default*: `nuodb.lic`
2347+
2348+
|`--check, -c`
2349+
|Whether to check that the license is valid
2350+
2351+
|`-h, --help`
2352+
|Show this help message and exit.
2353+
2354+
|`-V, --version`
2355+
|Print version information and exit.
2356+
2357+
|===
2358+
23002359
[#generate-completion]
23012360
== generate-completion
23022361

0 commit comments

Comments
 (0)