Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion api/v1beta2/appwrapper_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,11 @@ type AppWrapperStatus struct {
// - DeletingResources: The contained resources are in the process of being deleted from the cluster
//
//+optional
Conditions []metav1.Condition `json:"conditions,omitempty"`
//+patchMergeKey=type
//+patchStrategy=merge
//+listType=map
//+listMapKey=type
Conditions []metav1.Condition `json:"conditions,omitempty" patchStrategy:"merge" patchMergeKey:"type"`
}

// AppWrapperPhase is the phase of the appwrapper
Expand Down
3 changes: 3 additions & 0 deletions config/crd/bases/workload.codeflare.dev_appwrappers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,9 @@ spec:
- type
type: object
type: array
x-kubernetes-list-map-keys:
- type
x-kubernetes-list-type: map
phase:
description: Phase of the AppWrapper object
type: string
Expand Down