Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: stefanprodan/podinfo
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 6.1.2
Choose a base ref
...
head repository: stefanprodan/podinfo
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 6.1.3
Choose a head ref
  • 4 commits
  • 13 files changed
  • 1 contributor

Commits on Apr 13, 2022

  1. Add protocol to Redis URL

    Signed-off-by: Stefan Prodan <stefan.prodan@gmail.com>
    stefanprodan committed Apr 13, 2022
    Copy the full SHA
    2b8c71b View commit details
  2. Merge pull request #189 from stefanprodan/redis-url-fix

    Add protocol to Redis URL
    stefanprodan authored Apr 13, 2022
    Copy the full SHA
    5100959 View commit details
  3. Release v6.1.3

    Signed-off-by: Stefan Prodan <stefan.prodan@gmail.com>
    stefanprodan committed Apr 13, 2022
    Copy the full SHA
    dd9020c View commit details
  4. Merge pull request #190 from stefanprodan/release-6.1.3

    Release v6.1.3
    stefanprodan authored Apr 13, 2022
    Copy the full SHA
    36bf90b View commit details
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: 6.1.2
appVersion: 6.1.2
version: 6.1.3
appVersion: 6.1.3
name: podinfo
engine: gotpl
description: Podinfo Helm chart for Kubernetes
2 changes: 1 addition & 1 deletion charts/podinfo/README.md
Original file line number Diff line number Diff line change
@@ -40,7 +40,7 @@ Parameter | Default | Description
`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>`
`cache` | `None` | Redis address in the format `tcp://<host>:<port>`
`redis.enabled` | `false` | Create Redis deployment for caching purposes
`ui.color` | `#34577c` | UI color
`ui.message` | `None` | UI greetings message
2 changes: 1 addition & 1 deletion charts/podinfo/templates/deployment.yaml
Original file line number Diff line number Diff line change
@@ -73,7 +73,7 @@ spec:
{{- if .Values.cache }}
- --cache-server={{ .Values.cache }}
{{- else if .Values.redis.enabled }}
- --cache-server={{ template "podinfo.fullname" . }}-redis:6379
- --cache-server=tcp://{{ template "podinfo.fullname" . }}-redis:6379
{{- end }}
- --level={{ .Values.logLevel }}
- --random-delay={{ .Values.faults.delay }}
4 changes: 2 additions & 2 deletions charts/podinfo/values-prod.yaml
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@ backends: []

image:
repository: ghcr.io/stefanprodan/podinfo
tag: 6.1.2
tag: 6.1.3
pullPolicy: IfNotPresent

ui:
@@ -77,7 +77,7 @@ hpa:
# average http requests per second per pod (k8s-prometheus-adapter)
requests:

# Redis address in the format <host>:<port>
# Redis address in the format tcp://<host>:<port>
cache: ""
# Redis deployment
redis:
4 changes: 2 additions & 2 deletions charts/podinfo/values.yaml
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@ backends: []

image:
repository: ghcr.io/stefanprodan/podinfo
tag: 6.1.2
tag: 6.1.3
pullPolicy: IfNotPresent

ui:
@@ -81,7 +81,7 @@ hpa:
# average http requests per second per pod (k8s-prometheus-adapter)
requests:

# Redis address in the format <host>:<port>
# Redis address in the format tcp://<host>:<port>
cache: ""
# Redis deployment
redis:
2 changes: 1 addition & 1 deletion cmd/podinfo/main.go
Original file line number Diff line number Diff line change
@@ -52,7 +52,7 @@ func main() {
fs.Bool("unready", false, "when set, ready state is never reached")
fs.Int("stress-cpu", 0, "number of CPU cores with 100 load")
fs.Int("stress-memory", 0, "MB of data to load into memory")
fs.String("cache-server", "", "Redis address in the format <host>:<port>")
fs.String("cache-server", "", "Redis address in the format 'tcp://<host>:<port>'")
fs.String("otel-service-name", "", "service name for reporting to open telemetry address, when not set tracing is disabled")

versionFlag := fs.BoolP("version", "v", false, "get version number")
2 changes: 1 addition & 1 deletion cue/main.cue
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@ resources: (podinfo.#Application & {
}
image: {
repository: "ghcr.io/stefanprodan/podinfo"
tag: "6.1.2"
tag: "6.1.3"
}
resources: requests: cpu: "100m"
hpa: {
2 changes: 1 addition & 1 deletion deploy/bases/backend/deployment.yaml
Original file line number Diff line number Diff line change
@@ -23,7 +23,7 @@ spec:
spec:
containers:
- name: backend
image: ghcr.io/stefanprodan/podinfo:6.1.2
image: ghcr.io/stefanprodan/podinfo:6.1.3
imagePullPolicy: IfNotPresent
ports:
- name: http
2 changes: 1 addition & 1 deletion deploy/bases/frontend/deployment.yaml
Original file line number Diff line number Diff line change
@@ -23,7 +23,7 @@ spec:
spec:
containers:
- name: frontend
image: ghcr.io/stefanprodan/podinfo:6.1.2
image: ghcr.io/stefanprodan/podinfo:6.1.3
imagePullPolicy: IfNotPresent
ports:
- name: http
2 changes: 1 addition & 1 deletion deploy/webapp/backend/deployment.yaml
Original file line number Diff line number Diff line change
@@ -25,7 +25,7 @@ spec:
serviceAccountName: webapp
containers:
- name: backend
image: ghcr.io/stefanprodan/podinfo:6.1.2
image: ghcr.io/stefanprodan/podinfo:6.1.3
imagePullPolicy: IfNotPresent
ports:
- name: http
2 changes: 1 addition & 1 deletion deploy/webapp/frontend/deployment.yaml
Original file line number Diff line number Diff line change
@@ -25,7 +25,7 @@ spec:
serviceAccountName: webapp
containers:
- name: frontend
image: ghcr.io/stefanprodan/podinfo:6.1.2
image: ghcr.io/stefanprodan/podinfo:6.1.3
imagePullPolicy: IfNotPresent
ports:
- name: http
2 changes: 1 addition & 1 deletion kustomize/deployment.yaml
Original file line number Diff line number Diff line change
@@ -23,7 +23,7 @@ spec:
spec:
containers:
- name: podinfod
image: ghcr.io/stefanprodan/podinfo:6.1.2
image: ghcr.io/stefanprodan/podinfo:6.1.3
imagePullPolicy: IfNotPresent
ports:
- name: http
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 = "6.1.2"
var VERSION = "6.1.3"
var REVISION = "unknown"