export function UnsetClusterSpecificDetails()

in src/utilities/manifestUpdateUtils.ts [55:76]


export function UnsetClusterSpecificDetails(resource: any) {
   if (!resource) {
      return
   }

   // Unset cluster specific details in the object
   if (!!resource) {
      const {metadata, status} = resource

      if (!!metadata) {
         resource.metadata = {
            annotations: metadata.annotations,
            labels: metadata.labels,
            name: metadata.name
         }
      }

      if (!!status) {
         resource.status = {}
      }
   }
}