Skip to content

Commit

Permalink
feat(config/job): Add image setter
Browse files Browse the repository at this point in the history
We must be able to update image name

Signed-off-by: Denys Fedoryshchenko <[email protected]>
  • Loading branch information
nuclearcat committed Oct 15, 2024
1 parent 1e57458 commit cfb7aa8
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions kernelci/config/job.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,11 @@ def image(self):
"""Runtime environment image name"""
return self._image

@image.setter
def image(self, value):
"""Set the runtime environment image name"""
self._image = value

@property
def params(self):
"""Arbitrary parameters passed to the template"""
Expand Down

0 comments on commit cfb7aa8

Please sign in to comment.