Skip to content

Commit 416086f

Browse files
committed
feat: recording deployed component status in package deploy
Signed-off-by: Steven Gettys <[email protected]>
1 parent b57a85b commit 416086f

File tree

2 files changed

+15
-4
lines changed

2 files changed

+15
-4
lines changed

src/pkg/packager/deploy.go

+10-2
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,7 @@ func (p *Packager) deployComponents(ctx context.Context) ([]types.DeployedCompon
151151

152152
// Process all the components we are deploying
153153
for _, component := range p.cfg.Pkg.Components {
154+
packageGeneration := 1
154155
// Connect to cluster if a component requires it.
155156
if component.RequiresCluster() {
156157
timeout := cluster.DefaultTimeout
@@ -162,10 +163,16 @@ func (p *Packager) deployComponents(ctx context.Context) ([]types.DeployedCompon
162163
if err := p.connectToCluster(connectCtx); err != nil {
163164
return nil, fmt.Errorf("unable to connect to the Kubernetes cluster: %w", err)
164165
}
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+
}
165170
}
166171

167172
deployedComponent := types.DeployedComponent{
168-
Name: component.Name,
173+
Name: component.Name,
174+
Status: types.ComponentStatusDeploying,
175+
ObservedGeneration: packageGeneration,
169176
}
170177

171178
// 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
201208

202209
if deployErr != nil {
203210
onFailure()
204-
211+
deployedComponents[idx].Status = types.ComponentStatusFailed
205212
if p.isConnectedToCluster() {
206213
if _, err := p.cluster.RecordPackageDeployment(ctx, p.cfg.Pkg, deployedComponents); err != nil {
207214
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
213220

214221
// Update the package secret to indicate that we successfully deployed this component
215222
deployedComponents[idx].InstalledCharts = charts
223+
deployedComponents[idx].Status = types.ComponentStatusSucceeded
216224
if p.isConnectedToCluster() {
217225
if _, err := p.cluster.RecordPackageDeployment(ctx, p.cfg.Pkg, deployedComponents); err != nil {
218226
message.Debugf("Unable to record package deployment for component %q: this will affect features like `zarf package remove`: %s", component.Name, err.Error())

src/types/k8s.go

+5-2
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ type DeployedPackage struct {
7272
Name string `json:"name"`
7373
Data v1alpha1.ZarfPackage `json:"data"`
7474
CLIVersion string `json:"cliVersion"`
75+
Generation int `json:"generation"`
7576
DeployedComponents []DeployedComponent `json:"deployedComponents"`
7677
ConnectStrings ConnectStrings `json:"connectStrings,omitempty"`
7778
}
@@ -89,8 +90,10 @@ type ConnectStrings map[string]ConnectString
8990

9091
// DeployedComponent contains information about a Zarf Package Component that has been deployed to a cluster.
9192
type DeployedComponent struct {
92-
Name string `json:"name"`
93-
InstalledCharts []InstalledChart `json:"installedCharts"`
93+
Name string `json:"name"`
94+
InstalledCharts []InstalledChart `json:"installedCharts"`
95+
Status ComponentStatus `json:"status"`
96+
ObservedGeneration int `json:"observedGeneration"`
9497
}
9598

9699
// InstalledChart contains information about a Helm Chart that has been deployed to a cluster.

0 commit comments

Comments
 (0)