From b213e0af0ae0952f9376ec269d83427076454e5c Mon Sep 17 00:00:00 2001 From: stefanprodan Date: Thu, 17 Oct 2019 13:50:48 +0300 Subject: [PATCH] Release v3.1.3 --- README.md | 4 ++-- charts/podinfo/Chart.yaml | 4 ++-- charts/podinfo/values.yaml | 2 +- kustomize/deployment.yaml | 2 +- pkg/version/version.go | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index c4aba26..cd19883 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/charts/podinfo/Chart.yaml b/charts/podinfo/Chart.yaml index ff9c11f..acc4e03 100644 --- a/charts/podinfo/Chart.yaml +++ b/charts/podinfo/Chart.yaml @@ -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 diff --git a/charts/podinfo/values.yaml b/charts/podinfo/values.yaml index 2eee827..918bcb1 100644 --- a/charts/podinfo/values.yaml +++ b/charts/podinfo/values.yaml @@ -16,7 +16,7 @@ faults: image: repository: stefanprodan/podinfo - tag: 3.1.2 + tag: 3.1.3 pullPolicy: IfNotPresent service: diff --git a/kustomize/deployment.yaml b/kustomize/deployment.yaml index 820cf2e..acea3bb 100644 --- a/kustomize/deployment.yaml +++ b/kustomize/deployment.yaml @@ -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 diff --git a/pkg/version/version.go b/pkg/version/version.go index ec75bbc..415ffdb 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -1,4 +1,4 @@ package version -var VERSION = "3.1.2" +var VERSION = "3.1.3" var REVISION = "unknown"