summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorvagrant <vv770d@att.com>2018-04-08 22:48:30 +0000
committervagrant <vv770d@att.com>2018-04-08 22:48:37 +0000
commit030ae9fae9207357d483546f012e76876ad2063c (patch)
tree0de0a7be76533b59ad082682a051ac9302bf5836
parentcea11404ceab47521bffbfd02827e1e127b96aa8 (diff)
change to fixed service name
Change-Id: Ie17b3f25cbc631e47a8e4b52b14be491cd416b15 Signed-off-by: Vijay Venkatesh Kumar <vv770d@att.com> Issue-ID: DCAEGEN2-428
-rw-r--r--blueprints/k8s-ves.yaml-template16
1 files changed, 11 insertions, 5 deletions
diff --git a/blueprints/k8s-ves.yaml-template b/blueprints/k8s-ves.yaml-template
index 039fcba..a0437f4 100644
--- a/blueprints/k8s-ves.yaml-template
+++ b/blueprints/k8s-ves.yaml-template
@@ -1,6 +1,6 @@
# -*- indent-tabs-mode: nil -*- # vi: set expandtab:
#
-# ============LICENSE_START====================================================s
+# ============LICENSE_START====================================================
# =============================================================================
# Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
# =============================================================================
@@ -19,7 +19,6 @@
tosca_definitions_version: cloudify_dsl_1_3
-
imports:
- "http://www.getcloudify.org/spec/cloudify/3.4/types.yaml"
- {{ ONAPTEMPLATE_RAWREPOURL_org_onap_dcaegen2_platform_plugins_releases }}/k8splugin/1.0.1/k8splugin_types.yaml
@@ -43,7 +42,11 @@ inputs:
external_port:
type: string
description: Kubernetes node port on which collector is exposed
- default: "32001"
+ default: "30235"
+ replicas:
+ type: integer
+ description: number of instances
+ default: 1
node_templates:
ves:
interfaces:
@@ -97,8 +100,11 @@ node_templates:
type: http
image:
get_input: tag_version
- service_component_type: dcaegen2-collectors-ves
+ replicas: {get_input: replicas}
+ name: 'dcae-ves-collector'
+ dns_name: 'dcae-ves-collector'
log_info:
log_directory: "/opt/app/VESCollector/logs/ecomp"
- type: dcae.nodes.ContainerizedServiceComponentUsingDmaap
+ type: dcae.nodes.ContainerizedPlatformComponent
+