@@ -151,6 +151,7 @@ func (p *Packager) deployComponents(ctx context.Context) ([]types.DeployedCompon
151
151
152
152
// Process all the components we are deploying
153
153
for _ , component := range p .cfg .Pkg .Components {
154
+ packageGeneration := 1
154
155
// Connect to cluster if a component requires it.
155
156
if component .RequiresCluster () {
156
157
timeout := cluster .DefaultTimeout
@@ -162,10 +163,16 @@ func (p *Packager) deployComponents(ctx context.Context) ([]types.DeployedCompon
162
163
if err := p .connectToCluster (connectCtx ); err != nil {
163
164
return nil , fmt .Errorf ("unable to connect to the Kubernetes cluster: %w" , err )
164
165
}
166
+ // If this package has been deployed before, increment the package generation within the secret
167
+ if existingDeployedPackage , _ := p .cluster .GetDeployedPackage (ctx , p .cfg .Pkg .Metadata .Name ); existingDeployedPackage != nil {
168
+ packageGeneration = existingDeployedPackage .Generation + 1
169
+ }
165
170
}
166
171
167
172
deployedComponent := types.DeployedComponent {
168
- Name : component .Name ,
173
+ Name : component .Name ,
174
+ Status : types .ComponentStatusDeploying ,
175
+ ObservedGeneration : packageGeneration ,
169
176
}
170
177
171
178
// Ensure we don't overwrite any installedCharts data when updating the package secret
@@ -201,7 +208,7 @@ func (p *Packager) deployComponents(ctx context.Context) ([]types.DeployedCompon
201
208
202
209
if deployErr != nil {
203
210
onFailure ()
204
-
211
+ deployedComponents [ idx ]. Status = types . ComponentStatusFailed
205
212
if p .isConnectedToCluster () {
206
213
if _ , err := p .cluster .RecordPackageDeployment (ctx , p .cfg .Pkg , deployedComponents ); err != nil {
207
214
message .Debugf ("Unable to record package deployment for component %q: this will affect features like `zarf package remove`: %s" , component .Name , err .Error ())
@@ -213,6 +220,7 @@ func (p *Packager) deployComponents(ctx context.Context) ([]types.DeployedCompon
213
220
214
221
// Update the package secret to indicate that we successfully deployed this component
215
222
deployedComponents [idx ].InstalledCharts = charts
223
+ deployedComponents [idx ].Status = types .ComponentStatusSucceeded
216
224
if p .isConnectedToCluster () {
217
225
if _ , err := p .cluster .RecordPackageDeployment (ctx , p .cfg .Pkg , deployedComponents ); err != nil {
218
226
message .Debugf ("Unable to record package deployment for component %q: this will affect features like `zarf package remove`: %s" , component .Name , err .Error ())
0 commit comments