Skip to content

Commit

Permalink
Update to titan-server 0.7.0 (#122)
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Schrock authored and Derek Smart committed Dec 3, 2019
1 parent cb68645 commit 347d5db
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@
<dependency>
<groupId>io.titandata</groupId>
<artifactId>titan-client</artifactId>
<version>0.6.6</version>
<version>0.7.0</version>
</dependency>
<dependency>
<groupId>me.tongfei</groupId>
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/io/titandata/titan/providers/Kubernetes.kt
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ import io.titandata.titan.utils.HttpHandler
import kotlin.system.exitProcess

class Kubernetes : Provider {
private val titanServerVersion = "0.6.6"
private val titanServerVersion = "0.7.0"
private val dockerRegistryUrl = "titandata"

private val httpHandler = HttpHandler()
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/io/titandata/titan/providers/Local.kt
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ import io.titandata.titan.utils.HttpHandler
import kotlin.system.exitProcess

class Local : Provider {
private val titanServerVersion = "0.6.6"
private val titanServerVersion = "0.7.0"
private val dockerRegistryUrl = "titandata"

private val httpHandler = HttpHandler()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class Uninstall(
}
if (docker.titanServerIsAvailable()) docker.rm("${docker.identity}-server", true)
track("Removing titan-data Docker volume") {
docker.removeVolume("titan-data")
docker.removeVolume("titan-k8s-data")
}
track("Removing Titan Docker image") {
docker.removeTitanImages(titanServerVersion)
Expand Down

0 comments on commit 347d5db

Please sign in to comment.