InheritanceController controls if a label or an annotation should be inherited
| 411 | // InheritanceController controls if a label or an annotation should be |
| 412 | // inherited |
| 413 | type InheritanceController interface { |
| 414 | // IsAnnotationInherited checks if a certain annotation should be |
| 415 | // inherited |
| 416 | IsAnnotationInherited(name string) bool |
| 417 | |
| 418 | // IsLabelInherited checks if a certain label should be |
| 419 | // inherited |
| 420 | IsLabelInherited(name string) bool |
| 421 | } |
| 422 | |
| 423 | // InheritAnnotations puts into the object metadata the passed annotations if |
| 424 | // the annotations are supposed to be inherited. The passed configuration is |
no outgoing calls
no test coverage detected