Release v5.0.2

This commit is contained in:
stefanprodan
2020-10-06 09:21:57 +03:00
parent 36e5ceaee2
commit 4c0dfaef0e
12 changed files with 22 additions and 21 deletions

View File

@@ -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

View File

@@ -12,7 +12,7 @@ jobs:
matrix:
helm-version:
- 2.16.12
- 3.3.3
- 3.3.4
runs-on: ubuntu-latest
steps:
- name: Checkout

View File

@@ -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

View File

@@ -23,7 +23,7 @@ h2c:
image:
repository: ghcr.io/stefanprodan/podinfo
tag: 5.0.1
tag: 5.0.2
pullPolicy: IfNotPresent
service:
@@ -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)
@@ -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
@@ -85,9 +85,10 @@ ingress:
resources:
limits:
memory: 256Mi
requests:
cpu: 1m
memory: 16Mi
cpu: 100m
memory: 64Mi
nodeSelector: {}

View File

@@ -23,7 +23,7 @@ h2c:
image:
repository: ghcr.io/stefanprodan/podinfo
tag: 5.0.1
tag: 5.0.2
pullPolicy: IfNotPresent
service:
@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -1,7 +1,7 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- hpa.yaml
- deployment.yaml
- service.yaml
commonLabels:
app: podinfo

View File

@@ -1,4 +1,4 @@
package version
var VERSION = "5.0.1"
var VERSION = "5.0.2"
var REVISION = "unknown"