aboutsummaryrefslogtreecommitdiffstats
path: root/heat/ONAP/manifest-to-env.sh
diff options
context:
space:
mode:
authormrichomme <morgan.richomme@orange.com>2019-04-25 18:24:19 +0200
committermrichomme <morgan.richomme@orange.com>2019-04-25 18:24:19 +0200
commite3dd7c24232b7060500fee8805416551fe98c92e (patch)
tree880f9df52eff2c00855bf05cfa7ed466379eb36e /heat/ONAP/manifest-to-env.sh
parent201fa9289e32676b40d1095766e38c74e1653e75 (diff)
Clean old ONAP heat template from demo repository
this template is not maintained since casablanca. People could be surprised to find it here (still available on casablanca or older branches) Issue-ID: INT-1046 Change-Id: I266ccc59c05a713cde17b20491f2e729d068414f Signed-off-by: mrichomme <morgan.richomme@orange.com>
Diffstat (limited to 'heat/ONAP/manifest-to-env.sh')
-rwxr-xr-xheat/ONAP/manifest-to-env.sh28
1 files changed, 0 insertions, 28 deletions
diff --git a/heat/ONAP/manifest-to-env.sh b/heat/ONAP/manifest-to-env.sh
deleted file mode 100755
index 017b091a..00000000
--- a/heat/ONAP/manifest-to-env.sh
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/bin/bash
-#==================LICENSE_START==========================================
-#
-# Copyright (c) 2017 Huawei Technologies Co., Ltd.
-#
-# 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============================================
-
-# USAGE: Pipe in docker-manifest.csv from the integration repo. This
-# script converts it into a series of environment variable settings
-# that can then be used with envsubst to set the docker versions in
-# onap_openstack_template.env.
-#
-# EXAMPLE:
-# source <(./manifest-to-env.sh < ~/Projects/onap/integration/version-manifest/src/main/resources/docker-manifest.csv)
-# envsubst < onap_openstack_template.env > onap_openstack.env
-
-sed '1d' | awk -F , '{ v=$1; gsub(".*[./]","",$1); gsub("-","_",$1); print "export " toupper($1) "_DOCKER=" $2 " # " v }'