Skip to content

Commit

Permalink
Merge pull request #56 from quickwit-oss/ingress-max-payload
Browse files Browse the repository at this point in the history
Increased the max payload in the ingress.
  • Loading branch information
fmassot authored Dec 10, 2023
2 parents deba352 + 65005db commit 307e9eb
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 26 deletions.
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

0 comments on commit 307e9eb

Please sign in to comment.