@@ -664,21 +664,25 @@ func (opts *WorkloadOptions) loadExcludedPaths(c *cli.Config, displayInfo bool)
664
664
return exclude
665
665
}
666
666
667
- func (opts * WorkloadOptions ) ManageLocalSourceProxyAnnotation (currentWorkload , workload * cartov1alpha1.Workload ) {
667
+ func (opts * WorkloadOptions ) ManageLocalSourceProxyAnnotation (fileWorkload , currentWorkload , workload * cartov1alpha1.Workload ) {
668
668
workloadExists := currentWorkload != nil
669
+ annotationExistsInFile := fileWorkload != nil && fileWorkload .IsAnnotationExists (apis .LocalSourceProxyAnnotationName )
670
+ mergeAnnotationFromFile := workloadExists && currentWorkload .IsAnnotationExists (apis .LocalSourceProxyAnnotationName )
669
671
670
672
// merge annotation only when workload is being created or when source code was changed and there is a new digested,
671
673
// do not add it when updating workload
672
674
// since user could be updating another field and annotation must not be added
673
- if opts .isLocalSource (currentWorkload ) {
675
+ if opts .isLocalSource (currentWorkload ) || ( annotationExistsInFile && mergeAnnotationFromFile && workload . Spec . Source != nil ) {
674
676
workload .MergeAnnotations (apis .LocalSourceProxyAnnotationName , workload .Spec .Source .Image )
675
677
}
676
678
677
679
// if workload is updated from LSP registry to custom or any other registry through source image,
678
680
// or it is moved from LSP to any other source (git, maven, image)
681
+ // or an annotation comes in a workload file definition and it is not an lsp workload
679
682
// annotation has to be deleted and workload source image needs to be updated to digested based on opts source image
680
683
if (opts .SourceImage != "" && workloadExists ) ||
681
- (workloadExists && ((workload .Spec .Source != nil && workload .Spec .Source .Image == "" ) || workload .Spec .Source == nil )) {
684
+ (workloadExists && ((workload .Spec .Source != nil && workload .Spec .Source .Image == "" ) || workload .Spec .Source == nil )) ||
685
+ (annotationExistsInFile && ! mergeAnnotationFromFile ) {
682
686
workload .RemoveAnnotations (apis .LocalSourceProxyAnnotationName )
683
687
}
684
688
}
0 commit comments