Skip to content

Commit

Permalink
Release v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lightnet328 committed Sep 19, 2018
1 parent 97f911d commit edc558e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ The following table lists the configurable parameters of the KSCE chart and thei
| Parameter | Description | Default |
| --------------------------- | ----------------------------- | ---------------------------------------------- |
| `image.repository` | KSCE Image name | `lightnet328/kubernetes-ssh-container-exposer` |
| `image.tag` | KSCE Image tag | `0.1.0` |
| `image.tag` | KSCE Image tag | `0.2.0` |
| `image.pullPolicy` | Image pull policy | `IfNotPresent` |
| `sshpiper.image.repository` | SSHPiper Image name | `farmer1992/sshpiperd` |
| `sshpiper.image.tag` | SSHPiper Image tag | `latest` |
Expand Down
3 changes: 3 additions & 0 deletions cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import (

var logger, _ = zap.NewDevelopment()

const VERSION = "0.2.0"
const SSHServicePort int32 = 22

type Services []v1.Service
Expand Down Expand Up @@ -148,6 +149,8 @@ func initialize() error {
}

func main() {
logger.Info("Started", zap.String("version", VERSION))

err := initialize()
if err != nil {
log.Fatal(err)
Expand Down
4 changes: 2 additions & 2 deletions helm/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: v1
appVersion: 0.1.0
appVersion: 0.2.0
description: A Helm chart for Kubernetes
name: kubernetes-ssh-container-exposer
version: 0.1.0
version: 0.2.0
2 changes: 1 addition & 1 deletion helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

image:
repository: lightnet328/kubernetes-ssh-container-exposer
tag: 0.1.0
tag: 0.2.0
pullPolicy: IfNotPresent

restartPolicy: Never
Expand Down

0 comments on commit edc558e

Please sign in to comment.