-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add server-side apply merge strategy markers
This commit adds SSA merge strategy markers that allow the API server to granularly merge lists, rather than atomically replacing them. Composition functions use SSA, so this change means that a function can return only the list elements it desires (e.g. tags) and those elements will be merged into any existing elements, without replacing them. For the moment I've only covered two cases: * Lists that we know are sets of scalar values (generated from Terraform sets) * Maps of scalar values (generated from Terraform maps) I'm hopeful that in both of these cases it _should_ be possible to allow the map or set to be granularly merged, not atomically replaced. https://kubernetes.io/docs/reference/using-api/server-side-apply/#merge-strategy Signed-off-by: Nic Cope <[email protected]>
- Loading branch information
Showing
4 changed files
with
169 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
// SPDX-FileCopyrightText: 2023 The Crossplane Authors <https://crossplane.io> | ||
// | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
package markers | ||
|
||
import "fmt" | ||
|
||
// A ListType is a type of list. | ||
type ListType string | ||
|
||
// Types of lists. | ||
const ( | ||
// ListTypeAtomic means the entire list is replaced during merge. At any | ||
// point in time, a single manager owns the list. | ||
ListTypeAtomic ListType = "atomic" | ||
|
||
// ListTypeSet can be granularly merged, and different managers can own | ||
// different elements in the list. The list can include only scalar | ||
// elements. | ||
ListTypeSet ListType = "set" | ||
|
||
// ListTypeSet can be granularly merged, and different managers can own | ||
// different elements in the list. The list can include only nested types | ||
// (i.e. objects). | ||
ListTypeMap ListType = "map" | ||
) | ||
|
||
// A MapType is a type of map. | ||
type MapType string | ||
|
||
// Types of maps. | ||
const ( | ||
// MapTypeAtomic means that the map can only be entirely replaced by a | ||
// single manager. | ||
MapTypeAtomic MapType = "atomic" | ||
|
||
// MapTypeGranular means that the map supports separate managers updating | ||
// individual fields. | ||
MapTypeGranular MapType = "granular" | ||
) | ||
|
||
// A StructType is a type of struct. | ||
type StructType string | ||
|
||
// Struct types. | ||
const ( | ||
// StructTypeAtomic means that the struct can only be entirely replaced by a | ||
// single manager. | ||
StructTypeAtomic StructType = "atomic" | ||
|
||
// StructTypeGranular means that the struct supports separate managers | ||
// updating individual fields. | ||
StructTypeGranular StructType = "granular" | ||
) | ||
|
||
// ServerSideApplyOptions represents the server-side apply merge options that | ||
// upjet needs to control. | ||
// https://kubernetes.io/docs/reference/using-api/server-side-apply/#merge-strategy | ||
type ServerSideApplyOptions struct { | ||
ListType *ListType | ||
ListMapKey []string | ||
MapType *MapType | ||
StructType *StructType | ||
} | ||
|
||
func (o ServerSideApplyOptions) String() string { | ||
m := "" | ||
|
||
if o.ListType != nil { | ||
m += fmt.Sprintf("+listType:%s\n", *o.ListType) | ||
} | ||
|
||
for _, k := range o.ListMapKey { | ||
m += fmt.Sprintf("+listMapKey:%s\n", k) | ||
} | ||
|
||
if o.MapType != nil { | ||
m += fmt.Sprintf("+mapType:%s\n", *o.MapType) | ||
} | ||
|
||
if o.StructType != nil { | ||
m += fmt.Sprintf("+structType:%s\n", *o.StructType) | ||
} | ||
|
||
return m | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
// SPDX-FileCopyrightText: 2023 The Crossplane Authors <https://crossplane.io> | ||
// | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
package markers | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/google/go-cmp/cmp" | ||
"k8s.io/utils/ptr" | ||
) | ||
|
||
func TestServerSideApplyOptions(t *testing.T) { | ||
cases := map[string]struct { | ||
o ServerSideApplyOptions | ||
want string | ||
}{ | ||
"MapType": { | ||
o: ServerSideApplyOptions{ | ||
MapType: ptr.To[MapType](MapTypeAtomic), | ||
}, | ||
want: "+mapType:atomic\n", | ||
}, | ||
"StructType": { | ||
o: ServerSideApplyOptions{ | ||
StructType: ptr.To[StructType](StructTypeAtomic), | ||
}, | ||
want: "+structType:atomic\n", | ||
}, | ||
"ListType": { | ||
o: ServerSideApplyOptions{ | ||
ListType: ptr.To[ListType](ListTypeMap), | ||
ListMapKey: []string{"name", "coolness"}, | ||
}, | ||
want: "+listType:map\n+listMapKey:name\n+listMapKey:coolness\n", | ||
}, | ||
} | ||
|
||
for name, tc := range cases { | ||
t.Run(name, func(t *testing.T) { | ||
got := tc.o.String() | ||
|
||
if diff := cmp.Diff(tc.want, got); diff != "" { | ||
t.Errorf("o.String(): -want, +got: %s", diff) | ||
} | ||
}) | ||
} | ||
} |