Skip to content

Commit 9d57e29

Browse files
committed
autogen(docs): generate cli docs
1 parent 5009d99 commit 9d57e29

11 files changed

+57
-45
lines changed

docs/oathkeeper/cli/oathkeeper-credentials-generate.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ This file is auto-generated.
99
1010
To improve this file please make your change against the appropriate "./cmd/*.go" file.
1111
-->
12-
1312
## oathkeeper credentials generate
1413

1514
Generate a key for the specified algorithm
@@ -18,8 +17,9 @@ Generate a key for the specified algorithm
1817

1918
Examples:
2019

21-
$ oathkeeper credentials generate --alg ES256 > jwks.json $ oathkeeper credentials generate --alg RS256 > jwks.json $
22-
oathkeeper credentials generate --alg RS256 --bits 4096 > jwks.json
20+
$ oathkeeper credentials generate --alg ES256 > jwks.json
21+
$ oathkeeper credentials generate --alg RS256 > jwks.json
22+
$ oathkeeper credentials generate --alg RS256 --bits 4096 > jwks.json
2323

2424
```
2525
oathkeeper credentials generate [flags]
@@ -42,4 +42,5 @@ oathkeeper credentials generate [flags]
4242

4343
### SEE ALSO
4444

45-
- [oathkeeper credentials](oathkeeper-credentials) - Generate RSA, ECDSA, and other keys and output them as JSON Web Keys
45+
* [oathkeeper credentials](oathkeeper-credentials) - Generate RSA, ECDSA, and other keys and output them as JSON Web Keys
46+

docs/oathkeeper/cli/oathkeeper-credentials.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ This file is auto-generated.
99
1010
To improve this file please make your change against the appropriate "./cmd/*.go" file.
1111
-->
12-
1312
## oathkeeper credentials
1413

1514
Generate RSA, ECDSA, and other keys and output them as JSON Web Keys
@@ -28,5 +27,6 @@ Generate RSA, ECDSA, and other keys and output them as JSON Web Keys
2827

2928
### SEE ALSO
3029

31-
- [oathkeeper](oathkeeper) - A cloud native Access and Identity Proxy
32-
- [oathkeeper credentials generate](oathkeeper-credentials-generate) - Generate a key for the specified algorithm
30+
* [oathkeeper](oathkeeper) - A cloud native Access and Identity Proxy
31+
* [oathkeeper credentials generate](oathkeeper-credentials-generate) - Generate a key for the specified algorithm
32+

docs/oathkeeper/cli/oathkeeper-health-alive.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,19 @@ This file is auto-generated.
99
1010
To improve this file please make your change against the appropriate "./cmd/*.go" file.
1111
-->
12-
1312
## oathkeeper health alive
1413

1514
Checks if an ORY Oathkeeper deployment is alive
1615

1716
### Synopsis
1817

19-
Usage example: oathkeeper health --endpoint=http://localhost:4456/ alive
18+
Usage example:
19+
oathkeeper health --endpoint=http://localhost:4456/ alive
20+
21+
Note:
22+
The endpoint URL should point to a single ORY Oathkeeper deployment.
23+
If the endpoint URL points to a Load Balancer, these commands will effective test the Load Balancer.
2024

21-
Note: The endpoint URL should point to a single ORY Oathkeeper deployment. If the endpoint URL points to a Load Balancer, these
22-
commands will effective test the Load Balancer.
2325

2426
```
2527
oathkeeper health alive [flags]
@@ -40,4 +42,5 @@ oathkeeper health alive [flags]
4042

4143
### SEE ALSO
4244

43-
- [oathkeeper health](oathkeeper-health) - Commands for checking the status of an ORY Oathkeeper deployment
45+
* [oathkeeper health](oathkeeper-health) - Commands for checking the status of an ORY Oathkeeper deployment
46+

docs/oathkeeper/cli/oathkeeper-health-ready.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,19 @@ This file is auto-generated.
99
1010
To improve this file please make your change against the appropriate "./cmd/*.go" file.
1111
-->
12-
1312
## oathkeeper health ready
1413

1514
Checks if an ORY Oathkeeper deployment is ready
1615

1716
### Synopsis
1817

19-
Usage example: oathkeeper health --endpoint=http://localhost:4456/ ready
18+
Usage example:
19+
oathkeeper health --endpoint=http://localhost:4456/ ready
20+
21+
Note:
22+
The endpoint URL should point to a single ORY Oathkeeper deployment.
23+
If the endpoint URL points to a Load Balancer, these commands will effective test the Load Balancer.
2024

21-
Note: The endpoint URL should point to a single ORY Oathkeeper deployment. If the endpoint URL points to a Load Balancer, these
22-
commands will effective test the Load Balancer.
2325

2426
```
2527
oathkeeper health ready [flags]
@@ -40,4 +42,5 @@ oathkeeper health ready [flags]
4042

4143
### SEE ALSO
4244

43-
- [oathkeeper health](oathkeeper-health) - Commands for checking the status of an ORY Oathkeeper deployment
45+
* [oathkeeper health](oathkeeper-health) - Commands for checking the status of an ORY Oathkeeper deployment
46+

docs/oathkeeper/cli/oathkeeper-health.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,16 @@ This file is auto-generated.
99
1010
To improve this file please make your change against the appropriate "./cmd/*.go" file.
1111
-->
12-
1312
## oathkeeper health
1413

1514
Commands for checking the status of an ORY Oathkeeper deployment
1615

1716
### Synopsis
1817

19-
Note: The endpoint URL should point to a single ORY Oathkeeper deployment. If the endpoint URL points to a Load Balancer, these
20-
commands will effective test the Load Balancer.
18+
Note:
19+
The endpoint URL should point to a single ORY Oathkeeper deployment.
20+
If the endpoint URL points to a Load Balancer, these commands will effective test the Load Balancer.
21+
2122

2223
```
2324
oathkeeper health [flags]
@@ -38,6 +39,7 @@ oathkeeper health [flags]
3839

