From de2a9c464ae36d0115004081379b51b8d7883c35 Mon Sep 17 00:00:00 2001 From: stefanprodan Date: Tue, 6 Aug 2019 21:53:16 +0300 Subject: [PATCH] Release v2.0.1 --- README.md | 4 ++++ charts/podinfo/Chart.yaml | 4 ++-- charts/podinfo/values.yaml | 2 +- kustomize/deployment.yaml | 2 +- pkg/version/version.go | 2 +- 5 files changed, 9 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 0462d98..5e9987c 100644 --- a/README.md +++ b/README.md @@ -42,6 +42,10 @@ Web API: * `GET /ws/echo` echos content via websockets `podcli ws ws://localhost:9898/ws/echo` * `GET /chunked/{seconds}` uses `transfer-encoding` type `chunked` to give a partial response and then waits for the specified period +Web UI: + +![podinfo-ui](https://raw.githubusercontent.com/stefanprodan/podinfo/gh-pages/screens/podinfo-ui.png) + ### Guides * [Automated canary deployments with Flagger and Istio](https://medium.com/google-cloud/automated-canary-deployments-with-flagger-and-istio-ac747827f9d1) diff --git a/charts/podinfo/Chart.yaml b/charts/podinfo/Chart.yaml index 7f5c7d8..032a897 100644 --- a/charts/podinfo/Chart.yaml +++ b/charts/podinfo/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 -version: 2.0.0 -appVersion: 2.0.0 +version: 2.0.1 +appVersion: 2.0.1 name: podinfo engine: gotpl description: Podinfo Helm chart for Kubernetes diff --git a/charts/podinfo/values.yaml b/charts/podinfo/values.yaml index 7a146f6..71063ea 100644 --- a/charts/podinfo/values.yaml +++ b/charts/podinfo/values.yaml @@ -12,7 +12,7 @@ faults: image: repository: quay.io/stefanprodan/podinfo - tag: 2.0.0 + tag: 2.0.1 pullPolicy: IfNotPresent service: diff --git a/kustomize/deployment.yaml b/kustomize/deployment.yaml index 49fd762..e80590e 100644 --- a/kustomize/deployment.yaml +++ b/kustomize/deployment.yaml @@ -24,7 +24,7 @@ spec: spec: containers: - name: podinfod - image: quay.io/stefanprodan/podinfo:2.0.0 + image: quay.io/stefanprodan/podinfo:2.0.1 imagePullPolicy: IfNotPresent ports: - containerPort: 9898 diff --git a/pkg/version/version.go b/pkg/version/version.go index b48ef25..49b9a00 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -1,4 +1,4 @@ package version -var VERSION = "2.0.0" +var VERSION = "2.0.1" var REVISION = "unknown"