From 028f6a0d054c3f65afb87598654bd6fea4ed7318 Mon Sep 17 00:00:00 2001 From: Michael Hanselmann Date: Thu, 22 Nov 2018 15:15:11 +0100 Subject: [PATCH] Prune images, not deployments in image prune job The command called by the image prune job was wrong as it called "oc adm prune deployments", not "oc adm prune images". --- CHANGELOG.md | 4 ++++ defaults/main.yml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 687bb0f..381f393 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.0.2] - 2018-11-22 +### Fix +- Actually prune images, not deployments in image pruner job + ## [2.0.1] - 2018-11-20 ### Changed - Allow pruner to clean up deployment pods diff --git a/defaults/main.yml b/defaults/main.yml index 3601856..c75793a 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -19,5 +19,5 @@ appuio_pruner_args: - --orphans - --confirm images: - - deployments + - images - --confirm