File tree Expand file tree Collapse file tree 1 file changed +9
-12
lines changed Expand file tree Collapse file tree 1 file changed +9
-12
lines changed Original file line number Diff line number Diff line change @@ -63,6 +63,15 @@ generate_changelog() {
63
63
echo " $k8s_versions_tested " >> " $temp_file "
64
64
echo " $docker_versions_tested " >> " $temp_file "
65
65
echo " $helm_versions_tested " >> " $temp_file "
66
+ get_keda_version
67
+ if [ " ${IS_PATCHED_VERSION} " == " true" ]; then
68
+ if [ -n " $KEDA_IMAGE_TAG " ]; then
69
+ echo " - Chart is tested autoscaling capabilities with KEDA image tag: $KEDA_IMAGE_TAG " >> " $temp_file "
70
+ echo " - Selenium Grid Scaler implementation preview. [README](https://github.com/seleniumhq/docker-selenium/tree/trunk/.keda/README.md)" >> " $temp_file "
71
+ fi
72
+ else
73
+ echo " - Chart is tested autoscaling capabilities with KEDA image tag: $KEDA_CORE_VERSION " >> " $temp_file "
74
+ fi
66
75
echo " " >> " $temp_file "
67
76
68
77
if [ -n " $added_changes " ]; then
@@ -89,18 +98,6 @@ generate_changelog() {
89
98
echo " " >> " $temp_file "
90
99
fi
91
100
92
- get_keda_version
93
- if [ " ${IS_PATCHED_VERSION} " == " true" ]; then
94
- echo " ### Experimental" >> " $temp_file "
95
- echo " - Selenium Grid Scaler implementation preview. [README](https://github.com/seleniumhq/docker-selenium/tree/trunk/.keda/README.md)" >> " $temp_file "
96
- if [ -n " $KEDA_IMAGE_TAG " ]; then
97
- echo " - Chart is tested autoscaling capabilities with KEDA image tag: $KEDA_IMAGE_TAG " >> " $temp_file "
98
- fi
99
- else
100
- echo " - Chart is tested autoscaling capabilities with KEDA image tag: $KEDA_CORE_VERSION " >> " $temp_file "
101
- fi
102
- echo " " >> " $temp_file "
103
-
104
101
# Create chart_release_notes.md
105
102
release_notes_file=" $CHART_DIR /RELEASE_NOTES.md"
106
103
chart_description=$( find . \( -type d -name .git -prune \) -o -type f -wholename ' */selenium-grid/Chart.yaml' -print0 | xargs -0 cat | grep ^description | cut -d ' :' -f 2)
You can’t perform that action at this time.
0 commit comments