Skip to content

Commit

Permalink
Merge pull request #35 from cdsap/release_0.1.5
Browse files Browse the repository at this point in the history
release 0.1.5
  • Loading branch information
cdsap authored Jul 13, 2021
2 parents f99f9b0 + a9bafc0 commit 50db7ff
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 19 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,14 +58,14 @@ buildscript {
}
}
dependencies {
classpath("com.cdsap:talaiot:1.4.0")
classpath("io.github.cdsap:talaiot:1.5.1")
}
}
apply<com.cdsap.talaiot.plugin.TalaiotPlugin>()
apply<io.github.cdsap.talaiot.plugin.TalaiotPlugin>()
configure<com.cdsap.talaiot.plugin.TalaiotPluginExtension>() {
logger = com.cdsap.talaiot.logger.LogTracker.Mode.INFO
configure<io.github.cdsap.talaiot.plugin.TalaiotPluginExtension>() {
logger = io.github.cdsap.talaiot.logger.LogTracker.Mode.INFO
metrics {
customBuildMetrics("experiment" to "$id")
customTaskMetrics("experiment" to "$id")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package com.cdsap.bagan.generator


object Versions {
const val CHART_EXPERIMENT = "0.1.4"
const val POD_INJECTOR_VERSION = "0.1.4"
const val CHART_EXPERIMENT = "0.1.5"
const val POD_INJECTOR_VERSION = "0.1.5"
const val POD_INJECTOR = "cdsap/bagan-pod-injector:$POD_INJECTOR_VERSION"
const val PATH = ""
const val TEMP_FOLDER = "tmp"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,14 +74,14 @@ buildscript {
}
}
dependencies {
classpath("com.cdsap:talaiot:1.4.0")
classpath("io.github.cdsap:talaiot:1.5.1")
}
}

apply<com.cdsap.talaiot.plugin.TalaiotPlugin>()
apply<io.github.cdsap.talaiot.plugin.TalaiotPlugin>()

configure<com.cdsap.talaiot.plugin.TalaiotPluginExtension>() {
logger = com.cdsap.talaiot.logger.LogTracker.Mode.INFO
configure<io.github.cdsap.talaiot.plugin.TalaiotPluginExtension>() {
logger = io.github.cdsap.talaiot.logger.LogTracker.Mode.INFO
metrics {
customBuildMetrics("experiment" to "null")
customTaskMetrics("experiment" to "null")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class ValuesTest : BehaviorSpec({
val repo = "http://git"
val name = "experiment0"
val command = "./gradlew command"
val image = "cdsap/bagan-pod-injector:0.1.4"
val image = "cdsap/bagan-pod-injector:0.1.5"
val session = "xx1"
val branch = "develop"
val iterations = 10
Expand Down
2 changes: 1 addition & 1 deletion deploy/deployment.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

VERSION="0.1.4"
VERSION="0.1.5"
REGISTRY=""
IMAGE_BAGAN_INIT="cdsap/bagan-init"
IMAGE_BAGAN_POD="cdsap/bagan-pod-injector"
Expand Down
2 changes: 1 addition & 1 deletion docker/installer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,5 @@ RUN curl -o /tmp/$FILENAME ${HELM_URL} \
&& mv /tmp/linux-amd64/helm /bin/helm \
&& rm -rf /tmp

RUN helm init --client-only
#RUN helm init --client-only
COPY bin/generator/ /usr/local/generator
4 changes: 2 additions & 2 deletions docker/installer/bin/generator/Versions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package com.cdsap.bagan.generator


object Versions {
const val CHART_EXPERIMENT = "0.1.4"
const val POD_INJECTOR_VERSION = "0.1.4"
const val CHART_EXPERIMENT = "0.1.5"
const val POD_INJECTOR_VERSION = "0.1.5"
const val POD_INJECTOR = "cdsap/bagan-pod-injector:$POD_INJECTOR_VERSION"
const val PATH = ""
const val TEMP_FOLDER = "tmp"
Expand Down
8 changes: 4 additions & 4 deletions docker/pod/bin/experiments/TalaiotInjector.kt
Original file line number Diff line number Diff line change
Expand Up @@ -61,14 +61,14 @@ buildscript {
}
}
dependencies {
classpath("com.cdsap:talaiot:1.4.0")
classpath("io.github.cdsap:talaiot:1.5.1")
}
}
apply<com.cdsap.talaiot.plugin.TalaiotPlugin>()
apply<io.github.cdsap.talaiot.plugin.TalaiotPlugin>()
configure<com.cdsap.talaiot.plugin.TalaiotPluginExtension>() {
logger = com.cdsap.talaiot.logger.LogTracker.Mode.INFO
configure<io.github.cdsap.talaiot.plugin.TalaiotPluginExtension>() {
logger = io.github.cdsap.talaiot.logger.LogTracker.Mode.INFO
metrics {
customBuildMetrics("experiment" to "$id")
customTaskMetrics("experiment" to "$id")
Expand Down

0 comments on commit 50db7ff

Please sign in to comment.