@@ -45,6 +45,7 @@ import (
45
45
46
46
var appwrapperJobLabelName = "appwrapper.mcad.ibm.com"
47
47
var resourceName = "resourceName"
48
+ var resourceNamespace = "resourceNamespace"
48
49
var appWrapperKind = arbv1 .SchemeGroupVersion .WithKind ("AppWrapper" )
49
50
50
51
type GenericResources struct {
@@ -163,7 +164,7 @@ func (gr *GenericResources) Cleanup(aw *arbv1.AppWrapper, awr *arbv1.AppWrapperG
163
164
}
164
165
165
166
// Get the resource to see if it exists
166
- labelSelector := fmt .Sprintf ("%s=%s, %s=%s" , appwrapperJobLabelName , aw .Name , resourceName , unstruct .GetNamespace () + "-" + unstruct .GetName ())
167
+ labelSelector := fmt .Sprintf ("%s=%s, %s=%s, %s/%s " , appwrapperJobLabelName , aw .Name , resourceName , unstruct .GetName (), resourceNamespace , unstruct .GetNamespace ())
167
168
inEtcd , err := dclient .Resource (rsrc ).List (context .Background (), metav1.ListOptions {LabelSelector : labelSelector })
168
169
if err != nil {
169
170
return name , gvk , err
@@ -172,8 +173,8 @@ func (gr *GenericResources) Cleanup(aw *arbv1.AppWrapper, awr *arbv1.AppWrapperG
172
173
// Check to see if object already exists in etcd, if not, create the object.
173
174
if inEtcd != nil || len (inEtcd .Items ) > 0 {
174
175
newName := name
175
- if len (newName + namespace ) > 63 {
176
- newName = newName [:len ( newName ) - ( len ( newName ) + len ( namespace ) - 63 ) ]
176
+ if len (newName ) > 63 {
177
+ newName = newName [:63 ]
177
178
}
178
179
179
180
err = deleteObject (namespaced , namespace , newName , rsrc , dclient )
@@ -292,7 +293,8 @@ func (gr *GenericResources) SyncQueueJob(aw *arbv1.AppWrapper, awr *arbv1.AppWra
292
293
labels = unstruct .GetLabels ()
293
294
}
294
295
labels [appwrapperJobLabelName ] = aw .Name
295
- labels [resourceName ] = unstruct .GetNamespace () + "-" + unstruct .GetName ()
296
+ labels [resourceName ] = unstruct .GetName ()
297
+ labels [resourceNamespace ] = unstruct .GetNamespace ()
296
298
unstruct .SetLabels (labels )
297
299
298
300
// Add labels to pod template if one exists.
@@ -302,7 +304,7 @@ func (gr *GenericResources) SyncQueueJob(aw *arbv1.AppWrapper, awr *arbv1.AppWra
302
304
}
303
305
304
306
// Get the resource to see if it exists
305
- labelSelector := fmt .Sprintf ("%s=%s, %s=%s" , appwrapperJobLabelName , aw .Name , resourceName , unstruct .GetNamespace () + "-" + unstruct .GetName ())
307
+ labelSelector := fmt .Sprintf ("%s=%s, %s=%s, %s=%s " , appwrapperJobLabelName , aw .Name , resourceName , unstruct .GetName (), resourceNamespace , unstruct .GetNamespace ())
306
308
inEtcd , err := dclient .Resource (rsrc ).List (context .Background (), metav1.ListOptions {LabelSelector : labelSelector })
307
309
if err != nil {
308
310
return []* v1.Pod {}, err
@@ -311,8 +313,8 @@ func (gr *GenericResources) SyncQueueJob(aw *arbv1.AppWrapper, awr *arbv1.AppWra
311
313
// Check to see if object already exists in etcd, if not, create the object.
312
314
if inEtcd == nil || len (inEtcd .Items ) < 1 {
313
315
newName := name
314
- if len (newName + namespace ) > 63 {
315
- newName = newName [:len ( newName ) - ( len ( newName ) + len ( namespace ) - 63 ) ]
316
+ if len (newName ) > 63 {
317
+ newName = newName [:63 ]
316
318
}
317
319
unstruct .SetName (newName )
318
320
//Asumption object is always namespaced
0 commit comments