Skip to content

Commit

Permalink
MANOPD-74982 Paas check failed (#136)
Browse files Browse the repository at this point in the history
* fix default boolean

* fixed another boolean False

Co-authored-by: Sergey Kryazhe <[email protected]>
  • Loading branch information
koryaga and koryaga authored Apr 4, 2022
1 parent 14f9c98 commit 4290d8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kubemarine/procedures/check_paas.py
Original file line number Diff line number Diff line change
Expand Up @@ -826,7 +826,7 @@ def check_extra_volumes(cluster, static_pod):
for volumeMount in volume_mounts:
if volumeMount['mountPath'] == original_volume['mountPath'] and \
volumeMount['name'] == original_volume['name'] and \
volumeMount.get('readOnly', '') == original_volume.get('readOnly', ''):
volumeMount.get('readOnly', False ) == original_volume.get('readOnly', False):
correct_volume = True
break
if not correct_volume:
Expand Down

0 comments on commit 4290d8c

Please sign in to comment.