Skip to content

Commit

Permalink
Update ingress and cronJob apiVersions
Browse files Browse the repository at this point in the history
Related to AWS Setup Guide / Example #15 (juice-shop/multi-juicer#15 (comment))
  • Loading branch information
goldenlight123 committed Oct 8, 2021
1 parent 69a7734 commit 9ee3a92
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion helm/multi-juicer/templates/cleanup-cron-job.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{{- if .Values.juiceShopCleanup.enabled -}}
apiVersion: batch/v1beta1
apiVersion: batch/v1
kind: CronJob
metadata:
name: 'cleanup-job'
Expand Down
13 changes: 6 additions & 7 deletions helm/multi-juicer/templates/juice-balancer-ingress.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
{{- if .Values.ingress.enabled -}}
{{- $fullName := include "multi-juicer.fullname" . -}}
{{- $svcPort := .Values.service.port -}}
{{- if semverCompare ">=1.14-0" .Capabilities.KubeVersion.GitVersion -}}
apiVersion: networking.k8s.io/v1beta1
{{- else -}}
apiVersion: extensions/v1beta1
{{- end }}
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: {{ $fullName }}
Expand Down Expand Up @@ -33,9 +29,12 @@ spec:
paths:
{{- range .paths }}
- path: {{ . }}
pathType: ImplementationSpecific
backend:
serviceName: juice-balancer
servicePort: {{ $svcPort }}
service:
name: juice-balancer
port:
number: {{ $svcPort }}
{{- end }}
{{- end }}
{{- end }}

0 comments on commit 9ee3a92

Please sign in to comment.