Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitdbea003

Browse files
committed
make gen
1 parentc821ddb commitdbea003

18 files changed

+100
-0
lines changed

‎cli/testdata/coder_server_--help.golden

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@ OPTIONS:
4444
Separate multiple experiments with commas, or enter '*' to opt-in to
4545
all available experiments.
4646

47+
--postgres-auth password|awsrdsiam, $CODER_PG_AUTH (default: password)
48+
Type of auth to use when connecting to postgres.
49+
4750
--postgres-url string, $CODER_PG_CONNECTION_URL
4851
URL of a PostgreSQL database. If empty, PostgreSQL binaries will be
4952
downloaded from Maven (https://repo1.maven.org/maven2) and store all

‎cli/testdata/coder_server_create-admin-user_--help.golden

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ USAGE:
77
it to every organization.
88

99
OPTIONS:
10+
--postgres-connection-auth password|awsrdsiam, $CODER_PG_CONNECTION_AUTH (default: password)
11+
Type of auth to use when connecting to postgres.
12+
1013
--email string, $CODER_EMAIL
1114
The email of the new user. If not specified, you will be prompted via
1215
stdin.

‎cli/testdata/server-config.yaml.golden

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -402,6 +402,18 @@ cacheDir: [cache dir]
402402
# Controls whether data will be stored in an in-memory database.
403403
# (default: <unset>, type: bool)
404404
inMemoryDatabase: false
405+
# URL of a PostgreSQL database. If empty, PostgreSQL binaries will be downloaded
406+
# from Maven (https://repo1.maven.org/maven2) and store all data in the config
407+
# root. Access the built-in database with "coder server postgres-builtin-url".
408+
# (default: <unset>, type: string)
409+
pgConnectionURL: ""
410+
# Type of auth to use when connecting to postgres.
411+
# (default: password, type: enum[password\|awsrdsiam])
412+
pgAuth:
413+
choices:
414+
- password
415+
- awsrdsiam
416+
value: password
405417
# The algorithm to use for generating ssh keys. Accepted values are "ed25519",
406418
# "ecdsa", or "rsa4096".
407419
# (default: ed25519, type: string)

‎coderd/apidoc/docs.go

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more aboutcustomizing how changed files appear on GitHub.

‎coderd/apidoc/swagger.json

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more aboutcustomizing how changed files appear on GitHub.

‎docs/api/general.md

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more aboutcustomizing how changed files appear on GitHub.

‎docs/api/schemas.md

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more aboutcustomizing how changed files appear on GitHub.

‎docs/cli/server.md

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more aboutcustomizing how changed files appear on GitHub.

‎docs/cli/server_create-admin-user.md

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more aboutcustomizing how changed files appear on GitHub.

‎docs/cli/server_dbcrypt_decrypt.md

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more aboutcustomizing how changed files appear on GitHub.

‎docs/cli/server_dbcrypt_delete.md

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more aboutcustomizing how changed files appear on GitHub.

‎docs/cli/server_dbcrypt_rotate.md

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more aboutcustomizing how changed files appear on GitHub.

‎enterprise/cli/testdata/coder_server_--help.golden

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@ OPTIONS:
4545
Separate multiple experiments with commas, or enter '*' to opt-in to
4646
all available experiments.
4747

48+
--postgres-auth password|awsrdsiam, $CODER_PG_AUTH (default: password)
49+
Type of auth to use when connecting to postgres.
50+
4851
--postgres-url string, $CODER_PG_CONNECTION_URL
4952
URL of a PostgreSQL database. If empty, PostgreSQL binaries will be
5053
downloaded from Maven (https://repo1.maven.org/maven2) and store all

‎enterprise/cli/testdata/coder_server_create-admin-user_--help.golden

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ USAGE:
77
it to every organization.
88

99
OPTIONS:
10+
--postgres-connection-auth password|awsrdsiam, $CODER_PG_CONNECTION_AUTH (default: password)
11+
Type of auth to use when connecting to postgres.
12+
1013
--email string, $CODER_EMAIL
1114
The email of the new user. If not specified, you will be prompted via
1215
stdin.

‎enterprise/cli/testdata/coder_server_dbcrypt_decrypt_--help.golden

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ USAGE:
66
Decrypt a previously encrypted database.
77

88
OPTIONS:
9+
--postgres-connection-auth password|awsrdsiam, $CODER_PG_CONNECTION_AUTH (default: password)
10+
Type of auth to use when connecting to postgres.
11+
912
--keys string-array, $CODER_EXTERNAL_TOKEN_ENCRYPTION_DECRYPT_KEYS
1013
Keys required to decrypt existing data. Must be a comma-separated list
1114
of base64-encoded keys.

‎enterprise/cli/testdata/coder_server_dbcrypt_delete_--help.golden

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ USAGE:
88
Aliases: rm
99

1010
OPTIONS:
11+
--postgres-connection-auth password|awsrdsiam, $CODER_PG_CONNECTION_AUTH (default: password)
12+
Type of auth to use when connecting to postgres.
13+
1114
--postgres-url string, $CODER_EXTERNAL_TOKEN_ENCRYPTION_POSTGRES_URL
1215
The connection URL for the Postgres database.
1316

‎enterprise/cli/testdata/coder_server_dbcrypt_rotate_--help.golden

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ USAGE:
66
Rotate database encryption keys.
77

88
OPTIONS:
9+
--postgres-connection-auth password|awsrdsiam, $CODER_PG_CONNECTION_AUTH (default: password)
10+
Type of auth to use when connecting to postgres.
11+
912
--new-key string, $CODER_EXTERNAL_TOKEN_ENCRYPTION_ENCRYPT_NEW_KEY
1013
The new external token encryption key. Must be base64-encoded.
1114

‎site/src/api/typesGenerated.ts

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more aboutcustomizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp