Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
alexnuttinck committed Aug 1, 2019
2 parents 660eb29 + 1d14a7c commit 65ad158
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: nifi
version: 0.1.2
version: 0.1.3
appVersion: 1.9.2
description: Apache NiFi is a software project from the Apache Software Foundation designed to automate the flow of data between software systems.
keywords:
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ The following table lists the configurable parameters of the nifi chart and the
| **Service** |
| `service.headless.type` | Type of the headless service for nifi | `ClusterIP` |
| `service.loadBalancer.enabled` | Enable the LoabBalancerServic | `80` |
| `service.loadBalancer.type` | Type of the loadbalancer service for nifi | `LoadBalancer` |
| `service.loadBalancer.httpPort` | Port to expose service | `80` |
| `service.loadBalancer.httpsPort` | Port to expose service in tls | `443` |
| `service.loadBalancer.annotations` | Service annotations | `{}` |
Expand Down
2 changes: 1 addition & 1 deletion templates/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ spec:
paths:
- path: {{ $ingressPath }}
backend:
serviceName: {{ $fullName }}-headless
serviceName: {{ $fullName }}
servicePort: {{ $ingressPort }}
{{- end }}
{{- end }}
2 changes: 1 addition & 1 deletion templates/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ metadata:
{{ toYaml .Values.service.loadBalancer.annotations | indent 4 }}
{{- end }}
spec:
type: "LoadBalancer"
type: {{ .Values.service.loadBalancer.type }}
{{- if .Values.service.loadBalancer.loadBalancerIP }}
loadBalancerIP: {{ .Values.service.loadBalancer.loadBalancerIP }}
{{- end }}
Expand Down
1 change: 1 addition & 0 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ service:
type: ClusterIP
loadBalancer:
enabled: true
type: LoadBalancer
httpPort: 80
httpsPort: 443
annotations: {}
Expand Down

0 comments on commit 65ad158

Please sign in to comment.