Skip to content

Commit

Permalink
Merge branch 'develop' into jsaun/leo-service-account
Browse files Browse the repository at this point in the history
  • Loading branch information
jsaun authored Jan 31, 2025
2 parents 63f36e4 + 1a00c81 commit 5b3b326
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# 1. Build the Helm client Go lib
# 2. Deploy Leonardo pointing to the Go lib

FROM golang:1.20 AS helm-go-lib-builder
FROM golang:1.23 AS helm-go-lib-builder

# TODO Consider moving repo set-up to the build script to make CI versioning easier
RUN mkdir /helm-go-lib-build && \
Expand Down Expand Up @@ -42,7 +42,7 @@ COPY --from=helm-go-lib-builder /helm-go-lib-build/helm-scala-sdk/helm-go-lib /l
# Install the Helm3 CLI client using a provided script because installing it via the RHEL package managing didn't work
RUN curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 && \
chmod 700 get_helm.sh && \
./get_helm.sh --version v3.11.2 && \
./get_helm.sh --version v3.15.3 && \
rm get_helm.sh

# Add the repos containing nginx, galaxy, setup apps, custom apps, cromwell and aou charts
Expand Down
3 changes: 3 additions & 0 deletions http/src/main/resources/leo.conf
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ gce {
}

gke {
cluster {
version = ${?KUBERNETES_VERSION}
}
galaxyApp {
postgres.password = ${?GALAXY_POSTGRES_PASSWORD}
orchUrl = ${?ORCH_URL}
Expand Down
2 changes: 1 addition & 1 deletion http/src/main/resources/reference.conf
Original file line number Diff line number Diff line change
Expand Up @@ -723,7 +723,7 @@ gke {
"69.173.112.0/21"
]
# See https://cloud.google.com/kubernetes-engine/docs/release-notes
version = "1.28"
version = "1.30"
nodepoolLockCacheExpiryTime = 1 hour
nodepoolLockCacheMaxSize = 200

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ final class ConfigSpec extends AnyFlatSpec with Matchers {
"69.173.127.240/28",
"69.173.112.0/21"
).map(CidrIP),
KubernetesClusterVersion("1.28"),
KubernetesClusterVersion("1.30"),
1 hour,
200,
AutopilotConfig(AutopilotResource(500, 3, 1), AutopilotResource(500, 3, 1))
Expand Down
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ object Dependencies {
val workbenchOauth2V = "0.8-3e0cf25"
val workbenchAzureV = s"0.10-b25c29d"

val helmScalaSdkV = "0.0.8.5"
val helmScalaSdkV = "0.0.9.1"

val excludeAkkaHttp = ExclusionRule(organization = "com.typesafe.akka", name = s"akka-http_${scalaV}")
val excludeAkkaStream = ExclusionRule(organization = "com.typesafe.akka", name = s"akka-stream_${scalaV}")
Expand Down

0 comments on commit 5b3b326

Please sign in to comment.