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

Fix Values comments #95

Merged
merged 1 commit into from
Jul 25, 2024
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.6.2
version: 0.6.3
appVersion: "v0.8.1"
keywords:
- quickwit
Expand Down
59 changes: 25 additions & 34 deletions charts/quickwit/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,10 @@ searcher:
# - configMapRef:
# name: quickwit-searcher

# extraVolumes -- Additional Volumes to use with Vector Pods.
# extraVolumes -- Additional volumes to use with Pods.
extraVolumes: []

# extraVolumeMounts -- Additional Volume to mount into Vector Containers.
# extraVolumeMounts -- Additional volumes to mount into Quickwit containers.
extraVolumeMounts: []

resources: {}
Expand Down Expand Up @@ -108,7 +108,7 @@ searcher:
# Override args for starting container
args: []

# initContainers -- Init Containers to be added to the pods
# initContainers -- Init containers to be added to the pods
initContainers: []

annotations: {}
Expand Down Expand Up @@ -137,10 +137,10 @@ indexer:
# - configMapRef:
# name: quickwit-indexer

# extraVolumes -- Additional Volumes to use with Vector Pods.
# extraVolumes -- Additional volumes to use with Pods.
extraVolumes: []

# extraVolumeMounts -- Additional Volume to mount into Vector Containers.
# extraVolumeMounts -- Additional volumes to mount into Quickwit containers.
extraVolumeMounts: []

resources: {}
Expand Down Expand Up @@ -179,7 +179,7 @@ indexer:
# Override args for starting container
args: []

# initContainers -- Init Containers to be added to the pods
# initContainers -- Init containers to be added to the pods
initContainers: []

annotations: {}
Expand Down Expand Up @@ -214,10 +214,10 @@ metastore:
# - configMapRef:
# name: quickwit-metastore

# extraVolumes -- Additional Volumes to use with Vector Pods.
# extraVolumes -- Additional volumes to use with Pods.
extraVolumes: []

# extraVolumeMounts -- Additional Volume to mount into Vector Containers.
# extraVolumeMounts -- Additional volumes to mount into Quickwit containers.
extraVolumeMounts: []

resources: {}
Expand Down Expand Up @@ -251,7 +251,7 @@ metastore:
# Override args for starting container
args: []

# initContainers -- Init Containers to be added to the pods
# initContainers -- Init containers to be added to the pods
initContainers: []

annotations: {}
Expand All @@ -278,10 +278,10 @@ control_plane:
# - configMapRef:
# name: quickwit-control-plane

# extraVolumes -- Additional Volumes to use with Vector Pods.
# extraVolumes -- Additional volumes to use with Pods.
extraVolumes: []

# extraVolumeMounts -- Additional Volume to mount into Vector Containers.
# extraVolumeMounts -- Additional volumes to mount into Quickwit containers.
extraVolumeMounts: []

resources: {}
Expand Down Expand Up @@ -312,7 +312,7 @@ control_plane:
# Override args for starting container
args: []

# initContainers -- Init Containers to be added to the pods
# initContainers -- Init containers to be added to the pods
initContainers: []

annotations: {}
Expand Down Expand Up @@ -342,10 +342,10 @@ janitor:
# - configMapRef:
# name: quickwit-janitor

# extraVolumes -- Additional Volumes to use with Vector Pods.
# extraVolumes -- Additional volumes to use with Pods.
extraVolumes: []

# extraVolumeMounts -- Additional Volume to mount into Vector Containers.
# extraVolumeMounts -- Additional volumes to mount into Quickwit containers.
extraVolumeMounts: []

resources: {}
Expand Down Expand Up @@ -376,7 +376,7 @@ janitor:
# Override args for starting container
args: []

# initContainers -- Init Containers to be added to the pods
# initContainers -- Init containers to be added to the pods
initContainers: []

annotations: {}
Expand All @@ -395,23 +395,17 @@ janitor:

# Deploy jobs to bootstrap creation of indexes and sources for quickwit clusters
bootstrap:
# Enable boostrap jobs
# Enable bootstrap jobs
enabled: false

# Extra env for boostrap jobs
# Extra env for bootstrap jobs
extraEnv: {}
# KEY: VALUE
extraEnvFrom: []
# - secretRef:
# name: quickwit-boostrap
# name: quickwit-bootstrap
# - configMapRef:
# name: quickwit-boostrap

# extraVolumes -- Additional Volumes to use with Vector Pods.
extraVolumes: []

# extraVolumeMounts -- Additional Volume to mount into Vector Containers.
extraVolumeMounts: []
# name: quickwit-bootstrap

resources: {}
# limits:
Expand All @@ -421,9 +415,6 @@ bootstrap:
# cpu: 100m
# memory: 128Mi

# initContainers -- Init Containers to be added to the pods
initContainers: []

nodeSelector: {}

tolerations: []
Expand All @@ -435,23 +426,23 @@ jobs:
# Override command for starting container
command: []

# initContainers -- Init Containers to be added to the pods
# initContainers -- Init containers to be executed before the source creation.
initContainers: []

# extraVolumes -- Additional Volumes to use with quickwit Pods.
# extraVolumes -- Additional volumes to use with bootstrap Pods.
extraVolumes: []

# extraVolumeMounts -- Additional Volume to mount into quickwit Containers.
# extraVolumeMounts -- Additional volumes to mount into bootstrap containers (not the init containers).
extraVolumeMounts: []

indexes:
# initContainers -- Init Containers to be added to the pods
# initContainers -- Init containers to be executed before the index creation.
initContainers: []

# extraVolumes -- Additional Volumes to use with quickwit Pods.
# extraVolumes -- Additional volumes to use with bootstrap Pods.
extraVolumes: []

# extraVolumeMounts -- Additional Volume to mount into quickwit Containers.
# extraVolumeMounts -- Additional volumes to mount into bootstrap containers (not the init containers).
extraVolumeMounts: []

# Quickwit configuration
Expand Down
Loading