diff options
author | gfraboni <gino.fraboni@amdocs.com> | 2017-09-19 13:25:30 -0400 |
---|---|---|
committer | Gino Fraboni <gino.fraboni@amdocs.com> | 2017-09-21 20:19:44 +0000 |
commit | be779fa2d7f44b511bde929582b6340c650d24cc (patch) | |
tree | 8fe925e696ab96aaa368fd5ca521eefecc124d2b /kubernetes/oneclick | |
parent | c66ca602f26e66145091d529ef970be27fb766d9 (diff) |
Add Consul support to 'OneClick' deployment.
The OOM is moving to using Consul to provide health checks for all ONAP
components. This push adds deployment of a 3 node Consul Server cluster
and a single Consul agent to the 'OneClick' deployment.
As a first step, health check scripts for the A&AI microservices have
also been included. Support for additional ONAP components will follow.
Issue-ID: OOM-86
Change-Id: Ib63f3d8b1b745551c9ec55b6529d022b32006e9c
Signed-off-by: gfraboni <gino.fraboni@amdocs.com>
Diffstat (limited to 'kubernetes/oneclick')
-rwxr-xr-x | kubernetes/oneclick/createAll.bash | 2 | ||||
-rw-r--r-- | kubernetes/oneclick/setenv.bash | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/kubernetes/oneclick/createAll.bash b/kubernetes/oneclick/createAll.bash index c59cf095ca..afe71af8e1 100755 --- a/kubernetes/oneclick/createAll.bash +++ b/kubernetes/oneclick/createAll.bash @@ -14,7 +14,7 @@ Usage: $0 [PARAMs] -a [APP] : Specify a specific ONAP component (default: all) from the following choices: sdc, aai ,mso, message-router, robot, - vid, sdnc, portal, policy, appc, multicloud, clamp + vid, sdnc, portal, policy, appc, multicloud, clamp, consul EOF } diff --git a/kubernetes/oneclick/setenv.bash b/kubernetes/oneclick/setenv.bash index 3e4125bbb9..a1aba3daf4 100644 --- a/kubernetes/oneclick/setenv.bash +++ b/kubernetes/oneclick/setenv.bash @@ -1,7 +1,7 @@ #!/bin/bash # Deploying MSB first and kube2msb last will ensure all the ONAP services can be registered to MSB -HELM_APPS=('msb' 'mso' 'message-router' 'sdnc' 'vid' 'robot' 'portal' 'policy' 'appc' 'aai' 'sdc' 'dcae' 'log' 'cli' 'multicloud' 'clamp' 'kube2msb') +HELM_APPS=('consul' 'msb' 'mso' 'message-router' 'sdnc' 'vid' 'robot' 'portal' 'policy' 'appc' 'aai' 'sdc' 'dcae' 'log' 'cli' 'multicloud' 'clamp' 'kube2msb') ONAP_DOCKER_REGISTRY=${ONAP_DOCKER_REGISTRY:-nexus3.onap.org:10001} ONAP_DOCKER_USER=${ONAP_DOCKER_USER:-docker} ONAP_DOCKER_PASS=${ONAP_DOCKER_PASS:-docker} |