summaryrefslogtreecommitdiffstats
path: root/kubernetes/so/Chart.yaml
blob: b8c92cb21abf38dc92e30793187e5cb932669f52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Copyright © 2017 Amdocs, Bell Canada
#
# 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.
apiVersion: v1
description: ONAP Service Orchestrator
name: so
version: 3.0.0
an class="k">fi NEXUS_PUBLIC_PREFIX="https://nexus3.onap.org/repository/docker.public/v2" NEXUS_RELEASE_PREFIX="https://nexus3.onap.org/repository/docker.release/v2" err=0 for line in $(tail -n +2 $1); do image=$(echo $line | cut -d , -f 1) tag=$(echo $line | cut -d , -f 2) tags=$(curl -s $NEXUS_PUBLIC_PREFIX/$image/tags/list | jq -r '.tags[]' 2> /dev/null) echo "$tags" | grep -q "^$tag\$" if [ $? -ne 0 ]; then echo "[ERROR] $image:$tag not found" #echo "$tags" | sed 's/^/ /' (( err++ )) else tags=$(curl -s $NEXUS_RELEASE_PREFIX/$image/tags/list | jq -r '.tags[]' 2> /dev/null) echo "$tags" | grep -q "^$tag\$" if [ $? -ne 0 ]; then echo "[WARN] $image:$tag not released" #echo "$tags" | sed 's/^/ /' fi fi done exit $err