Release v3.1.3

This commit is contained in:
stefanprodan
2019-10-17 13:50:48 +03:00
parent 42ad3faf5a
commit b213e0af0a
5 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -4,8 +4,7 @@
[![Go Report Card](https://goreportcard.com/badge/github.com/stefanprodan/podinfo)](https://goreportcard.com/report/github.com/stefanprodan/podinfo)
[![Docker Pulls](https://img.shields.io/docker/pulls/stefanprodan/podinfo)](https://hub.docker.com/r/stefanprodan/podinfo)
Podinfo is a tiny web application made with Go
that showcases best practices of running microservices in Kubernetes.
Podinfo is a tiny web application made with Go that showcases best practices of running microservices in Kubernetes.
Specifications:
@@ -14,6 +13,7 @@ Specifications:
* File watcher for secrets and configmaps
* Instrumented with Prometheus
* Tracing with Istio and Jaeger
* Linkerd service profile
* Structured logging with zap
* 12-factor app with viper
* Fault injection (random errors and latency)
+2 -2
View File
@@ -1,6 +1,6 @@
apiVersion: v1
version: 3.1.2
appVersion: 3.1.2
version: 3.1.3
appVersion: 3.1.3
name: podinfo
engine: gotpl
description: Podinfo Helm chart for Kubernetes
+1 -1
View File
@@ -16,7 +16,7 @@ faults:
image:
repository: stefanprodan/podinfo
tag: 3.1.2
tag: 3.1.3
pullPolicy: IfNotPresent
service:
+1 -1
View File
@@ -25,7 +25,7 @@ spec:
spec:
containers:
- name: podinfod
image: stefanprodan/podinfo:3.1.2
image: stefanprodan/podinfo:3.1.3
imagePullPolicy: IfNotPresent
ports:
- name: http
+1 -1
View File
@@ -1,4 +1,4 @@
package version
var VERSION = "3.1.2"
var VERSION = "3.1.3"
var REVISION = "unknown"