Skip to content

Commit 9e97a88

Browse files
authored
fix: Do not add lsp annotation when set from file (#584)
Signed-off-by: Wendy Arango <[email protected]>
1 parent 539935d commit 9e97a88

10 files changed

+527
-10
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Copyright 2023 VMware, Inc.
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
15+
apiVersion: carto.run/v1alpha1
16+
kind: Workload
17+
metadata:
18+
name: my-workload
19+
namespace: default
20+
annotations:
21+
local-source-proxy.apps.tanzu.vmware.com: registry.io/project/source:default-service@sha256:123
22+
spec:
23+
resources:
24+
requests:
25+
memory: 1Gi
26+
cpu: 100m
27+
limits:
28+
memory: 1Gi
29+
cpu: 500m
30+
source:
31+
git:
32+
url: https://github.com/spring-projects/spring-petclinic.git
33+
ref:
34+
branch: main
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Copyright 2023 VMware, Inc.
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
15+
apiVersion: carto.run/v1alpha1
16+
kind: Workload
17+
metadata:
18+
name: tanzu-web-app
19+
labels:
20+
apps.tanzu.vmware.com/workload-type: web
21+
spec:
22+
resources:
23+
requests:
24+
memory: 1Gi
25+
cpu: 100m
26+
limits:
27+
memory: 1Gi
28+
cpu: 500m

pkg/commands/workload.go

+7-3
Original file line numberDiff line numberDiff line change
@@ -664,21 +664,25 @@ func (opts *WorkloadOptions) loadExcludedPaths(c *cli.Config, displayInfo bool)
664664
return exclude
665665
}
666666

667-
func (opts *WorkloadOptions) ManageLocalSourceProxyAnnotation(currentWorkload, workload *cartov1alpha1.Workload) {
667+
func (opts *WorkloadOptions) ManageLocalSourceProxyAnnotation(fileWorkload, currentWorkload, workload *cartov1alpha1.Workload) {
668668
workloadExists := currentWorkload != nil
669+
annotationExistsInFile := fileWorkload != nil && fileWorkload.IsAnnotationExists(apis.LocalSourceProxyAnnotationName)
670+
mergeAnnotationFromFile := workloadExists && currentWorkload.IsAnnotationExists(apis.LocalSourceProxyAnnotationName)
669671

670672
// merge annotation only when workload is being created or when source code was changed and there is a new digested,
671673
// do not add it when updating workload
672674
// 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) {
674676
workload.MergeAnnotations(apis.LocalSourceProxyAnnotationName, workload.Spec.Source.Image)
675677
}
676678

677679
// if workload is updated from LSP registry to custom or any other registry through source image,
678680
// 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
679682
// annotation has to be deleted and workload source image needs to be updated to digested based on opts source image
680683
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) {
682686
workload.RemoveAnnotations(apis.LocalSourceProxyAnnotationName)
683687
}
684688
}

pkg/commands/workload_apply.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ func (opts *WorkloadApplyOptions) Exec(ctx context.Context, c *cli.Config) error
163163
if err := opts.PublishLocalSource(ctx, c, currentWorkload, workload, shouldPrint); err != nil {
164164
return err
165165
}
166-
opts.ManageLocalSourceProxyAnnotation(currentWorkload, workload)
166+
opts.ManageLocalSourceProxyAnnotation(fileWorkload, currentWorkload, workload)
167167

168168
// if output flag was not set or it was not used with yes flag, then proceed to show
169169
// surveys and all other output

0 commit comments

Comments
 (0)