|
8 | 8 | "fmt"
|
9 | 9 | "time"
|
10 | 10 |
|
| 11 | + apierrors "k8s.io/apimachinery/pkg/api/errors" |
11 | 12 | "k8s.io/apimachinery/pkg/api/meta"
|
12 | 13 | metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
13 | 14 | "k8s.io/apimachinery/pkg/util/sets"
|
@@ -48,23 +49,24 @@ type Applier struct {
|
48 | 49 | openAPIGetter discovery.OpenAPISchemaInterface
|
49 | 50 | mapper meta.RESTMapper
|
50 | 51 | infoHelper info.Helper
|
| 52 | + statusPolicy inventory.StatusPolicy |
51 | 53 | }
|
52 | 54 |
|
53 | 55 | // prepareObjects returns the set of objects to apply and to prune or
|
54 | 56 | // an error if one occurred.
|
55 |
| -func (a *Applier) prepareObjects(ctx context.Context, localInv inventory.Info, localObjs object.UnstructuredSet, |
| 57 | +func (a *Applier) prepareObjects(ctx context.Context, clusterInv inventory.Inventory, localObjs object.UnstructuredSet, |
56 | 58 | o ApplierOptions) (object.UnstructuredSet, object.UnstructuredSet, error) {
|
57 |
| - if localInv == nil { |
| 59 | + if clusterInv == nil { |
58 | 60 | return nil, nil, fmt.Errorf("the local inventory can't be nil")
|
59 | 61 | }
|
60 | 62 | if err := inventory.ValidateNoInventory(localObjs); err != nil {
|
61 | 63 | return nil, nil, err
|
62 | 64 | }
|
63 | 65 | // Add the inventory annotation to the resources being applied.
|
64 | 66 | for _, localObj := range localObjs {
|
65 |
| - inventory.AddInventoryIDAnnotation(localObj, localInv) |
| 67 | + inventory.AddInventoryIDAnnotation(localObj, clusterInv.ID()) |
66 | 68 | }
|
67 |
| - pruneObjs, err := a.pruner.GetPruneObjs(ctx, localInv, localObjs, prune.Options{ |
| 69 | + pruneObjs, err := a.pruner.GetPruneObjs(ctx, clusterInv, localObjs, prune.Options{ |
68 | 70 | DryRunStrategy: o.DryRunStrategy,
|
69 | 71 | })
|
70 | 72 | if err != nil {
|
@@ -96,8 +98,20 @@ func (a *Applier) Run(ctx context.Context, invInfo inventory.Info, objects objec
|
96 | 98 | }
|
97 | 99 | validator.Validate(objects)
|
98 | 100 |
|
| 101 | + clusterInventory, err := a.invClient.Get(ctx, invInfo, inventory.GetOptions{}) |
| 102 | + if apierrors.IsNotFound(err) { |
| 103 | + clusterInventory = invInfo.InitialInventory() |
| 104 | + } else if err != nil { |
| 105 | + handleError(eventChannel, err) |
| 106 | + return |
| 107 | + } |
| 108 | + if clusterInventory.ID() != invInfo.ID() { |
| 109 | + handleError(eventChannel, fmt.Errorf("inventory-id of inventory object %s/%s in cluster doesn't match provided id %q", |
| 110 | + invInfo.Namespace(), invInfo.Name(), invInfo.ID())) |
| 111 | + } |
| 112 | + |
99 | 113 | // Decide which objects to apply and which to prune
|
100 |
| - applyObjs, pruneObjs, err := a.prepareObjects(ctx, invInfo, objects, options) |
| 114 | + applyObjs, pruneObjs, err := a.prepareObjects(ctx, clusterInventory, objects, options) |
101 | 115 | if err != nil {
|
102 | 116 | handleError(eventChannel, err)
|
103 | 117 | return
|
@@ -154,11 +168,13 @@ func (a *Applier) Run(ctx context.Context, invInfo inventory.Info, objects objec
|
154 | 168 | OpenAPIGetter: a.openAPIGetter,
|
155 | 169 | InfoHelper: a.infoHelper,
|
156 | 170 | Mapper: a.mapper,
|
| 171 | + Inventory: clusterInventory, |
157 | 172 | InvClient: a.invClient,
|
158 | 173 | Collector: vCollector,
|
159 | 174 | ApplyFilters: applyFilters,
|
160 | 175 | ApplyMutators: applyMutators,
|
161 | 176 | PruneFilters: pruneFilters,
|
| 177 | + StatusPolicy: a.statusPolicy, |
162 | 178 | }
|
163 | 179 | opts := solver.Options{
|
164 | 180 | ServerSideOptions: options.ServerSideOptions,
|
|
0 commit comments