Skip to content
This repository has been archived by the owner on Dec 15, 2021. It is now read-only.

Commit

Permalink
pre release v0.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
ngtuna committed Apr 5, 2017
1 parent a03c4bd commit 3cf2b29
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions pkg/utils/k8sutil.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ const (
TIMEOUT = 300
CONTROLLER_IMAGE = "bitnami/kubeless-controller"
KAFKA_IMAGE = "wurstmeister/kafka"
PYTHON_RUNTIME = "skippbox/kubeless-python:0.0.4"
PUBSUB_RUNTIME = "skippbox/kubeless-event-consumer:0.0.4"
PYTHON_RUNTIME = "skippbox/kubeless-python:0.0.5"
PUBSUB_RUNTIME = "skippbox/kubeless-event-consumer:0.0.5"
NODEJS_RUNTIME = "rosskukulinski/kubeless-nodejs:0.0.0"
)

Expand Down Expand Up @@ -605,7 +605,7 @@ func getKafkaImage(v string) string {
func getInitImage(runtime string) string {
switch {
case strings.Contains(runtime, "python"):
return "python:2.7.11-alpine"
return "tuna/python-pillow:2.7.11-alpine"
case strings.Contains(runtime, "nodejs"):
return "node:6.10-alpine"
default:
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ package version

var (
// VERSION should be updated by hand at each release
VERSION = "0.0.9"
VERSION = "0.0.10"

// GITCOMMIT will be overwritten automatically by the build system
GITCOMMIT = "HEAD"
Expand Down

0 comments on commit 3cf2b29

Please sign in to comment.