Skip to content

Commit ae4d234

Browse files
committed
add --tls-ca option to influxdb3 commands
1 parent 25bdf6e commit ae4d234

25 files changed

+34
-11
lines changed

content/shared/influxdb3-cli/create/_index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ influxdb3 create <SUBCOMMAND>
1212

1313
## Subcommands
1414

15-
| Subcommand | Description |
16-
| :------------------------------------------------------------------------------------- | :---------------------------------------------- |
15+
| Subcommand | Description |
16+
| :---------------------------------------------------------------------------------- | :---------------------------------------------- |
1717
| [database](/influxdb3/version/reference/cli/influxdb3/create/database/) | Create a new database |
1818
| [file_index](/influxdb3/version/reference/cli/influxdb3/create/file_index/) | Create a new file index for a database or table |
1919
| [last_cache](/influxdb3/version/reference/cli/influxdb3/create/last_cache/) | Create a new last value cache |
@@ -22,7 +22,7 @@ influxdb3 create <SUBCOMMAND>
2222
| [table](/influxdb3/version/reference/cli/influxdb3/create/table/) | Create a new table in a database |
2323
| [token](/influxdb3/version/reference/cli/influxdb3/create/token/) | Create a new authentication token |
2424
| [trigger](/influxdb3/version/reference/cli/influxdb3/create/trigger/) | Create a new trigger for the processing engine |
25-
| help | Print command help or the help of a subcommand |
25+
| help | Print command help or the help of a subcommand |
2626

2727
## Options
2828

content/shared/influxdb3-cli/create/database.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ influxdb3 create database [OPTIONS] <DATABASE_NAME>
2323
| :----- | :----------- | :--------------------------------------------------------------------------------------- |
2424
| `-H` | `--host` | Host URL of the running {{< product-name >}} server (default is `http://127.0.0.1:8181`) |
2525
| | `--token` | Authentication token |
26+
| | `--tls-ca` | Path to a custom TLS certificate authority (for testing or self-signed certificates) |
2627
| `-h` | `--help` | Print help information |
2728
| | `--help-all` | Print detailed help information |
2829

content/shared/influxdb3-cli/create/distinct_cache.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ influxdb3 create distinct_cache [OPTIONS] \
3030
| | `--columns` | _({{< req >}})_ Comma-separated list of columns to cache distinct values for--for example: `col1,col2,col3` (see [Metadata cache hierarchy](#metadata-cache-hierarchy)) |
3131
| | `--max-cardinality` | Maximum number of distinct value combinations to hold in the cache |
3232
| | `--max-age` | Maximum age of an entry in the cache entered as a human-readable duration--for example: `30d`, `24h` |
33+
| | `--tls-ca` | Path to a custom TLS certificate authority (for testing or self-signed certificates) |
3334
| `-h` | `--help` | Print help information |
3435
| | `--help-all` | Print detailed help information |
3536

content/shared/influxdb3-cli/create/file_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ influxdb3 create file_index [OPTIONS] \
2525
| `-d` | `--database` | _({{< req >}})_ Name of the database to operate on |
2626
| | `--token` | _({{< req >}})_ Authentication token |
2727
| `-t` | `--table` | Table to apply the file index too |
28+
| | `--tls-ca` | Path to a custom TLS certificate authority (for testing or self-signed certificates) |
2829
| `-h` | `--help` | Print help information |
2930
| | `--help-all` | Print detailed help information |
3031

content/shared/influxdb3-cli/create/last_cache.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ influxdb3 create last_cache [OPTIONS] --database <DATABASE_NAME> --table <TABLE>
2626
| | `--value-columns` | Comma-separated list of columns to store as values in the cache--for example: `foo,bar,baz` |
2727
| | `--count` | Number of entries per unique key column combination to store in the cache |
2828
| | `--ttl` | Cache entries' time-to-live (TTL) in [Humantime form](https://docs.rs/humantime/latest/humantime/fn.parse_duration.html)--for example: `10s`, `1min 30sec`, `3 hours` |
29+
| | `--tls-ca` | Path to a custom TLS certificate authority (for testing or self-signed certificates) |
2930
| `-h` | `--help` | Print help information |
3031
| | `--help-all` | Print detailed help information |
3132

content/shared/influxdb3-cli/create/plugin.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ influxdb3 create plugin [OPTIONS] \
2828
| | `--filename` | _({{< req >}})_ Name of the plugin Python file in the plugin directory |
2929
| | `--entry-point` | _({{< req >}})_ Entry point function name for the plugin |
3030
| | `--plugin-type` | Type of trigger the plugin processes (default is `wal_rows`) |
31+
| | `--tls-ca` | Path to a custom TLS certificate authority (for testing or self-signed certificates) |
3132
| `-h` | `--help` | Print help information |
3233
| | `--help-all` | Print detailed help information |
3334

content/shared/influxdb3-cli/create/table.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ influxdb3 create table [OPTIONS] \
2626
| | `--token` | _({{< req >}})_ Authentication token |
2727
| | `--tags` | _({{< req >}})_ Comma-separated list of tag columns to include in the table |
2828
| | `--fields` | Comma-separated list of field columns and their types to include in the table |
29+
| | `--tls-ca` | Path to a custom TLS certificate authority (for testing or self-signed certificates) |
2930
| `-h` | `--help` | Print help information |
3031
| | `--help-all` | Print detailed help information |
3132

content/shared/influxdb3-cli/create/trigger.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ influxdb3 create trigger [OPTIONS] \
2929
| | `--plugin` | Plugin to execute when the trigger fires |
3030
| | `--trigger-spec` | Trigger specification--for example `table:<TABLE_NAME>` or `all_tables` |
3131
| | `--disabled` | Create the trigger in disabled state |
32+
| | `--tls-ca` | Path to a custom TLS certificate authority (for testing or self-signed certificates) |
3233
| `-h` | `--help` | Print help information |
3334
| | `--help-all` | Print detailed help information |
3435

content/shared/influxdb3-cli/delete/database.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ influxdb3 delete database [OPTIONS] <DATABASE_NAME>
2121
| :----- | :----------- | :--------------------------------------------------------------------------------------- |
2222
| `-H` | `--host` | Host URL of the running {{< product-name >}} server (default is `http://127.0.0.1:8181`) |
2323
| | `--token` | Authentication token |
24+
| | `--tls-ca` | Path to a custom TLS certificate authority (for testing or self-signed certificates) |
2425
| `-h` | `--help` | Print help information |
2526
| | `--help-all` | Print detailed help information |
2627

content/shared/influxdb3-cli/delete/distinct_cache.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ influxdb3 delete distinct_cache [OPTIONS] \
2424
| `-d` | `--database` | _({{< req >}})_ Name of the database to operate on |
2525
| | `--token` | _({{< req >}})_ Authentication token |
2626
| `-t` | `--table` | _({{< req >}})_ Table to delete the cache for |
27+
| | `--tls-ca` | Path to a custom TLS certificate authority (for testing or self-signed certificates) |
2728
| `-h` | `--help` | Print help information |
2829
| | `--help-all` | Print detailed help information |
2930

0 commit comments

Comments
 (0)