summaryrefslogtreecommitdiffstats
path: root/kubernetes/dmaap/charts/dmaap-bus-controller/templates/deployment.yaml
diff options
context:
space:
mode:
authordglFromAtt <dgl@research.att.com>2018-10-18 21:04:35 +0000
committerAlexis de Talhouƫt <alexis.de_talhouet@bell.ca>2018-10-23 12:00:52 +0000
commitd9d3f42ea3490692a133b6e2025c38ffdc519447 (patch)
tree7068b12ad20c6c51c4d58db46274f547914d2a32 /kubernetes/dmaap/charts/dmaap-bus-controller/templates/deployment.yaml
parent357ba2e940cc851b9d3555e88dd784405cbcbc5d (diff)
Provision clients for PNF topics
In addition to adding the pub and sub client Role to the PNF topics for use by the PRH, we fixed the readinessProbe to wait for the message-router pod. This should avoid attempts to provision before MR is ready to accept. Also, properly delivered the dmaapbc.properties file which was lost from previous commits! Change-Id: I8016bc83a9c3ba75de22732e475c5f1896ea4ae4 Signed-off-by: dglFromAtt <dgl@research.att.com> Issue-ID: DMAAP-548
Diffstat (limited to 'kubernetes/dmaap/charts/dmaap-bus-controller/templates/deployment.yaml')
-rw-r--r--kubernetes/dmaap/charts/dmaap-bus-controller/templates/deployment.yaml5
1 files changed, 3 insertions, 2 deletions
diff --git a/kubernetes/dmaap/charts/dmaap-bus-controller/templates/deployment.yaml b/kubernetes/dmaap/charts/dmaap-bus-controller/templates/deployment.yaml
index 8ef03d43a9..9cf147fdab 100644
--- a/kubernetes/dmaap/charts/dmaap-bus-controller/templates/deployment.yaml
+++ b/kubernetes/dmaap/charts/dmaap-bus-controller/templates/deployment.yaml
@@ -62,8 +62,9 @@ spec:
periodSeconds: {{ .Values.liveness.periodSeconds }}
readinessProbe:
httpGet:
- port: {{ .Values.service.internalPort }}
- path: /webapi/info
+ host: {{ .Values.dmaapMessageRouterService }}
+ port: 3904
+ path: /topics
initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
periodSeconds: {{ .Values.readiness.periodSeconds }}
{{ end -}}