Skip to content

Commit

Permalink
feat: Allow ingress to be disabled for customers using Istio (#114)
Browse files Browse the repository at this point in the history
  • Loading branch information
zacharyblasczyk authored Apr 16, 2024
1 parent 3ac58c3 commit f39f42c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/operator-wandb/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: operator-wandb
description: A Helm chart for deploying W&B to Kubernetes
type: application
version: 0.12.6
version: 0.12.7
appVersion: 1.0.0
icon: https://wandb.ai/logo.svg

Expand Down
4 changes: 3 additions & 1 deletion charts/operator-wandb/templates/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ spec:
ingress:
class: {{ .Values.ingress.class }}
{{- end }}
{{- if .Values.ingress.install }}
---
apiVersion: networking.k8s.io/v1
kind: Ingress
Expand Down Expand Up @@ -77,4 +78,5 @@ spec:
name: {{ $.Release.Name }}-console
port:
number: 8082
{{- end }}
{{- end }}
{{- end }}
1 change: 1 addition & 0 deletions charts/operator-wandb/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ global:
runUpdatesShadowTopic: ""

ingress:
install: true
nameOverride: ""
defaultBackend: "app"
annotations: {}
Expand Down

0 comments on commit f39f42c

Please sign in to comment.