File tree 4 files changed +10
-4
lines changed
4 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -2,4 +2,4 @@ apiVersion: v1
2
2
appVersion : " 1.0"
3
3
description : GitOps Server Helm chart.
4
4
name : gitops
5
- version : 0.9.16
5
+ version : 0.9.17
Original file line number Diff line number Diff line change 5
5
from . import monkeypatches # NOQA
6
6
from .utils .cli import success , warning
7
7
8
- __version__ = "0.9.16 "
8
+ __version__ = "0.9.17 "
9
9
10
10
11
11
# Checking gitops version matches cluster repo version.
Original file line number Diff line number Diff line change @@ -84,7 +84,13 @@ def bump(
84
84
new_image_tag = get_latest_image (app .image_repository_name , new_image_prefix )
85
85
else :
86
86
new_image_tag = get_image (image_tag )
87
- if new_image_tag != prev_image_tag :
87
+
88
+ if not new_image_tag :
89
+ print (
90
+ f"Skipping { colourise (app_name , Fore .LIGHTRED_EX )} : no image matching"
91
+ f" { colour_image (new_image_tag )} "
92
+ )
93
+ elif new_image_tag != prev_image_tag :
88
94
print (
89
95
f"Bumping { colourise (app_name , Fore .LIGHTGREEN_EX )} : { colour_image (prev_image_tag )} "
90
96
f" -> { colour_image (new_image_tag )} "
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " gitops"
3
- version = " 0.9.16 "
3
+ version = " 0.9.17 "
4
4
description = " Manage multiple apps across one or more k8s clusters."
5
5
authors = [
" Jarek Głowacki <[email protected] >" ]
6
6
license = " BSD"
You can’t perform that action at this time.
0 commit comments