Skip to content

Commit b39b0ed

Browse files
author
OpenShift Bot
authored
Merge pull request #11317 from mfojtik/auto-pruner
Merged by openshift-bot
2 parents 7c91f63 + 6fdfb0b commit b39b0ed

File tree

2 files changed

+54
-0
lines changed

2 files changed

+54
-0
lines changed

examples/pruner/README.md

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# Pruning images using CronJob
2+
3+
This example shows an image pruning happening in an automated fashion using the Kubernetes [CronJobs](https://docs.openshift.org/latest/dev_guide/cron_jobs.html) that
4+
are available in OpenShift Origin starting from version 3.5.
5+
In this example, we will create a CronJob that will run image pruning every 1 hour.
6+
7+
## Requirements
8+
9+
In order to execute the pruning commands successfully, it is necessary to configure the
10+
authorization in a way that allows the `default` service account to perform the pruning
11+
against entire cluster (assuming you create the CronJob in the `default` project):
12+
13+
1. `oc adm policy add-cluster-role-to-user system:image-pruner system:serviceaccount:default:default --config=admin.kubeconfig`
14+
15+
This command will grant the "image-pruner" role to service account in the `default`
16+
namespace. That will allow the service account to list all images in the cluster and
17+
perform the image pruning.
18+
19+
## Creating the CronJob
20+
21+
2. `oc create -f examples/pruner/job.yaml -n default --config=admin.kubeconfig`
22+
23+
This command creates the CronJob resource that runs the pruning job every 1 hour.
24+
25+
Make sure, that you check the `oc adm prune --help` command and optionally tweak the
26+
CronJob arguments by specifying how much tag revisions you want to preserve on a single
27+
tag or other options that might suit your environment.
28+
29+
## Cleaning up old jobs
30+
31+
To cleanup finished jobs, you can run this command:
32+
33+
`oc delete jobs -l job=prune-images`
34+
35+
Note that starting from Origin version 3.6, you will be able to specify `successfulJobsHistoryLimit` and `failedJobsHistoryLimit`
36+
options for the CronJob, so the cleanup command above won't be needed.

examples/pruner/job.yaml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
apiVersion: batch/v2alpha1
2+
kind: CronJob
3+
metadata:
4+
name: prune-images
5+
spec:
6+
schedule: 0 */1 * * ?
7+
jobTemplate:
8+
metadata:
9+
labels:
10+
job: prune-images
11+
spec:
12+
template:
13+
spec:
14+
containers:
15+
- name: prune-images
16+
image: openshift/origin:latest
17+
args: [ "admin", "prune", "images", "--confirm"]
18+
restartPolicy: OnFailure

0 commit comments

Comments
 (0)