Skip to content

Commit

Permalink
adjust update-helm script to enable readiness check
Browse files Browse the repository at this point in the history
Signed-off-by: Simon L. <[email protected]>
  • Loading branch information
szaimen committed Dec 3, 2024
1 parent c88fef1 commit 075f8ba
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions nextcloud-aio-helm-chart/update-helm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,13 @@ set -ex
cd manual-install
cp latest.yml latest.yml.backup

# Additional config
cat << EOL > /tmp/labels
labels:
kompose.service.healthcheck.readiness.disable: false
EOL
# shellcheck disable=SC1083
sed -i "/image:.*/r /tmp/labels" latest.yml
sed -i -E '/^( *- )(NET_RAW|SYS_NICE|MKNOD|SYS_ADMIN)$/!s/( *- )([A-Z_]+)$/\1\2=${\2}/' latest.yml
cp sample.conf /tmp/
sed -i 's|^|export |' /tmp/sample.conf
Expand Down Expand Up @@ -197,6 +204,10 @@ find ./ -name '*deployment.yaml' -exec sed -i "s|manual-install-nextcloud-aio|ne
# shellcheck disable=SC1083
find ./ -name '*deployment.yaml' -exec sed -i "/medium: Memory/d" \{} \;
# shellcheck disable=SC1083
find ./ -name '*.yaml' -exec sed -i "/kompose.service.healthcheck.readiness.disable/d" \{} \;
# shellcheck disable=SC1083
find ./ -name '*.yaml' -exec sed -i "/kompose.cmd/d" \{} \;
# shellcheck disable=SC1083
find ./ -name '*deployment.yaml' -exec sed -i "s|emptyDir:|emptyDir: \{\}|" \{} \;
# shellcheck disable=SC1083
find ./ -name '*deployment.yaml' -exec sed -i "/hostPort:/d" \{} \;
Expand Down

0 comments on commit 075f8ba

Please sign in to comment.