Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update GKM chart version for Galaxy 24.1.1 #4749

Merged
merged 2 commits into from
Sep 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ ENV HELM_DEBUG 1
ENV TERRA_APP_SETUP_VERSION 0.1.0
ENV TERRA_APP_VERSION 0.5.0
# This is galaxykubeman, which references Galaxy
ENV GALAXY_VERSION 2.9.0
ENV GALAXY_VERSION 2.10.0
ENV NGINX_VERSION 4.3.0
# If you update this here, make sure to also update reference.conf:
ENV CROMWELL_CHART_VERSION 0.2.523
Expand Down
5 changes: 3 additions & 2 deletions http/src/main/resources/reference.conf
Original file line number Diff line number Diff line change
Expand Up @@ -775,7 +775,7 @@ gke {
chartName = "/leonardo/galaxykubeman"
# If you change this here, be sure to update it in the dockerfile
# This is galaxykubeman, which references Galaxy
chartVersion = "2.9.0"
chartVersion = "2.10.0"
namespaceNameSuffix = "gxy-ns"
serviceAccountName = "gxy-ksa"
# Setting uninstallKeepHistory will cause the `helm uninstall` command to keep a record of
Expand Down Expand Up @@ -816,7 +816,8 @@ gke {
"2.5.2",
"2.8.0",
"2.8.1",
"2.9.0"
"2.9.0",
"2.10.0"
]
}
galaxyDisk {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ object KubernetesTestData {
val galaxyApp = AppType.Galaxy

val galaxyChartName = ChartName("/leonardo/galaxykubeman")
val galaxyChartVersion = ChartVersion("2.9.0")
val galaxyChartVersion = ChartVersion("2.10.0")
val galaxyChart = Chart(galaxyChartName, galaxyChartVersion)

val galaxyReleasePrefix = "gxy-release"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,8 @@ final class ConfigSpec extends AnyFlatSpec with Matchers {
ChartVersion("2.5.2"),
ChartVersion("2.8.0"),
ChartVersion("2.8.1"),
ChartVersion("2.9.0")
ChartVersion("2.9.0"),
ChartVersion("2.10.0")
)
)
Config.gkeGalaxyAppConfig shouldBe expectedResult
Expand Down
Loading