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

feat: Allow ingress to be disabled for customers using Istio #114

Merged
merged 3 commits into from
Apr 16, 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/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
Loading