3940
### SEE ALSO
4041

41-
- [oathkeeper](oathkeeper) - A cloud native Access and Identity Proxy
42-
- [oathkeeper health alive](oathkeeper-health-alive) - Checks if an ORY Oathkeeper deployment is alive
43-
- [oathkeeper health ready](oathkeeper-health-ready) - Checks if an ORY Oathkeeper deployment is ready
42+
* [oathkeeper](oathkeeper) - A cloud native Access and Identity Proxy
43+
* [oathkeeper health alive](oathkeeper-health-alive) - Checks if an ORY Oathkeeper deployment is alive
44+
* [oathkeeper health ready](oathkeeper-health-ready) - Checks if an ORY Oathkeeper deployment is ready
45+

docs/oathkeeper/cli/oathkeeper-rules-get.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ This file is auto-generated.
99
1010
To improve this file please make your change against the appropriate "./cmd/*.go" file.
1111
-->
12-
1312
## oathkeeper rules get
1413

1514
Get access rule
@@ -18,7 +17,8 @@ Get access rule
1817

1918
Usage example:
2019

21-
oathkeeper rules --endpoint=http://localhost:4456/ get rule-1
20+
oathkeeper rules --endpoint=http://localhost:4456/ get rule-1
21+
2222

2323
```
2424
oathkeeper rules get <id> [flags]
@@ -39,4 +39,5 @@ oathkeeper rules get <id> [flags]
3939

4040
### SEE ALSO
4141

42-
- [oathkeeper rules](oathkeeper-rules) - Commands for managing rules
42+
* [oathkeeper rules](oathkeeper-rules) - Commands for managing rules
43+

docs/oathkeeper/cli/oathkeeper-rules-list.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ This file is auto-generated.
99
1010
To improve this file please make your change against the appropriate "./cmd/*.go" file.
1111
-->
12-
1312
## oathkeeper rules list
1413

1514
List access rules
@@ -18,7 +17,8 @@ List access rules
1817

1918
Usage example:
2019

21-
oathkeeper rules --endpoint=http://localhost:4456/ list
20+
oathkeeper rules --endpoint=http://localhost:4456/ list
21+
2222

2323
```
2424
oathkeeper rules list [flags]
@@ -41,4 +41,5 @@ oathkeeper rules list [flags]
4141

4242
### SEE ALSO
4343

44-
- [oathkeeper rules](oathkeeper-rules) - Commands for managing rules
44+
* [oathkeeper rules](oathkeeper-rules) - Commands for managing rules
45+

docs/oathkeeper/cli/oathkeeper-rules.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ This file is auto-generated.
99
1010
To improve this file please make your change against the appropriate "./cmd/*.go" file.
1111
-->
12-
1312
## oathkeeper rules
1413

1514
Commands for managing rules
@@ -33,6 +32,7 @@ oathkeeper rules [flags]
3332

3433
### SEE ALSO
3534

36-
- [oathkeeper](oathkeeper) - A cloud native Access and Identity Proxy
37-
- [oathkeeper rules get](oathkeeper-rules-get) - Get access rule
38-
- [oathkeeper rules list](oathkeeper-rules-list) - List access rules
35+
* [oathkeeper](oathkeeper) - A cloud native Access and Identity Proxy
36+
* [oathkeeper rules get](oathkeeper-rules-get) - Get access rule
37+
* [oathkeeper rules list](oathkeeper-rules-list) - List access rules
38+

docs/oathkeeper/cli/oathkeeper-serve.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ This file is auto-generated.
99
1010
To improve this file please make your change against the appropriate "./cmd/*.go" file.
1111
-->
12-
1312
## oathkeeper serve
1413

1514
Starts the HTTP/2 REST API and HTTP/2 Reverse Proxy
@@ -20,11 +19,12 @@ Opens two ports for serving both the HTTP/2 Rest API and the HTTP/2 Reverse Prox
2019

2120
## Configuration
2221

23-
ORY Oathkeeper can be configured using environment variables as well as a configuration file. For more information on
24-
configuration options, open the configuration documentation:
22+
ORY Oathkeeper can be configured using environment variables as well as a configuration file. For more information
23+
on configuration options, open the configuration documentation:
2524

2625
>> https://www.ory.sh/oathkeeper/docs/configuration <<
2726

27+
2828
```
2929
oathkeeper serve [flags]
3030
```
@@ -45,4 +45,5 @@ oathkeeper serve [flags]
4545

4646
### SEE ALSO
4747

48-
- [oathkeeper](oathkeeper) - A cloud native Access and Identity Proxy
48+
* [oathkeeper](oathkeeper) - A cloud native Access and Identity Proxy
49+

docs/oathkeeper/cli/oathkeeper-version.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ This file is auto-generated.
99
1010
To improve this file please make your change against the appropriate "./cmd/*.go" file.
1111
-->
12-
1312
## oathkeeper version
1413

1514
Display this binary's version, build time and git hash of this build
@@ -32,4 +31,5 @@ oathkeeper version [flags]
3231

3332
### SEE ALSO
3433

35-
- [oathkeeper](oathkeeper) - A cloud native Access and Identity Proxy
34+
* [oathkeeper](oathkeeper) - A cloud native Access and Identity Proxy
35+

0 commit comments

Comments
 (0)