forked from cockroachdb/cockroach-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbundle.sh
More file actions
executable file
·132 lines (106 loc) · 4.65 KB
/
bundle.sh
File metadata and controls
executable file
·132 lines (106 loc) · 4.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
#!/usr/bin/env bash
# Copyright 2025 The Cockroach Authors
#
# 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
#
# https://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.
set -euo pipefail
# must be run with bazel
if [[ -z "${BUILD_WORKSPACE_DIRECTORY:-}" ]]; then
echo 'Must be run via "make release/generate-bundle"' >&2
exit 1
fi
openshift_versions="v4.12-v4.19"
# ensure tool dependencies are on the path
export PATH="$(pwd)/hack/bin:${PATH}"
main() {
local rh_bundle_version="${1}"
local rh_operator_image="${2}"
local rh_package_options="${3}"
local rh_crdb_image="${4}"
local deploy_path="bundle"
# move to the root project directory
cd "${BUILD_WORKSPACE_DIRECTORY}"
echo "+++ Generating bundle with the following settings"
echo "RH_BUNDLE_VERSION=${rh_bundle_version}"
echo "RH_OPERATOR_IMAGE=${rh_operator_image}"
echo "RH_PACKAGE_OPTS=${rh_package_options}"
echo "RH_CRDB_IMAGE=${rh_crdb_image}"
echo "DEPLOY_PATH=${deploy_path}"
mkdir -p "${deploy_path}"
# ensure operator image is pinned to a SHA (OpenShift requirement)
docker pull "${rh_operator_image}"
rh_operator_image="$(docker inspect --format='{{index .RepoDigests 0}}' "${rh_operator_image}")"
generate_manifests
for pkg in cockroachdb-certified cockroachdb-certified-rhmp; do
generate_bundle "${rh_bundle_version}" "${rh_package_options}" "${deploy_path}/${pkg}" "${rh_operator_image}"
done
patch_marketplace_csv "${deploy_path}" cockroachdb-certified-rhmp
}
generate_manifests() {
# Generate CSV in config/manifests and add boilerplate back (lost when regenerating)
operator-sdk generate kustomize manifests -q --apis-dir apis
hack/boilerplaterize hack/boilerplate/boilerplate.yaml.txt config/manifests/**/*.yaml
}
generate_bundle() {
local version="${1}"
local opts="${2}"
local dir="${3}"
local pkg="$(basename ${dir})"
local img="${4}"
# Generate the new package bundle
kustomize build config/manifests | operator-sdk generate bundle -q \
--version "${version}" \
${opts} \
--output-dir "${dir}"
# Ensure package name is correct for the specific bundle and that the CSV name matches the package name. Also removing
# the testing annotations since these are handled automatically upstream. Also add openshift version annotation
local openshift_version_annotation=" com.redhat.openshift.versions: ${openshift_versions}"
sed \
-e "s+annotations:+annotations:\n # Minimum Openshift version annotation\n${openshift_version_annotation}+" \
-e "s/package.v1: cockroach-operator/package.v1: ${pkg}/g" \
-e "/\s*# Annotations for testing/d" \
-e "/\s*operators.operatorframework.io.test/d" \
"${dir}/metadata/annotations.yaml" > "${dir}/metadata/annotations.yaml.new"
mv "${dir}/metadata/annotations.yaml.new" "${dir}/metadata/annotations.yaml"
# Update CSV with correct images, and timestamps
adapt_csv "${dir}" "${img}"
# move the dockerfile into the bundle directory and make it valid
sed \
-e "/\s*tests\/scorecard/d" \
-e "s+${dir}/++g" \
bundle.Dockerfile > "${dir}/Dockerfile"
rm bundle.Dockerfile
}
adapt_csv() {
local dir="${1}"
local img="${2}"
local pkg="$(basename ${dir})"
local csv="${dir}/manifests/${pkg}.clusterserviceversion.yaml"
# rename csv to match package name
mv "${dir}/manifests/cockroach-operator.clusterserviceversion.yaml" "${csv}"
# replace RH_COCKROACH_OP_IMAGE_PLACEHOLDER with the proper image and CREATED_AT_PLACEHOLDER with the current time
sed \
-e "s+RH_COCKROACH_OP_IMAGE_PLACEHOLDER+${img}+g" \
-e "s+CREATED_AT_PLACEHOLDER+"$(date +"%FT%H:%M:%SZ")"+g" \
"${csv}" > "${csv}.new"
mv "${csv}.new" "${csv}"
}
patch_marketplace_csv() {
# extra annotations that are needed for the marketplace CSV
local rhmp_annotations=" marketplace.openshift.io/remote-workflow: https://marketplace.redhat.com/en-us/operators/${2}/pricing?utm_source=openshift_console"
rhmp_annotations="${rhmp_annotations}\n marketplace.openshift.io/support-workflow: https://marketplace.redhat.com/en-us/operators/${2}/support?utm_source=openshift_console"
local csv="${1}/cockroachdb-certified-rhmp/manifests/${2}.clusterserviceversion.yaml"
sed "s+ annotations:+ annotations:\n${rhmp_annotations}+" \
"${csv}" > "${csv}.new"
mv "${csv}.new" "${csv}"
}
main "$@"