Skip to content

Commit

Permalink
Merge pull request #129 from stefanprodan/release-v5.2.0
Browse files Browse the repository at this point in the history
Release v5.2.0
  • Loading branch information
stefanprodan authored Mar 22, 2021
2 parents 79ab71b + bcd8e65 commit ef98a04
Show file tree
Hide file tree
Showing 12 changed files with 21 additions and 142 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
[![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 used by CNCF projects like [Flux](https://github.com/fluxcd/flux2) and [Flagger](https://github.com/fluxcd/flagger)
for end-to-end testing and workshops.

Specifications:

Expand Down
4 changes: 2 additions & 2 deletions charts/podinfo/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
version: 5.1.4
appVersion: 5.1.4
version: 5.2.0
appVersion: 5.2.0
name: podinfo
engine: gotpl
description: Podinfo Helm chart for Kubernetes
Expand Down
8 changes: 6 additions & 2 deletions charts/podinfo/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
Podinfo is a tiny web application made with Go
that showcases best practices of running microservices in Kubernetes.

Podinfo is used by CNCF projects like [Flux](https://github.com/fluxcd/flux2)
and [Flagger](https://github.com/fluxcd/flagger)
for end-to-end testing and workshops.

## Installing the Chart

To install the chart with the release name `my-release`:
Expand Down Expand Up @@ -33,7 +37,7 @@ The following tables lists the configurable parameters of the podinfo chart and
Parameter | Default | Description
--- | --- | ---
`replicaCount` | `1` | Desired number of pods
`logLevel` | `info` | Log level: `debug`, `info`, `warn`, `error`, `flat` or `panic`
`logLevel` | `info` | Log level: `debug`, `info`, `warn`, `error`
`backend` | `None` | Echo backend URL
`backends` | `[]` | Array of echo backend URLs
`cache` | `None` | Redis address in the format `<host>:<port>`
Expand All @@ -47,7 +51,6 @@ Parameter | Default | Description
`faults.unready` | `false` | When set, the ready state is never reached
`faults.testFail` | `false` | When set, a helm test is included which always fails
`faults.testTimeout` | `false` | When set, a helm test is included which always times out
`h2c.enabled` | `false` | Allow upgrading to h2c
`image.repository` | `stefanprodan/podinfo` | Image repository
`image.tag` | `<VERSION>` | Image tag
`image.pullPolicy` | `IfNotPresent` | Image pull policy
Expand All @@ -59,6 +62,7 @@ Parameter | Default | Description
`service.grpcPort` | `9999` | ClusterIP gPRC port
`service.grpcService` | `podinfo` | gPRC service name
`service.nodePort` | `31198` | NodePort for the HTTP endpoint
`h2c.enabled` | `false` | Allow upgrading to h2c (non-TLS version of HTTP/2)
`hpa.enabled` | `false` | Enables the Kubernetes HPA
`hpa.maxReplicas` | `10` | Maximum amount of pods
`hpa.cpu` | `None` | Target CPU usage per pod
Expand Down
6 changes: 3 additions & 3 deletions charts/podinfo/values-prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ backends: []

image:
repository: ghcr.io/stefanprodan/podinfo
tag: 5.1.4
tag: 5.2.0
pullPolicy: IfNotPresent

ui:
Expand Down Expand Up @@ -99,10 +99,10 @@ ingress:
enabled: false
annotations: {}
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
# kubernetes.io/tls-acme: "true"
path: /*
hosts: []
# - podinfo.local
# - podinfo.local
tls: []
# - secretName: chart-example-tls
# hosts:
Expand Down
127 changes: 0 additions & 127 deletions charts/podinfo/values-secure.yaml

This file was deleted.

4 changes: 2 additions & 2 deletions charts/podinfo/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ backends: []

image:
repository: ghcr.io/stefanprodan/podinfo
tag: 5.1.4
tag: 5.2.0
pullPolicy: IfNotPresent

ui:
Expand Down Expand Up @@ -105,7 +105,7 @@ ingress:
# kubernetes.io/tls-acme: "true"
path: /*
hosts: []
# - podinfo.local
# - podinfo.local
tls: []
# - secretName: chart-example-tls
# hosts:
Expand Down
2 changes: 1 addition & 1 deletion deploy/bases/backend/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ spec:
spec:
containers:
- name: backend
image: ghcr.io/stefanprodan/podinfo:5.1.4
image: ghcr.io/stefanprodan/podinfo:5.2.0
imagePullPolicy: IfNotPresent
ports:
- name: http
Expand Down
2 changes: 1 addition & 1 deletion deploy/bases/frontend/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ spec:
spec:
containers:
- name: frontend
image: ghcr.io/stefanprodan/podinfo:5.1.4
image: ghcr.io/stefanprodan/podinfo:5.2.0
imagePullPolicy: IfNotPresent
ports:
- name: http
Expand Down
2 changes: 1 addition & 1 deletion deploy/webapp/backend/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ spec:
serviceAccountName: webapp
containers:
- name: backend
image: ghcr.io/stefanprodan/podinfo:5.1.4
image: ghcr.io/stefanprodan/podinfo:5.2.0
imagePullPolicy: IfNotPresent
ports:
- name: http
Expand Down
2 changes: 1 addition & 1 deletion deploy/webapp/frontend/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ spec:
serviceAccountName: webapp
containers:
- name: frontend
image: ghcr.io/stefanprodan/podinfo:5.1.4
image: ghcr.io/stefanprodan/podinfo:5.2.0
imagePullPolicy: IfNotPresent
ports:
- name: http
Expand Down
2 changes: 1 addition & 1 deletion kustomize/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ spec:
spec:
containers:
- name: podinfod
image: ghcr.io/stefanprodan/podinfo:5.1.4
image: ghcr.io/stefanprodan/podinfo:5.2.0
imagePullPolicy: IfNotPresent
ports:
- name: http
Expand Down
2 changes: 1 addition & 1 deletion pkg/version/version.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package version

var VERSION = "5.1.4"
var VERSION = "5.2.0"
var REVISION = "unknown"

0 comments on commit ef98a04

Please sign in to comment.