kubernetes/pkg/controller/job
Patrick Ohly 8a908e0c0b remove import doc comments
The "// import <path>" comment has been superseded by Go modules.
We don't have to remove them, but doing so has some advantages:

- They are used inconsistently, which is confusing.
- We can then also remove the (currently broken) hack/update-vanity-imports.sh.
- Last but not least, it would be a first step towards avoiding the k8s.io domain.

This commit was generated with
   sed -i -e 's;^package \(.*\) // import.*;package \1;' $(git grep -l '^package.*// import' | grep -v 'vendor/')

Everything was included, except for
   package labels // import k8s.io/kubernetes/pkg/util/labels
because that package is marked as "read-only".
2024-12-02 16:59:34 +01:00
..
config remove import doc comments 2024-12-02 16:59:34 +01:00
metrics Job: Extend the jobs_finished_total metric reason label with SuccessPolicy and CompletionsReached 2024-07-23 09:29:02 +09:00
util Add util pkg to commonize job util functions 2024-05-07 09:27:46 +00:00
backoff_utils.go Job: Consistentely use the same reveiver name in the controller 2024-10-29 14:11:10 +09:00
backoff_utils_test.go check sidecar featuregate in getFinishedTime 2024-06-06 15:46:41 +08:00
doc.go remove import doc comments 2024-12-02 16:59:34 +01:00
indexed_job_utils.go cleanup after JobPodFailurePolicy is promoted to GA 2024-07-18 10:00:56 +08:00
indexed_job_utils_test.go Job: Refactor uncountedTerminatedPods to avoid casting everywhere 2024-10-29 13:12:35 +09:00
job_controller.go Job: Add evaluation step comments in the syncJob 2024-11-07 23:36:44 +09:00
job_controller_test.go Promote PodIndexLabel for Statefulset and IndexedJob stable (#128387) 2024-11-04 19:11:28 +00:00
OWNERS Self nominate tenzen-y as a reviewer for the Job controller 2024-10-30 01:14:47 +09:00
pod_failure_policy.go Job controller implementation of backoff limit per index (#118009) 2023-07-18 13:44:11 -07:00
pod_failure_policy_test.go Job Pod Failure policy - cover testing of negative exit codes 2024-10-28 07:24:26 +01:00
success_policy.go Delay setting terminal Job conditions until all pods are terminal 2024-07-11 20:54:09 +02:00
success_policy_test.go Job: Fix a bug that the SuccessCriteriaMet condition is added to the Job with successPolicy even if the JobSuccessPolicy featureGate is disabled 2024-06-12 00:36:36 +09:00
tracking_utils.go Job: Refactor uncountedTerminatedPods to avoid casting everywhere 2024-10-29 13:12:35 +09:00
tracking_utils_test.go Job: Refactor uncountedTerminatedPods to avoid casting everywhere 2024-10-29 13:12:35 +09:00