Skip to content

Commit

Permalink
Update check message for #5432
Browse files Browse the repository at this point in the history
Signed-off-by: LucasBoisserie <[email protected]>
  • Loading branch information
LucasBoisserie committed Jun 2, 2021
1 parent e902ecb commit d8882ed
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion docs/operator-manual/health.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@ data:
if obj.status ~= nil then
if obj.status.health ~= nil then
hs.status = obj.status.health.status
hs.message = obj.status.health.message
if obj.status.health.message ~= nil then
hs.message = obj.status.health.message
end
end
end
return hs
Expand Down
4 changes: 3 additions & 1 deletion docs/operator-manual/upgrading/1.7-1.8.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ data:
if obj.status ~= nil then
if obj.status.health ~= nil then
hs.status = obj.status.health.status
hs.message = obj.status.health.message
if obj.status.health.message ~= nil then
hs.message = obj.status.health.message
end
end
end
return hs
Expand Down

0 comments on commit d8882ed

Please sign in to comment.