Modify pap db for new guard
[policy/pap.git] / docker_push_manifest.sh
1 #!/bin/bash -ex
2 #   ============LICENSE_START=======================================================
3 #    Copyright (C) 2019 ENEA AB. All rights reserved.
4 #    Modifications Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
5 #   ================================================================================
6 #   Licensed under the Apache License, Version 2.0 (the "License");
7 #   you may not use this file except in compliance with the License.
8 #   You may obtain a copy of the License at
9 #
10 #    http://www.apache.org/licenses/LICENSE-2.0
11 #
12 #   Unless required by applicable law or agreed to in writing, software
13 #   distributed under the License is distributed on an "AS IS" BASIS,
14 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 #   See the License for the specific language governing permissions and
16 #   limitations under the License.
17 #
18 #   SPDX-License-Identifier: Apache-2.0
19 #   ============LICENSE_END=========================================================
20
21 # This script creates the multi-arch manifest for the docker images
22
23 source version.properties
24 IMAGES="onap/policy-pap"
25 ARCHES="amd64 arm64"
26 TIMESTAMP=$(date -u +"%Y%m%d%H%M%S")
27 MT_RELEASE='v0.9.0'
28
29 # Download the manifest tool based on the host's architecture
30 HOST_ARCH='amd64'
31 if [ "$(uname -m)" == 'aarch64' ]; then
32     HOST_ARCH='arm64'
33 fi
34 wget https://github.com/estesp/manifest-tool/releases/download/${MT_RELEASE}/manifest-tool-linux-${HOST_ARCH} -O ./manifest-tool
35 chmod u+x manifest-tool
36
37 # Tag the images and push the manifest (do not fail if some prerequisite tags are not yet present)
38 set +e
39 for image in ${IMAGES}; do
40     # always (re)create both SNAPSHOT and STAGING tags to make sure everything is up to date
41     TAGS="latest ${release_version}-SNAPSHOT ${release_version}-SNAPSHOT-latest ${release_version}-STAGING-latest"
42     for tag in ${TAGS}; do
43         ./manifest-tool push from-args \
44             --ignore-missing \
45             --platforms "linux/${ARCHES// /,linux/}" \
46             --template "${image}:${tag}-ARCH" \
47             --target "${image}:${tag}"
48     done
49
50     # Create timestamped multiarch tag; if the script is ran from the merge
51     # job then add the SNAPSHOT suffix
52     [[ "${PARENT_JOB_NAME}" =~ merge ]] && snapshot_suffix="SNAPSHOT-"
53
54     ./manifest-tool push from-args \
55         --ignore-missing \
56         --platforms "linux/${ARCHES// /,linux/}" \
57         --template "${image}:${release_version}-${snapshot_suffix:-}ARCH" \
58         --target "${image}:${release_version}-${snapshot_suffix:-}${TIMESTAMP}"
59 done