Skip to content

Commit

Permalink
πŸ› Fix reading of instance image ID (ImageID in favor of Image) (#1213)
Browse files Browse the repository at this point in the history
  • Loading branch information
andersjohnsen authored Sep 12, 2024
1 parent 487f4ba commit 50d800d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/capsulesteps/deployment/watcher.go
Original file line number Diff line number Diff line change
Expand Up @@ -259,8 +259,8 @@ func makeImagePullingCondition(container containerInfo) {
}
}

container.platformStatus.Image = container.status.Image
container.subObj.Properties["Image"] = container.status.Image
container.platformStatus.Image = container.status.ImageID
container.subObj.Properties["Image"] = container.status.ImageID
container.subObj.Conditions = append(container.subObj.Conditions, cond)
}

Expand Down

0 comments on commit 50d800d

Please sign in to comment.