Skip to content

Commit 9a709da

Browse files
Barkha Choithanibarkhachoithani
authored andcommitted
replaced realm in the values.yaml
1 parent 4de4040 commit 9a709da

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ Following table lists all the parameters supported by the latest MarkLogic Helm
9696
| `auth.adminUsername` | Username for default MarkLogic Administrator | `admin` |
9797
| `auth.adminPassword` | Password for default MarkLogic Administrator | ``
9898
| `auth.walletPassword` | Password for wallet | ``
99-
| `auth.realm` | Realm of the security database | ``
99+
| `realm` | Realm of the security database | ``
100100
| `auth.secretName` | Kubernetes Secret name for MarkLogic Admin credentials | ``
101101
| `bootstrapHostName` | Host name of MarkLogic bootstrap host | `""`
102102
| `group.name` | group name for joining MarkLogic cluster | `Default` |

charts/templates/statefulset.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ spec:
120120
- name: LICENSEE
121121
value: {{ .Values.license.licensee | quote }}
122122
- name: REALM
123-
value: {{ .Values.auth.realm | quote }}
123+
value: {{ .Values.realm | quote }}
124124
envFrom:
125125
- configMapRef:
126126
name: {{ include "marklogic.fullname" . }}

charts/values.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,9 @@ auth:
6868
# adminUsername: "admin"
6969
# adminPassword: ""
7070
# walletPassword: ""
71-
realm: ""
71+
72+
# Configure realm of the MarkLogic security database
73+
realm: ""
7274

7375
# Optionally install converters package on MarkLogic
7476
enableConverters: false

test/template/env_param_templ_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ func TestChartTemplateAuthRealmValue(t *testing.T) {
151151
"image.repository": "marklogicdb/marklogic-db",
152152
"image.tag": "latest",
153153
"persistence.enabled": "false",
154-
"auth.realm": "public",
154+
"realm": "public",
155155
},
156156
KubectlOptions: k8s.NewKubectlOptions("", "", namespaceName),
157157
}

0 commit comments

Comments
 (0)