(obj crclient.Object)
| 178 | } |
| 179 | |
| 180 | func isMutableObject(obj crclient.Object) bool { |
| 181 | switch obj.(type) { |
| 182 | case *corev1.PersistentVolumeClaim: |
| 183 | return false |
| 184 | default: |
| 185 | return true |
| 186 | } |
| 187 | } |
| 188 | |
| 189 | func printDiff(specObj, clusterObj crclient.Object, log logr.Logger) { |
| 190 | if config.IsSetUp() && config.ExperimentalFeaturesEnabled() { |
no outgoing calls
no test coverage detected