Add AWS DB types (#464)
* Add remaining data store options Signed-off-by: Kevin Fox <[email protected]> * Fix env var Signed-off-by: Kevin Fox <[email protected]> * Add aws db types Signed-off-by: Kevin Fox <[email protected]> * Update charts/spire/README.md Co-authored-by: Faisal Memon <[email protected]> Signed-off-by: kfox1111 <[email protected]> * Update charts/spire/README.md Co-authored-by: Faisal Memon <[email protected]> Signed-off-by: kfox1111 <[email protected]> * Fix mysql vars Signed-off-by: Kevin Fox <[email protected]> * Incorperate feedback Signed-off-by: Kevin Fox <[email protected]> * Incorperate feedback Signed-off-by: Kevin Fox <[email protected]> * Fix missing ) Signed-off-by: Kevin Fox <[email protected]> * Incorperate feedback Signed-off-by: Kevin Fox <[email protected]> * Update charts/spire/charts/spire-server/values.yaml Co-authored-by: Marco Franssen <[email protected]> Signed-off-by: kfox1111 <[email protected]> * Fix readme Signed-off-by: Kevin Fox <[email protected]> --------- Signed-off-by: Kevin Fox <[email protected]> Signed-off-by: kfox1111 <[email protected]> Co-authored-by: Faisal Memon <[email protected]> Co-authored-by: Marco Franssen <[email protected]>
This commit is contained in:
co-authored by
Faisal Memon
Marco Franssen
parent
898a349297
commit
c29f45fc30
@@ -155,19 +155,19 @@ persistence:
|
||||
|
||||
dataStore:
|
||||
sql:
|
||||
## @param dataStore.sql.databaseType Other supported databases are "postgres" and "mysql"
|
||||
## @param dataStore.sql.databaseType Other supported databases are ["postgres", "mysql", "aws_postgresql", "aws_mysql"]. Note: aws type databases are still experimental
|
||||
databaseType: sqlite3
|
||||
## @param dataStore.sql.databaseName Only used by "postgres" or "mysql"
|
||||
## @param dataStore.sql.databaseName Only used when type != "sqlite3"
|
||||
databaseName: spire
|
||||
## @param dataStore.sql.host Only used by "postgres" or "mysql"
|
||||
## @param dataStore.sql.host Only used when type != "sqlite3"
|
||||
host: ""
|
||||
## @param dataStore.sql.port If 0 (default), it will auto set to 5432 for postgres and 3306 for mysql. Only used by those databases.
|
||||
port: 0
|
||||
## @param dataStore.sql.username Only used by "postgres" or "mysql"
|
||||
## @param dataStore.sql.username Only used when type != "sqlite3"
|
||||
username: spire
|
||||
## @param dataStore.sql.password Only used by "postgres" or "mysql"
|
||||
## @param dataStore.sql.password Only used when type != "sqlite3"
|
||||
password: ""
|
||||
## @param dataStore.sql.options [array] Only used by "postgres" or "mysql"
|
||||
## @param dataStore.sql.options [array] Only used when type != "sqlite3"
|
||||
options: []
|
||||
|
||||
## @param dataStore.sql.rootCAPath Path to Root CA bundle (MySQL only)
|
||||
@@ -195,18 +195,21 @@ dataStore:
|
||||
## @param dataStore.sql.disableMigration True to disable auto-migration functionality
|
||||
disableMigration: false
|
||||
|
||||
## @param dataStore.sql.region Region to use when database type is either aws_mysql or aws_postgresql
|
||||
region: ""
|
||||
|
||||
readOnly:
|
||||
## @param dataStore.sql.readOnly.enabled Set to true to configure a readOnly dartabase connection
|
||||
enabled: false
|
||||
## @param dataStore.sql.readOnly.host Only used by "postgres" or "mysql"
|
||||
## @param dataStore.sql.readOnly.host Only used when type != "sqlite3"
|
||||
host: ""
|
||||
## @param dataStore.sql.readOnly.port If 0 (default), it will auto set to 5432 for postgres and 3306 for mysql. Only used by those databases.
|
||||
port: 0
|
||||
## @param dataStore.sql.readOnly.username Only used by "postgres" or "mysql"
|
||||
## @param dataStore.sql.readOnly.username Only used when type != "sqlite3"
|
||||
username: spire
|
||||
## @param dataStore.sql.readOnly.password Only used by "postgres" or "mysql"
|
||||
## @param dataStore.sql.readOnly.password Only used when type != "sqlite3"
|
||||
password: ""
|
||||
## @param dataStore.sql.readOnly.options [array] Only used by "postgres" or "mysql"
|
||||
## @param dataStore.sql.readOnly.options [array] Only used when type != "sqlite3"
|
||||
options: []
|
||||
## When an external source creates the secret. The secret should reside in the same namespace as the spire server
|
||||
externalSecret:
|
||||
|
||||
Reference in New Issue
Block a user