|
@@ -0,0 +1,55 @@
|
|
|
+{
|
|
|
+ "rules": [
|
|
|
+ {
|
|
|
+ "rulePriority": 1,
|
|
|
+ "description": "Expire images that aren't tagged",
|
|
|
+ "selection": {
|
|
|
+ "tagStatus": "untagged",
|
|
|
+ "countType": "imageCountMoreThan",
|
|
|
+ "countNumber": 1
|
|
|
+ },
|
|
|
+ "action": {
|
|
|
+ "type": "expire"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "rulePriority": 2,
|
|
|
+ "description": "Keep last 3 images of branch images",
|
|
|
+ "selection": {
|
|
|
+ "tagStatus": "tagged",
|
|
|
+ "tagPrefixList": ["branch-"],
|
|
|
+ "countType": "imageCountMoreThan",
|
|
|
+ "countNumber": 3
|
|
|
+ },
|
|
|
+ "action": {
|
|
|
+ "type": "expire"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "rulePriority": 3,
|
|
|
+ "description": "Keep last 3 images of commit images",
|
|
|
+ "selection": {
|
|
|
+ "tagStatus": "tagged",
|
|
|
+ "tagPrefixList": ["commit-"],
|
|
|
+ "countType": "imageCountMoreThan",
|
|
|
+ "countNumber": 3
|
|
|
+ },
|
|
|
+ "action": {
|
|
|
+ "type": "expire"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "rulePriority": 4,
|
|
|
+ "description": "Remove any images older than 42 days",
|
|
|
+ "selection": {
|
|
|
+ "tagStatus": "any",
|
|
|
+ "countType": "sinceImagePushed",
|
|
|
+ "countUnit": "days",
|
|
|
+ "countNumber": 42
|
|
|
+ },
|
|
|
+ "action": {
|
|
|
+ "type": "expire"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+}
|