Skip to content

Commit e778f94

Browse files
committed
Runs go.mod
1 parent bf79716 commit e778f94

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

pkg/patterns/addon/pkg/status/aggregate.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ func (a *aggregator) Reconciled(ctx context.Context, src declarative.Declarative
5555
gk := o.Group + "/" + o.Kind
5656
healthy := true
5757
objKey := client.ObjectKey{
58-
Name: o.Name,
58+
Name: o.Name,
5959
Namespace: o.Namespace,
6060
}
6161
// If the namespace isn't set on the object, we would want to use the namespace of src

pkg/patterns/declarative/pkg/manifest/objects.go

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ type Objects struct {
3939
type Object struct {
4040
object *unstructured.Unstructured
4141

42-
Group string
43-
Kind string
44-
Name string
42+
Group string
43+
Kind string
44+
Name string
4545
Namespace string
4646

4747
json []byte
@@ -59,12 +59,12 @@ func ParseJSONToObject(json []byte) (*Object, error) {
5959
}
6060

6161
return &Object{
62-
object: u,
63-
Group: gvk.Group,
64-
Kind: gvk.Kind,
65-
Name: u.GetName(),
62+
object: u,
63+
Group: gvk.Group,
64+
Kind: gvk.Kind,
65+
Name: u.GetName(),
6666
Namespace: u.GetNamespace(),
67-
json: json,
67+
json: json,
6868
}, nil
6969
}
7070

0 commit comments

Comments
 (0)