Skip to content

Commit 459b4e9

Browse files
committed
fix typo on Readme and consitency
1 parent 021cbcc commit 459b4e9

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -195,9 +195,9 @@ Following table lists all the parameters supported by the latest MarkLogic Helm
195195
| `haproxy.service.type` | The service type of the HAproxy | `ClusterIP` |
196196
| `haproxy.pathbased.enabled` | Parameter to enable path based routing on the HAProxy Load Balancer for MarkLogic | `false` |
197197
| `haproxy.frontendPort` | Listening port in the Front-End section of the HAProxy when using Path based routing | `443` |
198-
| `haproxy.DefaultAppappservices.path` | Path used to expose MarkLogic App-Services App-Server | `""` |
199-
| `haproxy.DefaultAppadmin.path` | Path used to expose MarkLogic Admin App-Server | `""` |
200-
| `haproxy.DefaultAppmanage.path` | Path used to expose the MarkLogic Manage App-Server | `""` |
198+
| `haproxy.DefaultApp.appservices.path` | Path used to expose MarkLogic App-Services App-Server | `""` |
199+
| `haproxy.DefaultApp.admin.path` | Path used to expose MarkLogic Admin App-Server | `""` |
200+
| `haproxy.DefaultApp.manage.path` | Path used to expose the MarkLogic Manage App-Server | `""` |
201201
| `haproxy.additionalAppServers` | List of additional HTTP Ports configuration for HAproxy | `[]` |
202202
| `haproxy.tcpports.enabled` | Parameter to enable TCP port routing on HAProxy | `false` |
203203
| `haproxy.tcpports` | TCP Ports and load balancing type configuration for HAproxy | `[]` |

charts/templates/configmap-haproxy-pathbased.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
{{- $namespace := .Release.Namespace }}
66
{{- $clusterDomain := .Values.clusterDomain }}
77
{{- $haproxyTlsEnabled := .Values.haproxy.tls.enabled }}
8-
{{- $appServerTlsEnabled := .Values.tls.enableOnDefaultAppServers -}}
8+
{{- $appServerTlsEnabled := .Values.tls.enableOnDefaultAppServers }}
99
{{- $certFileName := .Values.haproxy.tls.certFileName }}
1010
{{- $appservicespath := .Values.haproxy.defaultAppServers.appservices.path }}
1111
{{- $adminpath := .Values.haproxy.defaultAppServers.admin.path }}

charts/templates/configmap-haproxy.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{{- if .Values.haproxy.enabled }}
2-
{{- if not .Values.haproxy.pathbased.enabled -}}
3-
{{- $replicas := int .Values.replicaCount -}}
4-
{{- $releaseName := include "marklogic.fullname" . -}}
5-
{{- $namespace := .Release.Namespace -}}
6-
{{- $clusterDomain := .Values.clusterDomain -}}
7-
{{- $haproxyTlsEnabled := .Values.haproxy.tls.enabled -}}
8-
{{- $appServerTlsEnabled := .Values.tls.enableOnDefaultAppServers -}}
9-
{{- $certFileName := .Values.haproxy.tls.certFileName -}}
2+
{{- if not .Values.haproxy.pathbased.enabled }}
3+
{{- $replicas := int .Values.replicaCount }}
4+
{{- $releaseName := include "marklogic.fullname" . }}
5+
{{- $namespace := .Release.Namespace }}
6+
{{- $clusterDomain := .Values.clusterDomain }}
7+
{{- $haproxyTlsEnabled := .Values.haproxy.tls.enabled }}
8+
{{- $appServerTlsEnabled := .Values.tls.enableOnDefaultAppServers }}
9+
{{- $certFileName := .Values.haproxy.tls.certFileName }}
1010

1111
apiVersion: v1
1212
kind: ConfigMap

0 commit comments

Comments
 (0)