Merge pull request #50 from stefanprodan/prep-3.2.1

Release v3.2.1
This commit is contained in:
Stefan Prodan
2020-03-24 13:54:46 +02:00
committed by GitHub
5 changed files with 7 additions and 7 deletions

View File

@@ -1,6 +1,6 @@
apiVersion: v1
version: 3.2.0
appVersion: 3.2.0
version: 3.2.1
appVersion: 3.2.1
name: podinfo
engine: gotpl
description: Podinfo Helm chart for Kubernetes

View File

@@ -21,7 +21,7 @@ h2c:
image:
repository: stefanprodan/podinfo
tag: 3.2.0
tag: 3.2.1
pullPolicy: IfNotPresent
service:

View File

@@ -4,9 +4,9 @@ set -o errexit
function finish {
echo '>>> Test logs'
kubectl logs -l app=podinfo
kubectl logs -l app=podinfo || true
}
trap finish EXIT
trap "finish" EXIT SIGINT
echo '>>> Start integration tests'
helm test podinfo

View File

@@ -25,7 +25,7 @@ spec:
spec:
containers:
- name: podinfod
image: stefanprodan/podinfo:3.2.0
image: stefanprodan/podinfo:3.2.1
imagePullPolicy: IfNotPresent
ports:
- name: http

View File

@@ -1,4 +1,4 @@
package version
var VERSION = "3.2.0"
var VERSION = "3.2.1"
var REVISION = "unknown"