Skip to content

Commit

Permalink
Merge pull request #290 from stefanprodan/release-6.4.1
Browse files Browse the repository at this point in the history
Release v6.4.1
  • Loading branch information
stefanprodan committed Aug 10, 2023
2 parents a54550e + bcf492e commit 4892983
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 11 deletions.
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.4.0
appVersion: 6.4.0
version: 6.4.1
appVersion: 6.4.1
name: podinfo
engine: gotpl
description: Podinfo Helm chart for Kubernetes
Expand Down
2 changes: 1 addition & 1 deletion 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: 6.4.0
tag: 6.4.1
pullPolicy: IfNotPresent

ui:
Expand Down
2 changes: 1 addition & 1 deletion charts/podinfo/values.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: 6.4.0
tag: 6.4.1
pullPolicy: IfNotPresent

ui:
Expand Down
2 changes: 1 addition & 1 deletion cue/main.cue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ app: podinfo.#Application & {
name: "podinfo"
namespace: "default"
}
image: tag: "6.4.0"
image: tag: "6.4.1"
resources: requests: {
cpu: "100m"
memory: "16Mi"
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:6.4.0
image: ghcr.io/stefanprodan/podinfo:6.4.1
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:6.4.0
image: ghcr.io/stefanprodan/podinfo:6.4.1
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:6.4.0
image: ghcr.io/stefanprodan/podinfo:6.4.1
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:6.4.0
image: ghcr.io/stefanprodan/podinfo:6.4.1
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:6.4.0
image: ghcr.io/stefanprodan/podinfo:6.4.1
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 = "6.4.0"
var VERSION = "6.4.1"
var REVISION = "unknown"

0 comments on commit 4892983

Please sign in to comment.