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

195: allow user to choose if they want a Kibana ingress to be deployed #196

Merged
merged 1 commit into from
Jun 5, 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 deploy/dracon/chart/templates/kb-ingress.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{ if .Values.kibana.enabled }}
{{ if .Values.kibana.ingress.enabled }}
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
Expand Down
3 changes: 0 additions & 3 deletions deploy/dracon/chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,6 @@ postgresql:
postgresPassword: ""
fullnameOverride: ""

tekton:
enabled: true

# this section controls aspects of managing a database used to store enrichments
# the database should use the Postgres dialect.
enrichmentDB:
Expand Down
1 change: 1 addition & 0 deletions deploy/dracon/values/dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ kibana:
enabled: true
version: 8.3.2
ingress:
enabled: true
className: nginx
host: kibana.dracon.localhost
tlsEnabled: false
Expand Down
Loading