Skip to content

Commit

Permalink
Merge pull request #101 from stefanprodan/release-5.0.2
Browse files Browse the repository at this point in the history
Release v5.0.2
  • Loading branch information
stefanprodan authored Oct 6, 2020
2 parents 36e5cea + 4c0dfae commit 6596ed0
Show file tree
Hide file tree
Showing 12 changed files with 22 additions and 21 deletions.
4 changes: 2 additions & 2 deletions .github/actions/helm/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ main() {
}

main
echo "::add-path::$BIN_DIR"
echo "::add-path::$RUNNER_WORKSPACE/$(basename $GITHUB_REPOSITORY)/bin"
echo "$GITHUB_WORKSPACE/bin" >> $GITHUB_PATH
echo "$RUNNER_WORKSPACE/$(basename $GITHUB_REPOSITORY)/bin" >> $GITHUB_PATH
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
matrix:
helm-version:
- 2.16.12
- 3.3.3
- 3.3.4
runs-on: ubuntu-latest
steps:
- name: Checkout
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.0.1
appVersion: 5.0.1
version: 5.0.2
appVersion: 5.0.2
name: podinfo
engine: gotpl
description: Podinfo Helm chart for Kubernetes
Expand Down
13 changes: 7 additions & 6 deletions charts/podinfo/values-prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ h2c:

image:
repository: ghcr.io/stefanprodan/podinfo
tag: 5.0.1
tag: 5.0.2
pullPolicy: IfNotPresent

service:
Expand All @@ -39,9 +39,9 @@ service:
# metrics-server add-on required
hpa:
enabled: true
maxReplicas: 10
maxReplicas: 5
# average total CPU usage per pod (1-100)
cpu:
cpu: 99
# average memory usage per pod (100Mi-1Gi)
memory:
# average http requests per second per pod (k8s-prometheus-adapter)
Expand All @@ -53,7 +53,7 @@ cache: ""
redis:
enabled: true
repository: redis
tag: 6.0.1
tag: 6.0.8

serviceAccount:
# Specifies whether a service account should be created
Expand Down Expand Up @@ -85,9 +85,10 @@ ingress:

resources:
limits:
memory: 256Mi
requests:
cpu: 1m
memory: 16Mi
cpu: 100m
memory: 64Mi

nodeSelector: {}

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

image:
repository: ghcr.io/stefanprodan/podinfo
tag: 5.0.1
tag: 5.0.2
pullPolicy: IfNotPresent

service:
Expand Down Expand Up @@ -53,7 +53,7 @@ cache: ""
redis:
enabled: false
repository: redis
tag: 6.0.1
tag: 6.0.8

serviceAccount:
# Specifies whether a service account should be created
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.0.1
image: ghcr.io/stefanprodan/podinfo:5.0.2
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.0.1
image: ghcr.io/stefanprodan/podinfo:5.0.2
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.0.1
image: ghcr.io/stefanprodan/podinfo:5.0.2
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.0.1
image: ghcr.io/stefanprodan/podinfo:5.0.2
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.0.1
image: ghcr.io/stefanprodan/podinfo:5.0.2
imagePullPolicy: IfNotPresent
ports:
- name: http
Expand Down
4 changes: 2 additions & 2 deletions kustomize/kustomization.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- hpa.yaml
- deployment.yaml
- service.yaml

commonLabels:
app: podinfo
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.0.1"
var VERSION = "5.0.2"
var REVISION = "unknown"

0 comments on commit 6596ed0

Please sign in to comment.