(component *dw.Component)
| 35 | ) |
| 36 | |
| 37 | func NeedsContainerOverride(component *dw.Component) bool { |
| 38 | return component.Container != nil && component.Attributes.Exists(constants.ContainerOverridesAttribute) |
| 39 | } |
| 40 | |
| 41 | func ApplyContainerOverrides(component *dw.Component, container *corev1.Container, restrictedFields []string) (*corev1.Container, error) { |
| 42 | override := &corev1.Container{} |
no test coverage detected