Release v3.1.4

This commit is contained in:
stefanprodan
2019-11-04 09:22:36 +02:00
parent 18c63ad7f7
commit d65044ff2e
5 changed files with 8 additions and 8 deletions
+3 -3
View File
@@ -69,20 +69,20 @@ To access the Swagger UI open `<podinfo-host>/swagger/index.html` in a browser.
Helm:
```bash
helm repo add sp https://stefanprodan.github.io/podinfo
helm repo add podinfo https://stefanprodan.github.io/podinfo
helm upgrade --install --wait frontend \
--namespace test \
--set replicaCount=2 \
--set backend=http://backend-podinfo:9898/echo \
sp/podinfo
podinfo/podinfo
helm test frontend --cleanup
helm upgrade --install --wait backend \
--namespace test \
--set hpa.enabled=true \
sp/podinfo
podinfo/podinfo
```
Kustomize:
+2 -2
View File
@@ -1,6 +1,6 @@
apiVersion: v1
version: 3.1.3
appVersion: 3.1.3
version: 3.1.4
appVersion: 3.1.4
name: podinfo
engine: gotpl
description: Podinfo Helm chart for Kubernetes
+1 -1
View File
@@ -19,7 +19,7 @@ h2c:
image:
repository: stefanprodan/podinfo
tag: 3.1.3
tag: 3.1.4
pullPolicy: IfNotPresent
service:
+1 -1
View File
@@ -25,7 +25,7 @@ spec:
spec:
containers:
- name: podinfod
image: stefanprodan/podinfo:3.1.3
image: stefanprodan/podinfo:3.1.4
imagePullPolicy: IfNotPresent
ports:
- name: http
+1 -1
View File
@@ -1,4 +1,4 @@
package version
var VERSION = "3.1.3"
var VERSION = "3.1.4"
var REVISION = "unknown"