-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(feature): update auto pruning library
update the existing pruning library to implement the new library outlined in the following EP: https://github.com/operator-framework/enhancements/blob/master/enhancements/automatic-resource-pruning.md resolves #101
- Loading branch information
1 parent
d389ad4
commit 44c4ffd
Showing
13 changed files
with
1,055 additions
and
741 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
// Copyright 2021 The Operator-SDK Authors | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package prune | ||
|
||
import ( | ||
"sigs.k8s.io/controller-runtime/pkg/client" | ||
|
||
batchv1 "k8s.io/api/batch/v1" | ||
corev1 "k8s.io/api/core/v1" | ||
) | ||
|
||
// DefaultPodIsPrunable is a default IsPrunableFunc to be used specifically with Pod resources. | ||
// It marks a Pod resource as prunable if it's Status.Phase is "Succeeded" | ||
// This can be overridden by registering your own IsPrunableFunc via the RegisterIsPrunableFunc method | ||
func DefaultPodIsPrunable(obj client.Object) error { | ||
pod := obj.(*corev1.Pod) | ||
if pod.Status.Phase != corev1.PodSucceeded { | ||
return &Unprunable{ | ||
Obj: &obj, | ||
Reason: "Pod has not succeeded", | ||
} | ||
} | ||
|
||
return nil | ||
} | ||
|
||
// DefaultJobIsPrunable is a default IsPrunableFunc to be used specifically with Job resources. | ||
// It marks a Job resource as prunable if it's Status.CompletionTime value is not `nil`, indicating that the Job has completed | ||
// This can be overridden by registering your own IsPrunableFunc via the RegisterIsPrunableFunc method | ||
func DefaultJobIsPrunable(obj client.Object) error { | ||
job := obj.(*batchv1.Job) | ||
if job.Status.CompletionTime == nil { | ||
return &Unprunable{ | ||
Obj: &obj, | ||
Reason: "Job has not completed", | ||
} | ||
} | ||
|
||
return nil | ||
} |
Oops, something went wrong.