-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: glasskube-bot <[email protected]>
- Loading branch information
1 parent
bfd653b
commit f522856
Showing
3 changed files
with
151 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
"my-quickwit" --value "defaultIndexRootUri=s3://bucket" --value "s3Endpoint=" --value "s3Flavor=" --value "s3Region=" --value "s3SecretAccessKey=" --value "metastoreUri=s3://" --value "quickwitDomain=" --value "s3AccessKeyId=" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,149 @@ | ||
# yaml-language-server: $schema=https://glasskube.dev/schemas/v1/package-manifest.json | ||
|
||
name: quickwit | ||
shortDescription: Cloud-native search engine for observability | ||
longDescription: Sub-second search & analytics engine on cloud storage. | ||
scope: Namespaced | ||
defaultNamespace: quickwit | ||
iconUrl: https://avatars.githubusercontent.com/u/98504233 | ||
helm: | ||
chartName: quickwit | ||
chartVersion: 0.7.7 | ||
repositoryUrl: https://helm.quickwit.io/ | ||
values: | ||
environment: {} | ||
config: | ||
storage: | ||
s3: {} | ||
ingress: | ||
enabled: false | ||
annotations: | ||
cert-manager.io/cluster-issuer: letsencrypt | ||
hosts: | ||
- host: "" | ||
paths: | ||
- path: / | ||
pathType: Prefix | ||
ingressClassName: nginx | ||
tls: | ||
- hosts: [] | ||
valueDefinitions: | ||
defaultIndexRootUri: | ||
type: text | ||
metadata: | ||
description: > | ||
The default index URI is a S3 bucket which usually looks like this: | ||
`s3://<bucket-name>/<optional-base-path>` | ||
constraints: | ||
required: true | ||
minLength: 1 | ||
targets: | ||
- chartName: quickwit | ||
patch: | ||
op: add | ||
path: /config/default_index_root_uri | ||
s3Flavor: | ||
type: options | ||
metadata: | ||
description: Leave empty if using genuine AWS S3 | ||
options: | ||
- "" | ||
- do | ||
- garage | ||
- gcp | ||
- minio | ||
targets: | ||
- chartName: quickwit | ||
valueTemplate: | | ||
{{if .}}"{{.}}"{{else}}null{{end}} | ||
patch: | ||
op: add | ||
path: /config/storage/s3/flavor | ||
s3Endpoint: | ||
type: text | ||
metadata: | ||
description: The S3 endpoint is required for alternative S3 API providers | ||
targets: | ||
- chartName: quickwit | ||
valueTemplate: | | ||
{{if .}}"{{.}}"{{else}}null{{end}} | ||
patch: | ||
op: add | ||
path: /config/storage/s3/endpoint | ||
s3Region: | ||
type: text | ||
targets: | ||
- chartName: quickwit | ||
patch: | ||
op: add | ||
path: /config/storage/s3/region | ||
s3AccessKeyId: | ||
type: text | ||
targets: | ||
- chartName: quickwit | ||
patch: | ||
op: add | ||
path: /config/storage/s3/access_key_id | ||
s3SecretAccessKey: | ||
type: text | ||
targets: | ||
- chartName: quickwit | ||
patch: | ||
op: add | ||
path: /config/storage/s3/secret_access_key | ||
metastoreUri: | ||
type: text | ||
metadata: | ||
description: > | ||
If you're not using PostgreSQL and object storage, you can pick the same | ||
bucket and value you used for the defaultIndexRootUri parameter | ||
constraints: | ||
required: true | ||
minLength: 1 | ||
targets: | ||
- chartName: quickwit | ||
patch: | ||
op: add | ||
path: /environment/QW_METASTORE_URI | ||
quickwitDomain: | ||
type: text | ||
metadata: | ||
label: Quickwit domain | ||
description: | | ||
DNS name for the Quickwit Ingress. | ||
Leave this empty to disable the Ingress. | ||
constraints: | ||
pattern: ^([a-z0-9]([\-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([\-a-z0-9]*[a-z0-9])?)*)?$ | ||
targets: | ||
- patch: | ||
op: add | ||
path: /ingress/enabled | ||
valueTemplate: | | ||
{{ if eq . "" }}false{{ else }}true{{ end }} | ||
chartName: quickwit | ||
- patch: | ||
op: add | ||
path: /ingress/hosts/0/host | ||
chartName: quickwit | ||
- patch: | ||
op: add | ||
path: /ingress/tls/0/hosts/- | ||
chartName: quickwit | ||
- patch: | ||
op: add | ||
path: /ingress/tls/0/secretName | ||
valueTemplate: | | ||
"{{ . }}" | ||
chartName: quickwit | ||
entrypoints: | ||
- serviceName: quickwit-searcher | ||
port: 7280 | ||
references: | ||
- label: ArtifactHub | ||
url: https://artifacthub.io/packages/helm/quickwit/quickwit | ||
- label: Website | ||
url: https://quickwit.io/ | ||
- label: Documentation | ||
url: https://quickwit.io/docs | ||
- label: GitHub | ||
url: https://github.com/quickwit-oss/quickwit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,4 @@ versions: | |
- version: v0.8.1+3 | ||
- version: v0.8.1+4 | ||
- version: v0.8.1+5 | ||
- version: v0.8.2+1 |