-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add janitor/control plane services, cleanup. #69
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -155,11 +155,6 @@ metastore: | |
# cpu: 100m | ||
# memory: 128Mi | ||
|
||
## Pod distruption budget | ||
podDisruptionBudget: {} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. cleanup: was not used in the chart. |
||
# maxUnavailable: 1 | ||
# minAvailable: 2 | ||
|
||
updateStrategy: {} | ||
# type: RollingUpdate | ||
|
||
|
@@ -187,8 +182,6 @@ metastore: | |
affinity: {} | ||
|
||
control_plane: | ||
replicaCount: 1 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. we don't want more than 1 control plane |
||
|
||
# Extra env for control plane | ||
extraEnv: {} | ||
# KEY: VALUE | ||
|
@@ -201,14 +194,6 @@ control_plane: | |
# cpu: 100m | ||
# memory: 128Mi | ||
|
||
## Pod distruption budget | ||
podDisruptionBudget: {} | ||
# maxUnavailable: 1 | ||
# minAvailable: 2 | ||
|
||
updateStrategy: {} | ||
# type: RollingUpdate | ||
|
||
startupProbe: | ||
httpGet: | ||
path: /health/livez | ||
|
@@ -248,14 +233,6 @@ janitor: | |
# cpu: 100m | ||
# memory: 128Mi | ||
|
||
## Pod distruption budget | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. was not used |
||
podDisruptionBudget: {} | ||
# maxUnavailable: 1 | ||
# minAvailable: 2 | ||
|
||
updateStrategy: {} | ||
# type: RollingUpdate | ||
|
||
startupProbe: | ||
httpGet: | ||
path: /health/livez | ||
|
@@ -306,14 +283,20 @@ bootstrap: | |
# Quickwit configuration | ||
config: | ||
# Metastore configuration. | ||
postgres: {} | ||
# Default to `qwdata/indexes` if not set. | ||
# S3 metastore | ||
# metastore_uri: s3://quickwit/indexes | ||
# | ||
# Postgres metastore | ||
# postgres: | ||
# host: "" | ||
# port: 5432 | ||
# database: metastore | ||
# username: quickwit | ||
# password: "" | ||
# max_num_connections: 50 | ||
|
||
# Storage configuration. | ||
# storage: | ||
# s3: | ||
# endpoint: "http://custom-s3-endpoint" | ||
|
@@ -327,6 +310,7 @@ config: | |
# access_key: "my-azure-blob-access-key" | ||
|
||
default_index_root_uri: s3://quickwit/indexes | ||
|
||
# Indexer settings | ||
# indexer: | ||
# split_store_max_num_bytes: 200G | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ensures only one control plane in the metastore when upgrading the chart.