Skip to content

Commit

Permalink
fix(helm): remove engine ingress values
Browse files Browse the repository at this point in the history
infra engine does not support ingress so remove those values from helm
  • Loading branch information
mxyng committed Mar 15, 2022
1 parent 31ecc2a commit 48f448e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 53 deletions.
4 changes: 1 addition & 3 deletions helm/charts/infra/templates/NOTES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,7 @@

{{- end }}

{{- if .Values.engine.ingress.enabled }}

{{- else if eq .Values.engine.service.type "LoadBalancer" }}
{{- if eq .Values.engine.service.type "LoadBalancer" }}

{{- else }}

Expand Down
50 changes: 0 additions & 50 deletions helm/charts/infra/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -663,56 +663,6 @@ engine:
## Prometheus metric relabel configs to apply to samples before ingesting
metricRelabelings: []

## Infra engine ingress configurations
ingress:

## Enable engine ingress resource
enabled: false

## Ingress labels
labels: {}

## Ingress annotations
annotations: {}

## Name of the ingress controller that will implement this resource
className: ""

## Hostnames to apply this ingress to
## Must not be empty if `ingress.enabled` is `true`
hosts: []
# - infra.example.com

## Paths to apply this ingress to
paths:
- /

## Type of path
## One of `Exact`, `Prefix`, or `ImplementationSpecific`
pathType: Prefix

## Additional paths to attach to the ingress
additionalPaths: []
# Kubernetes <1.19, using `networking.k8s.io/v1beta1`
# - path: /*
# backend:
# serviceName: ssl-redirect
# servicePort: use-annotation
# Kubernetes >=1.19, using `networking.k8s.io/v1`
# - path: /*
# pathType: Prefix
# backend:
# service:
# name: ssl-redirect
# port:
# name: use-annotation

## Ingress TLS configurations
tls: []
# - secretName: infra-tls-certificate
# hosts:
# - infra.example.com

## Infra engine persistence configurations
persistence:

Expand Down

0 comments on commit 48f448e

Please sign in to comment.