This repository was archived by the owner on Nov 9, 2022. It is now read-only.
This repository is currently being migrated. It's locked while the migration is in progress.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathcreate-manifest.sh
65 lines (52 loc) · 2.31 KB
/
create-manifest.sh
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
#!/bin/bash
set -e
# This script generates a single manifest file for installing the operator.
# This file is attached to each release with the appropriate container image for
# quick installation.
# Set the first argument as the operator container image tag. Default to "test".
OPERATOR_IMAGE="${1:-test}"
YQ=build/yq3
# List of manifests files to combine to form a single operator manifest file.
declare -a manifestfiles=(
"deploy/crds/storageos.com_storageosclusters_crd.yaml"
"deploy/crds/storageos.com_storageosupgrades_crd.yaml"
"deploy/crds/storageos.com_jobs_crd.yaml"
"deploy/crds/storageos.com_nfsservers_crd.yaml"
"deploy/namespace.yaml"
"deploy/role.yaml"
"deploy/service_account.yaml"
"deploy/role_binding.yaml"
)
# Path of the operator install manifest file.
INSTALL_MANIFEST="storageos-operator.yaml"
# Delete the existing manifest.
rm -f $INSTALL_MANIFEST
for i in "${manifestfiles[@]}"
do
echo "---" >> $INSTALL_MANIFEST
echo "Copying $i"
cat $i >> $INSTALL_MANIFEST
done
# Set operator install env vars. Be careful of the ordering if they change!
OPERATOR_MANIFEST=deploy/operator-generated.yaml
cp deploy/operator.yaml $OPERATOR_MANIFEST
# Get the number of env vars in operator container configuration.
envVarIndex=$($YQ r $OPERATOR_MANIFEST spec.template.spec.containers[0].env --length)
# Insert env vars at the end of the env var list in container config.
if [ -n "$JAEGER_ENDPOINT" ]; then
$YQ w -i $OPERATOR_MANIFEST spec.template.spec.containers[0].env[$envVarIndex].name JAEGER_ENDPOINT
$YQ w -i $OPERATOR_MANIFEST spec.template.spec.containers[0].env[$envVarIndex].value $JAEGER_ENDPOINT
fi
# Increment the env var index before inserting more env var.
envVarIndex=$((envVarIndex+1))
if [ -n "$JAEGER_SERVICE_NAME" ]; then
$YQ w -i $OPERATOR_MANIFEST spec.template.spec.containers[0].env[$envVarIndex].name JAEGER_SERVICE_NAME
$YQ w -i $OPERATOR_MANIFEST spec.template.spec.containers[0].env[$envVarIndex].value $JAEGER_SERVICE_NAME
fi
# Write the operator manifest with the proper container image tag.
echo "---" >> $INSTALL_MANIFEST
echo "Copying $OPERATOR_MANIFEST with image $OPERATOR_IMAGE"
$YQ w $OPERATOR_MANIFEST spec.template.spec.containers[0].image $OPERATOR_IMAGE >> $INSTALL_MANIFEST
if [ -f "$OPERATOR_MANIFEST" ]; then
rm -f "$OPERATOR_MANIFEST"
fi