Skip to content

Commit

Permalink
Merge pull request #108 from hyun357123/main
Browse files Browse the repository at this point in the history
helm update
  • Loading branch information
hyun357123 authored Jan 15, 2025
2 parents 4d095ef + 2043109 commit 75feb0c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,8 @@ dependencies {
implementation 'io.fabric8:kubernetes-client:6.10.0'
implementation 'io.fabric8:kubernetes-model-metrics:6.10.0'

implementation 'com.marcnuri.helm-java:helm-java:0.0.13'
// implementation 'com.marcnuri.helm-java:helm-java:0.0.13'
implementation 'com.marcnuri.helm-java:helm-java:0.0.9'

implementation 'com.github.docker-java:docker-java:3.3.0'
implementation 'com.github.docker-java:docker-java-transport-httpclient5:3.3.0'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public Release deployHelmChart(KubernetesClient client, String namespace, Softwa
.withKubeConfig(tempConfigFile)
.withName(catalog.getHelmChart().getChartName())
.withNamespace(namespace)
.withVersion(catalog.getHelmChart().getChartVersion())
// .withVersion(catalog.getHelmChart().getChartVersion())
.set("replicaCount", catalog.getMinReplicas())
.set("image.repository", catalog.getHelmChart().getImageRepository())
.set("image.tag", "latest")
Expand All @@ -53,7 +53,7 @@ public Release deployHelmChart(KubernetesClient client, String namespace, Softwa
.set("persistence.enabled", false)
.set("securityContext.enabled", false)
.set("serviceAccount.create", true)
.withTimeout(300)
// .with(300)
.waitReady();

if (Boolean.TRUE.equals(catalog.getHpaEnabled())) {
Expand Down

0 comments on commit 75feb0c

Please sign in to comment.