Skip to content

Commit 66b8948

Browse files
committed
Bump version to 1.4.3
1 parent db04ce1 commit 66b8948

File tree

2 files changed

+14
-7
lines changed

2 files changed

+14
-7
lines changed

deploy/auto-scaling/podinfo-dep.yaml

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,28 @@
11
---
2-
apiVersion: apps/v1beta1
2+
apiVersion: apps/v1
33
kind: Deployment
44
metadata:
55
name: podinfo
66
spec:
7-
replicas: 1
7+
minReadySeconds: 5
8+
progressDeadlineSeconds: 60
9+
strategy:
10+
rollingUpdate:
11+
maxUnavailable: 0
12+
type: RollingUpdate
13+
selector:
14+
matchLabels:
15+
app: podinfo
816
template:
917
metadata:
18+
annotations:
19+
prometheus.io/scrape: "true"
1020
labels:
1121
app: podinfo
12-
#role: openfaas-system
13-
annotations:
14-
prometheus.io/scrape: 'true'
1522
spec:
1623
containers:
1724
- name: podinfod
18-
image: quay.io/stefanprodan/podinfo:1.0.1
25+
image: quay.io/stefanprodan/podinfo:1.4.3
1926
command:
2027
- ./podinfo
2128
- --port=9898

pkg/version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
package version
22

3-
var VERSION = "1.4.2"
3+
var VERSION = "1.4.3"
44
var REVISION = "unknown"

0 commit comments

Comments
 (0)