From 939daa0ccccdaa278ff9b19f1a8a14f3566f9923 Mon Sep 17 00:00:00 2001 From: Vijay Venkatesh Kumar Date: Thu, 4 Apr 2019 23:08:05 +0000 Subject: Bulk blueprint update 1) Moved older bluerpints from build dir 2) Modified snmp and ves blueprint port mapping 3) Added helm and Dashboard blueprint Change-Id: If4739901d754fa6fea81024917fb425e82c20657 Signed-off-by: Vijay Venkatesh Kumar Issue-ID: DCAEGEN2-1270 Signed-off-by: Vijay Venkatesh Kumar --- blueprints/k8s-helm.yaml-template | 60 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 blueprints/k8s-helm.yaml-template (limited to 'blueprints/k8s-helm.yaml-template') diff --git a/blueprints/k8s-helm.yaml-template b/blueprints/k8s-helm.yaml-template new file mode 100644 index 0000000..d2562e0 --- /dev/null +++ b/blueprints/k8s-helm.yaml-template @@ -0,0 +1,60 @@ +# ============LICENSE_START========================================== +# =================================================================== +# Copyright (c) 2019 AT&T +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +#============LICENSE_END============================================ +tosca_definitions_version: cloudify_dsl_1_3 + +imports: + - http://www.getcloudify.org/spec/cloudify/4.3.1/types.yaml + - "{{ ONAPTEMPLATE_RAWREPOURL_org_onap_ccsdk_platform_plugins_releases }}/type_files/helm/4.0.0/helm-type.yaml" + +inputs: + tiller-server-ip: + description: IP address of Kubernetes master node + tiller-server-port: + description: Nodeport of tiller server + namespace: + description: Target namespace to be installed under (requires to be new) + chart-repo-url: + default: https://nexus.onap.org/content/sites/oom-helm-staging + chart-version : + description: Chart version for identified component-name + stable-repo-url: + description: URL for stable repository + type: string + default: 'https://kubernetes-charts.storage.googleapis.com' + config-url: + default: '' + config-format: + default: 'yaml' + component-name: + description: onap component name +node_templates: + dcaecomponent: + type: onap.nodes.component + properties: + tiller-server-ip: { get_input: tiller-server-ip } + tiller-server-port: { get_input: tiller-server-port } + component-name: { get_input: component-name } + chart-repo-url: { get_input: chart-repo-url } + chart-version: { get_input: chart-version } + namespace: { get_input: namespace } + stable-repo-url: { get_input: stable-repo-url} + config-url: { get_input: config-url} + config-format: { get_input: config-format} +outputs: + dcaecomponent_install_status: + value: { get_attribute: [ dcaecomponent, install-status ] } + -- cgit 1.2.3-korg