12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- {
- "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"
- }
- }
- ]
- }
|