Merge pull request #78 from stefanprodan/release-4.0.1

Release 4.0.1
This commit is contained in:
Stefan Prodan
2020-05-28 10:46:58 +03:00
committed by GitHub
9 changed files with 15 additions and 14 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
apiVersion: v1
version: 4.0.0
appVersion: 4.0.0
version: 4.0.1
appVersion: 4.0.1
name: podinfo
engine: gotpl
description: Podinfo Helm chart for Kubernetes
+6 -5
View File
@@ -8,8 +8,9 @@ that showcases best practices of running microservices in Kubernetes.
To install the chart with the release name `my-release`:
```console
$ helm repo add sp https://stefanprodan.github.io/podinfo
$ helm upgrade my-release --install sp/podinfo
$ helm repo add podinfo https://stefanprodan.github.io/podinfo
$ helm upgrade -i my-release podinfo/podinfo
```
The command deploys podinfo on the Kubernetes cluster in the default namespace.
@@ -20,7 +21,7 @@ The [configuration](#configuration) section lists the parameters that can be con
To uninstall/delete the `my-release` deployment:
```console
$ helm delete --purge my-release
$ helm delete my-release
```
The command removes all the Kubernetes components associated with the chart and deletes the release.
@@ -83,14 +84,14 @@ Parameter | Default | Description
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
```console
$ helm install stable/podinfo --name my-release \
$ helm install my-release podinfo/podinfo \
--set=serviceMonitor.enabled=true,serviceMonitor.interval=5s
```
Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the chart. For example,
```console
$ helm install stable/podinfo --name my-release -f values.yaml
$ helm install my-release podinfo/podinfo -f values.yaml
```
> **Tip**: You can use the default [values.yaml](values.yaml)
+1 -1
View File
@@ -24,7 +24,7 @@ h2c:
image:
repository: stefanprodan/podinfo
tag: 4.0.0
tag: 4.0.1
pullPolicy: IfNotPresent
service:
+1 -1
View File
@@ -23,7 +23,7 @@ spec:
spec:
containers:
- name: backend
image: stefanprodan/podinfo:4.0.0
image: stefanprodan/podinfo:4.0.1
imagePullPolicy: IfNotPresent
ports:
- name: http
+1 -1
View File
@@ -23,7 +23,7 @@ spec:
spec:
containers:
- name: frontend
image: stefanprodan/podinfo:4.0.0
image: stefanprodan/podinfo:4.0.1
imagePullPolicy: IfNotPresent
ports:
- name: http
+1 -1
View File
@@ -25,7 +25,7 @@ spec:
serviceAccountName: webapp
containers:
- name: backend
image: stefanprodan/podinfo:4.0.0
image: stefanprodan/podinfo:4.0.1
imagePullPolicy: IfNotPresent
ports:
- name: http
+1 -1
View File
@@ -25,7 +25,7 @@ spec:
serviceAccountName: webapp
containers:
- name: frontend
image: stefanprodan/podinfo:4.0.0
image: stefanprodan/podinfo:4.0.1
imagePullPolicy: IfNotPresent
ports:
- name: http
+1 -1
View File
@@ -23,7 +23,7 @@ spec:
spec:
containers:
- name: podinfod
image: stefanprodan/podinfo:4.0.0
image: stefanprodan/podinfo:4.0.1
imagePullPolicy: IfNotPresent
ports:
- name: http
+1 -1
View File
@@ -1,4 +1,4 @@
package version
var VERSION = "4.0.0"
var VERSION = "4.0.1"
var REVISION = "unknown"