update semverCompare target to include -0 patch #176
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
https://helm.sh/docs/chart_template_guide/function_list/#working-with-prerelease-versions
"-stable" and "-edge" are considered pre-release
Ran tests from
--
(stable)
helm template -f ~/retool-helm/charts/retool/values.yaml foo ~/retool-helm/charts/retool --set config.encryptionKey="foo" --set image.tag="3.33.13-stable" | rg "kind: Deployment" -C 2
(edge)
retool-helm git:(avimoondra/update-helm-with-path0) helm template -f ~/retool-helm/charts/retool/values.yaml foo ~/retool-helm/charts/retool --set config.encryptionKey="foo" --set image.tag="3.38.0-edge" | rg "kind: Deployment" -C 2
(internal image tag)
retool-helm git:(avimoondra/update-helm-with-path0) helm template -f ~/retool-helm/charts/retool/values.yaml foo ~/retool-helm/charts/retool --set config.encryptionKey="foo" --set image.tag="release-3.39.0-a0b2a86" --set codeExecutor.enabled="false" --set workflows.enabled="false" | rg "kind: Deployment" -C 2
(internal image tag w/workflows)
retool-helm git:(avimoondra/update-helm-with-path0) helm template -f ~/retool-helm/charts/retool/values.yaml foo ~/retool-helm/charts/retool --set config.encryptionKey="foo" --set image.tag="release-3.39.0-a0b2a86" --set codeExecutor.enabled="false" --set workflows.enabled="true" | rg "kind: Deployment" -C 2
--
(all services, but not stable or release)
helm template -f ~/retool-helm/charts/retool/values.yaml foo ~/retool-helm/charts/retool --set config.encryptionKey="foo" --set image.tag="3.24.24" | rg "kind: Deployment" -C 2
(no code executor)
retool-helm git:(avimoondra/update-helm-with-path0) helm template -f ~/retool-helm/charts/retool/values.yaml foo ~/retool-helm/charts/retool --set config.encryptionKey="foo" --set image.tag="3.10.10" | rg "kind: Deployment" -C 2
(no workflows)
retool-helm git:(avimoondra/update-helm-with-path0) helm template -f ~/retool-helm/charts/retool/values.yaml foo ~/retool-helm/charts/retool --set config.encryptionKey="foo" --set image.tag="3.4.10" | rg "kind: Deployment" -C 2