File tree Expand file tree Collapse file tree 2 files changed +9
-5
lines changed Expand file tree Collapse file tree 2 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 43
43
log "Error: [initContainer] Bootstrap host $MARKLOGIC_BOOTSTRAP_HOST not found, exiting Init container."
44
44
exit 1
45
45
fi
46
- GROUP_CFG_TEMPLATE='{"group-name":"%s"}'
47
- GROUP_CFG=$(printf "$GROUP_CFG_TEMPLATE" "$MARKLOGIC_GROUP")
46
+ GROUP_CFG_TEMPLATE='{"group-name":"%s", "xdqp-ssl-enabled":"%s"}'
47
+ GROUP_CFG=$(printf "$GROUP_CFG_TEMPLATE" "$MARKLOGIC_GROUP" "$XDQP_SSL_ENABLED")
48
+ log "Info: [initContainer] GROUP_CFG: $GROUP_CFG"
48
49
GROUP_RESP_CODE=`curl --anyauth -m 20 -s -o /dev/null -w "%{http_code}" -X GET http://${MARKLOGIC_BOOTSTRAP_HOST}:8002/manage/v2/groups/${MARKLOGIC_GROUP} --anyauth --user ${MARKLOGIC_ADMIN_USERNAME}:${MARKLOGIC_ADMIN_PASSWORD}`
49
50
if [[ ${GROUP_RESP_CODE} -eq 200 ]]; then
50
51
log "Info: [initContainer] Skipping creation of group $MARKLOGIC_GROUP as it already exists on the MarkLogic cluster."
66
67
env :
67
68
- name : MARKLOGIC_GROUP
68
69
value : {{ .Values.group.name }}
70
+ - name : XDQP_SSL_ENABLED
71
+ value : {{ .Values.group.enableXdqpSsl }}
69
72
- name : MARKLOGIC_ADMIN_USERNAME
70
73
valueFrom :
71
74
secretKeyRef :
Original file line number Diff line number Diff line change @@ -10,15 +10,16 @@ terminationGracePeriod: 120
10
10
group :
11
11
# the group name of the current Marklogic Helm Deployment
12
12
name : Default
13
+ # xdqp encryption for intra cluster network traffic
14
+ enableXdqpSsl : true
13
15
14
16
# The name of the host to join. If not provided, the deployment is a bootstrap host.
15
17
bootstrapHostName : " "
16
18
17
-
18
19
# Marklogic image parameters
19
20
image :
20
- repository : marklogicdb /marklogic-db
21
- tag : latest
21
+ repository : marklogic-centos /marklogic-server-centos
22
+ tag : ' 20220914 '
22
23
pullPolicy : IfNotPresent
23
24
24
25
# Init container image parameters
You can’t perform that action at this time.
0 commit comments