Skip to content

Commit 192c391

Browse files
authored
Merge pull request #1509 from novicecpp/crab_backward_compat_with_current_values_file_pr
[crabserver] make chart compatible with current values-testX.yaml file
2 parents 38842cd + dd7a094 commit 192c391

File tree

3 files changed

+7
-29
lines changed

3 files changed

+7
-29
lines changed

helm/crabserver/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.1.9
18+
version: 0.1.10
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to
2222
# follow Semantic Versioning. They should reflect the version the application is using.
23-
appVersion: "v3.240219.1"
23+
appVersion: "v3.240530"

helm/crabserver/templates/configMap.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,11 @@ data:
1212
echo 'INFO Files in /etc/grid-security'
1313
ls -lahZ /etc/grid-security
1414
#su -c "cd /data && /data/run.sh" --preserve-environment _crabserver
15-
cd /data && /data/run.sh
15+
if command -v tini &> /dev/null; then
16+
/data/entrypoint.sh /data/run.sh
17+
else
18+
cd /data && /data/run.sh
19+
fi
1620
---
1721
apiVersion: v1
1822
kind: ConfigMap

helm/crabserver/values-test12-pypi.yaml

Lines changed: 0 additions & 26 deletions
This file was deleted.

0 commit comments

Comments
 (0)