Skip to content

Commit ffe7e05

Browse files
authored
Merge pull request #6100 from influxdata/6099-v3-1-monolith-release
6099 v3 1 monolith release
2 parents feb483e + f4e8b21 commit ffe7e05

File tree

37 files changed

+525
-416
lines changed

37 files changed

+525
-416
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Manage tokens
33
description: >
4-
Manage tokens to authenticate and authorize access to resources and data in an {{< product-name >}} instance.
4+
Manage tokens to authenticate and authorize access to server actions, resources, and data in an {{< product-name >}} instance.
55
menu:
66
influxdb3_core:
77
parent: Administer InfluxDB
@@ -11,4 +11,4 @@ source: /shared/influxdb3-admin/tokens/_index.md
1111

1212
<!-- The content for this page is at
1313
// SOURCE content/shared/influxdb3-admin/tokens/_index.md
14-
-->>
14+
-->

content/influxdb3/core/admin/tokens/admin/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ menu:
1111
name: Admin tokens
1212
weight: 101
1313
influxdb3/core/tags: [tokens]
14-
source: /shared/influxdb3-admin/tokens/_index.md
14+
source: /shared/influxdb3-admin/tokens/admin.md
1515
---
1616

1717
<!-- The content for this page is at
18-
// SOURCE content/shared/influxdb3-admin/tokens/_index.md
18+
// SOURCE content/shared/influxdb3-admin/tokens/admin.md
1919
-->

content/influxdb3/core/admin/tokens/admin/create.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Create an admin token
33
description: >
44
Use the [`influxdb3 create token --admin` command](/influxdb3/core/reference/cli/influxdb3/create/token/)
5-
or the [HTTP API](/influxdb3/core/api/v3/)
5+
or the HTTP API [`/api/v3/configure/token/admin`](/influxdb3/core/api/v3/#operation/PostCreateAdminToken) endpoint
66
to create an [admin token](/influxdb3/core/admin/tokens/admin/) for your {{< product-name omit="Clustered" >}} instance.
77
An admin token grants access to all actions on the server.
88
menu:

content/influxdb3/core/admin/tokens/admin/regenerate.md

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22
title: Regenerate an admin token
33
description: >
44
Use the [`influxdb3 create token --admin` command](/influxdb3/core/reference/cli/influxdb3/create/token/)
5-
or the [HTTP API](/influxdb3/core/api/v3/)
6-
to regenerate an [admin token](/influxdb3/core/admin/tokens/admin/) for your {{< product-name omit="Clustered" >}} instance.
7-
An admin token grants access to all actions on the server.
8-
Regenerating an admin token deactivates the previous token.
5+
or the HTTP API [`/api/v3/configure/token/admin/regenerate`](/influxdb3/core/api/v3/#operation/PostRegenerateAdminToken) endpoint
6+
to regenerate an [operator token](/influxdb3/core/admin/tokens/admin/) for your {{< product-name omit="Clustered" >}} instance.
7+
Regenerating an operator token deactivates the previous token.
98
menu:
109
influxdb3_core:
1110
parent: Admin tokens
@@ -14,8 +13,15 @@ list_code_example: |
1413
##### CLI
1514
```bash
1615
influxdb3 create token --admin \
17-
--token ADMIN_TOKEN \
1816
--regenerate
17+
OPERATOR_TOKEN
18+
```
19+
#### HTTP API
20+
```bash
21+
curl -X POST "http://{{< influxdb/host >}}/api/v3/configure/token/admin/regenerate" \
22+
--header 'Authorization Bearer OPERATOR_TOKEN' \
23+
--header 'Accept: application/json'
24+
--header 'Content-Type: application/json'
1925
```
2026
source: /shared/influxdb3-admin/tokens/admin/regenerate.md
2127
---

content/influxdb3/core/install.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ alt_links:
1212

1313
- [System Requirements](#system-requirements)
1414
- [Quick install](#quick-install)
15-
- [Download {{< product-name >}} binaries](#download-influxdb-3-{{< product-key >}}-binaries)
15+
- [Download {{% product-name %}} binaries](#download-influxdb-3-{{< product-key >}}-binaries)
1616
- [Docker image](#docker-image)
1717

1818
## System Requirements
@@ -79,7 +79,7 @@ source ~/.zshrc
7979
{{% /code-tab-content %}}
8080
{{< /code-tabs-wrapper >}}
8181
82-
## Download {{< product-name >}} binaries
82+
## Download {{% product-name %}} binaries
8383
8484
{{< tabs-wrapper >}}
8585
{{% tabs %}}

content/influxdb3/core/reference/cli/influxdb3/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ influxdb3 -h
103103
influxdb3 --help
104104
```
105105

106-
### Run the {{< product-name >}} server with extra verbose logging
106+
### Run the {{% product-name %}} server with extra verbose logging
107107

108108
<!--pytest.mark.skip-->
109109

@@ -114,7 +114,7 @@ influxdb3 serve -v \
114114
--node-id my-host-01
115115
```
116116

117-
### Run {{< product-name >}} with debug logging using LOG_FILTER
117+
### Run {{% product-name %}} with debug logging using LOG_FILTER
118118

119119
<!--pytest.mark.skip-->
120120

content/influxdb3/core/reference/cli/influxdb3/create/token.md renamed to content/influxdb3/core/reference/cli/influxdb3/create/token/_index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ description: >
55
menu:
66
influxdb3_core:
77
parent: influxdb3 create
8-
name: influxdb3 create token
8+
name: influxdb3 create token
99
weight: 400
10-
source: /shared/influxdb3-cli/create/token.md
10+
source: /shared/influxdb3-cli/create/token/_index.md
1111
---
1212

1313
<!-- The content for this page is at
14-
// SOURCE content/shared/influxdb3-cli/create/token.md
14+
// SOURCE content/shared/influxdb3-cli/create/token/_index.md
1515
-->
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
title: influxdb3 create token admin
3+
description: >
4+
The `influxdb3 create token admin` command creates an operator token or named admin token with full administrative privileges for server actions.
5+
menu:
6+
influxdb3_core:
7+
parent: influxdb3 create token
8+
name: influxdb3 create token admin
9+
weight: 400
10+
source: /shared/influxdb3-cli/create/token/admin.md
11+
---
12+
13+
<!-- The content for this page is at
14+
// SOURCE content/shared/influxdb3-cli/create/token/admin.md
15+
-->

content/influxdb3/enterprise/admin/license.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ existing license if it's still valid.
153153
environment variable
154154
7. If no license is found, the server won't start
155155
156-
#### Example: Start the {{< product-name >}} server with your license email:
156+
#### Example: Start the {{% product-name %}} server with your license email:
157157
158158
{{< code-tabs-wrapper >}}
159159
{{% code-tabs %}}
@@ -187,7 +187,7 @@ influxdb3 serve \
187187
{{% /code-tab-content %}}
188188
{{< /code-tabs-wrapper >}}
189189

190-
#### Example: Start the {{< product-name >}} server with your license file:
190+
#### Example: Start the {{% product-name %}} server with your license file:
191191

192192
{{< code-tabs-wrapper >}}
193193
{{% code-tabs %}}

content/influxdb3/enterprise/admin/tokens/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Manage tokens
33
description: >
4-
Manage tokens to authenticate and authorize access to resources and data in an {{< product-name >}} instance.
4+
Manage tokens to authenticate and authorize access to server actions, resources, and data in an {{< product-name >}} instance.
55
menu:
66
influxdb3_enterprise:
77
parent: Administer InfluxDB

0 commit comments

Comments
 (0)