Skip to content
This repository was archived by the owner on Oct 3, 2020. It is now read-only.

Commit 06c8f77

Browse files
committed
v20.4.1
1 parent 2579774 commit 06c8f77

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ test: install lint
1818
poetry run coverage run --source=kube_janitor -m py.test -v
1919
poetry run coverage report
2020

21+
version:
22+
sed -i "s/version: v.*/version: v$(VERSION)/" deploy/*/*.yaml
23+
sed -i "s/kube-janitor:.*/kube-janitor:$(VERSION)/" deploy/*/*.yaml
24+
2125
docker:
2226
docker build --build-arg "VERSION=$(VERSION)" -t "$(IMAGE):$(TAG)" .
2327
@echo 'Docker image $(IMAGE):$(TAG) can now be used.'

deploy/cronjob/cronjob.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ spec:
1717
containers:
1818
- name: janitor
1919
# see https://github.com/hjacobs/kube-janitor/releases
20-
image: hjacobs/kube-janitor:20.4.0
20+
image: hjacobs/kube-janitor:20.4.1
2121
args:
2222
# dry run by default, remove to perform clean up
2323
- --dry-run

deploy/deployment/deployment.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ kind: Deployment
33
metadata:
44
labels:
55
application: kube-janitor
6-
version: v20.4.0
6+
version: v20.4.1
77
name: kube-janitor
88
spec:
99
replicas: 1
@@ -14,13 +14,13 @@ spec:
1414
metadata:
1515
labels:
1616
application: kube-janitor
17-
version: v20.4.0
17+
version: v20.4.1
1818
spec:
1919
serviceAccountName: kube-janitor
2020
containers:
2121
- name: janitor
2222
# see https://github.com/hjacobs/kube-janitor/releases
23-
image: hjacobs/kube-janitor:20.4.0
23+
image: hjacobs/kube-janitor:20.4.1
2424
args:
2525
# dry run by default, remove to perform clean up
2626
- --dry-run

0 commit comments

Comments
 (0)