You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/docs/platform-automation/pruning.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@ There are a few CronJobs set up on the OpenShift clusters to help prune old obje
32
32
33
33
## DeploymentConfigs
34
34
35
-
When a `DeploymentConfig` rolls out a new version, it creates a new `ReplicationController`. After some time, the number of these can pile up. So older ones are pruned daily.
35
+
When a `DeploymentConfig` rolls out a new version, it creates a new `ReplicationController`. Over time, the accumulation of these objects can happen. Therefore, older ones are routinely removed on a daily basis through pruning as well.
36
36
37
37
A few settings are passed to the pruner job:
38
38
@@ -43,7 +43,7 @@ A few settings are passed to the pruner job:
43
43
44
44
## Builds
45
45
46
-
When a `BuildConfig` runs a build a new `Build` object is created along with the pods that the build runs in. After some time, the number of these can pile up. So older ones are pruned daily.
46
+
When a `BuildConfig` runs a build a new `Build` object is created along with the pods that the build runs in. Over time, the accumulation of these objects can happen. Therefore, older ones are routinely removed on a daily basis through pruning as well.
47
47
48
48
A few settings are passed to the pruner job:
49
49
@@ -56,7 +56,7 @@ A few settings are passed to the pruner job:
56
56
57
57
### Daily Prune
58
58
59
-
As new images are built and pushed to tags, the older copies of that tag are retained. Each of these is called a revision and is tracked with a `sha256`. After some time, the number of these can pile up. So older ones are pruned daily.
59
+
As new images are built and pushed to tags, the older copies of that tag are retained. Each of these is called a revision and is tracked with a `sha256`. Over time, the accumulation of these objects can happen. Therefore, older ones are routinely removed on a daily basis through pruning as well.
60
60
61
61
A few settings are passed to the pruner job:
62
62
@@ -87,7 +87,7 @@ As the data removed by this isn't referenced by any ImageStream or Tag it should
87
87
88
88
## Pipelines
89
89
90
-
As you run Tekton Pipelines it will create `PipelineRun` and `TaskRun` objects. After some time, the number of these can pile up. So older ones are pruned daily.
90
+
As you run Tekton Pipelines it will create `PipelineRun` and `TaskRun` objects. Over time, the accumulation of these objects can happen. Therefore, older ones are routinely removed on a daily basis through pruning as well.
0 commit comments