diff options
author | dglFromAtt <dgl@research.att.com> | 2018-08-30 18:04:20 +0000 |
---|---|---|
committer | dglFromAtt <dgl@research.att.com> | 2018-09-05 21:12:39 +0000 |
commit | c72605e462df76d7485425093a991ce85e9532a2 (patch) | |
tree | 21e76cbc430fda99ba93b4c19006129962deafa9 /kubernetes/dmaap/charts/dmaap-bus-controller/templates/configmap.yaml | |
parent | 86da5e3720ecdad23d435c043d7d13d3a42188dd (diff) |
Initial calls to dmaaa-bc API
Initializes some buscontroller objects including topics
for PNF PnP use-case
Introduces some ConfigMaps which can be modified as we add new
use cases.
Pathset2: adds SSL port for dmaap-dr-prov
patchset 4: changes per Boris feedback
Change-Id: Ia267362eae4574722358c6e6b743062b8d54d534
Signed-off-by: dglFromAtt <dgl@research.att.com>
Issue-ID: OOM-1363
Signed-off-by: dglFromAtt <dgl@research.att.com>
Diffstat (limited to 'kubernetes/dmaap/charts/dmaap-bus-controller/templates/configmap.yaml')
-rw-r--r-- | kubernetes/dmaap/charts/dmaap-bus-controller/templates/configmap.yaml | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/kubernetes/dmaap/charts/dmaap-bus-controller/templates/configmap.yaml b/kubernetes/dmaap/charts/dmaap-bus-controller/templates/configmap.yaml index ef50157a00..8f23423dcf 100644 --- a/kubernetes/dmaap/charts/dmaap-bus-controller/templates/configmap.yaml +++ b/kubernetes/dmaap/charts/dmaap-bus-controller/templates/configmap.yaml @@ -20,3 +20,43 @@ metadata: namespace: {{ include "common.namespace" . }} data: {{ tpl (.Files.Glob "resources/config/*").AsConfig . | indent 2 }} +--- +apiVersion: v1 +kind: ConfigMap +metadata: + name: {{ include "common.fullname" . }}-dmaap + namespace: {{ include "common.namespace" . }} +data: +{{ tpl (.Files.Glob "resources/dmaap/*.json").AsConfig . | indent 2 }} +--- +apiVersion: v1 +kind: ConfigMap +metadata: + name: {{ include "common.fullname" . }}-dcaelocations + namespace: {{ include "common.namespace" . }} +data: +{{ tpl (.Files.Glob "resources/dcaeLocations/*.json").AsConfig . | indent 2 }} +--- +apiVersion: v1 +kind: ConfigMap +metadata: + name: {{ include "common.fullname" . }}-mrclusters + namespace: {{ include "common.namespace" . }} +data: +{{ tpl (.Files.Glob "resources/mr_clusters/*.json").AsConfig . | indent 2 }} +--- +apiVersion: v1 +kind: ConfigMap +metadata: + name: {{ include "common.fullname" . }}-topics + namespace: {{ include "common.namespace" . }} +data: +{{ tpl (.Files.Glob "resources/topics/*.json").AsConfig . | indent 2 }} +--- +apiVersion: v1 +kind: ConfigMap +metadata: + name: {{ include "common.fullname" . }}-feeds + namespace: {{ include "common.namespace" . }} +data: +{{ tpl (.Files.Glob "resources/feeds/*.json").AsConfig . | indent 2 }} |