Skip to content

Commit

Permalink
Configuration for a custom Kubernetes domain name (#110)
Browse files Browse the repository at this point in the history
* Configuration for a custom Kubernetes domain name

* Version bump to v0.7.7
  • Loading branch information
splix authored Oct 28, 2024
1 parent a6abeb9 commit dcc9e6d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 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.7.6
version: 0.7.7
appVersion: "v0.8.2"
keywords:
- quickwit
Expand Down
2 changes: 1 addition & 1 deletion charts/quickwit/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ Quickwit environment
- name: QW_ADVERTISE_ADDRESS
value: "$(POD_IP)"
- name: QW_CLUSTER_ENDPOINT
value: http://{{ include "quickwit.fullname" $ }}-metastore.{{ $.Release.Namespace }}.svc.cluster.local:7280
value: http://{{ include "quickwit.fullname" $ }}-metastore.{{ $.Release.Namespace }}.svc.{{ .Values.clusterDomain }}:7280
{{- range $key, $value := .Values.environment }}
- name: "{{ $key }}"
value: "{{ $value }}"
Expand Down
3 changes: 3 additions & 0 deletions charts/quickwit/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ imagePullSecrets: []
nameOverride: ""
fullnameOverride: ""

# Set the Kuberentes cluster domain if not default. It's used to build URLs for the services.
clusterDomain: cluster.local

# -- Additional labels to add to all resources
additionalLabels: {}
# app: quickwit
Expand Down

0 comments on commit dcc9e6d

Please sign in to comment.