Release v2.0.1

This commit is contained in:
stefanprodan
2019-08-06 21:53:16 +03:00
parent fed04ad692
commit de2a9c464a
5 changed files with 9 additions and 5 deletions
+4
View File
@@ -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)
+2 -2
View File
@@ -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
+1 -1
View File
@@ -12,7 +12,7 @@ faults:
image:
repository: quay.io/stefanprodan/podinfo
tag: 2.0.0
tag: 2.0.1
pullPolicy: IfNotPresent
service:
+1 -1
View File
@@ -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
+1 -1
View File
@@ -1,4 +1,4 @@
package version
var VERSION = "2.0.0"
var VERSION = "2.0.1"
var REVISION = "unknown"