Skip to content
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

Increased the max payload in the ingress. #56

Merged
merged 5 commits into from
Dec 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/quickwit/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: quickwit
description: Sub-second search & analytics engine on cloud storage.
type: application
version: 0.5.1
version: 0.5.2
appVersion: "v0.6.4"
keywords:
- quickwit
Expand Down
41 changes: 16 additions & 25 deletions charts/quickwit/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ image:
repository: quickwit/quickwit
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
# tag: v0.6.4
# tag: v0.6.1

imagePullSecrets: []
nameOverride: ""
Expand Down Expand Up @@ -58,8 +58,6 @@ searcher:
# maxUnavailable: 1
# minAvailable: 2

# podManagementPolicy: OrderedReady

persistentVolume:
enabled: false
# storage: "1Gi"
Expand Down Expand Up @@ -111,8 +109,6 @@ indexer:
# maxUnavailable: 1
# minAvailable: 2

# podManagementPolicy: OrderedReady

updateStrategy: {}
# type: RollingUpdate

Expand Down Expand Up @@ -310,27 +306,22 @@ bootstrap:
# Quickwit configuration
config:
# Metastore configuration.
# Could be set either with QW_METASTORE_URI or with the following config:
# - If on S3:
# metastore_uri: s3://quickwit-indexes
# - If on postgres-like db:
# postgres: {}
postgres: {}
# host: ""
# port: 5432
# database: metastore
# username: quickwit
# password: ""

storage: {}
# s3:
# flavor: gcs
# region: eu-west-1
# access_key_id: "my-access-key"
# secret_access_key: "my-secret-key"
# endpoint: https://storage.googleapis.com
# azure:
# account: your-azure-account-name
# access_key: your-azure-access-key
s3: {}
# endpoint: "https://s3.eu-west-1.amazonaws.com"
# region: eu-west-1
# access_key: "my-access-key"
# secret_key: "my-secret-key"

azure_blob: {}
# account_name: "my-azure-blob-accout"
# access_key: "my-azure-blob-access-key"

default_index_root_uri: s3://quickwit/indexes
# Indexer settings
Expand Down Expand Up @@ -373,7 +364,7 @@ config:
sources: []
# - index: my-index
# source:
# version: 0.6
# version: 0.5
# source_id: my-source
# source_type: kafka
# num_pipelines: 1
Expand Down Expand Up @@ -416,11 +407,11 @@ service:

ingress:
enabled: false
className: ""
annotations: {}
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
className: nginx
annotations:
nginx.ingress.kubernetes.io/proxy-body-size: 10m
hosts:
# hostname required here.
- host: chart-example.local
paths:
- path: /
Expand Down
Loading