Skip to content

Commit

Permalink
feat: Added Google PubSub Topic and Subscription health checks (#10229)
Browse files Browse the repository at this point in the history
* feat: Added Google PubSub Topic and Subscription to health checks

Signed-off-by: Patrick Kerwood <patrick@kerwood.dk>

* Fixed apiVersion in test files

Signed-off-by: Patrick Kerwood <patrick@kerwood.dk>
  • Loading branch information
Kerwood committed Aug 8, 2022
1 parent 97471f4 commit c317d48
Show file tree
Hide file tree
Showing 14 changed files with 210 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
hs = {
status = "Progressing",
message = "Update in progress"
}
if obj.status ~= nil then
if obj.status.conditions ~= nil then
for i, condition in ipairs(obj.status.conditions) do

-- Up To Date
if condition.reason == "UpToDate" and condition.status == "True" then
hs.status = "Healthy"
hs.message = condition.message
return hs
end

-- Update Failed
if condition.reason == "UpdateFailed" then
hs.status = "Degraded"
hs.message = condition.message
return hs
end

-- Dependency Not Found
if condition.reason == "DependencyNotFound" then
hs.status = "Degraded"
hs.message = condition.message
return hs
end

-- Dependency Not Ready
if condition.reason == "DependencyNotReady" then
hs.status = "Suspended"
hs.message = condition.message
return hs
end
end
end
end
return hs
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
tests:
- healthStatus:
status: Degraded
message: "Dependency not found"
inputPath: testdata/dependency_not_found.yaml
- healthStatus:
status: Suspended
message: "Dependency not ready"
inputPath: testdata/dependency_not_ready.yaml
- healthStatus:
status: Healthy
message: "The resource is up to date"
inputPath: testdata/up_to_date.yaml
- healthStatus:
status: Degraded
message: "Update failed"
inputPath: testdata/update_failed.yaml
- healthStatus:
status: Progressing
message: "Update in progress"
inputPath: testdata/update_in_progress.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
apiVersion: pubsub.cnrm.cloud.google.com/v1beta1
kind: PubSubSubscription
status:
conditions:
- lastTransitionTime: '2022-07-01T12:56:21Z'
message: Dependency not found
reason: DependencyNotFound
status: 'False'
type: Ready
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
apiVersion: pubsub.cnrm.cloud.google.com/v1beta1
kind: PubSubSubscription
status:
conditions:
- lastTransitionTime: '2022-07-01T12:56:21Z'
message: Dependency not ready
reason: DependencyNotReady
status: 'False'
type: Ready
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
apiVersion: pubsub.cnrm.cloud.google.com/v1beta1
kind: PubSubSubscription
status:
conditions:
- lastTransitionTime: '2022-05-09T08:49:18Z'
message: The resource is up to date
reason: UpToDate
status: 'True'
type: Ready
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
apiVersion: pubsub.cnrm.cloud.google.com/v1beta1
kind: PubSubSubscription
status:
conditions:
- lastTransitionTime: '2022-07-01T12:56:21Z'
message: Update failed
reason: UpdateFailed
status: 'False'
type: Ready
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
apiVersion: pubsub.cnrm.cloud.google.com/v1beta1
kind: PubSubSubscription
status:
conditions:
- lastTransitionTime: '2022-07-01T12:56:21Z'
message: Update in progress
reason: Updating
status: 'False'
type: Ready
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
hs = {
status = "Progressing",
message = "Update in progress"
}
if obj.status ~= nil then
if obj.status.conditions ~= nil then
for i, condition in ipairs(obj.status.conditions) do

-- Up To Date
if condition.reason == "UpToDate" and condition.status == "True" then
hs.status = "Healthy"
hs.message = condition.message
return hs
end

-- Update Failed
if condition.reason == "UpdateFailed" then
hs.status = "Degraded"
hs.message = condition.message
return hs
end

-- Dependency Not Found
if condition.reason == "DependencyNotFound" then
hs.status = "Degraded"
hs.message = condition.message
return hs
end

-- Dependency Not Ready
if condition.reason == "DependencyNotReady" then
hs.status = "Suspended"
hs.message = condition.message
return hs
end
end
end
end
return hs
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
tests:
- healthStatus:
status: Degraded
message: "Dependency not found"
inputPath: testdata/dependency_not_found.yaml
- healthStatus:
status: Suspended
message: "Dependency not ready"
inputPath: testdata/dependency_not_ready.yaml
- healthStatus:
status: Healthy
message: "The resource is up to date"
inputPath: testdata/up_to_date.yaml
- healthStatus:
status: Degraded
message: "Update failed"
inputPath: testdata/update_failed.yaml
- healthStatus:
status: Progressing
message: "Update in progress"
inputPath: testdata/update_in_progress.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
apiVersion: pubsub.cnrm.cloud.google.com/v1beta1
kind: PubSubTopic
status:
conditions:
- lastTransitionTime: '2022-07-01T12:56:21Z'
message: Dependency not found
reason: DependencyNotFound
status: 'False'
type: Ready
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
apiVersion: pubsub.cnrm.cloud.google.com/v1beta1
kind: PubSubTopic
status:
conditions:
- lastTransitionTime: '2022-07-01T12:56:21Z'
message: Dependency not ready
reason: DependencyNotReady
status: 'False'
type: Ready
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
apiVersion: pubsub.cnrm.cloud.google.com/v1beta1
kind: PubSubTopic
status:
conditions:
- lastTransitionTime: '2022-05-09T08:49:18Z'
message: The resource is up to date
reason: UpToDate
status: 'True'
type: Ready
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
apiVersion: pubsub.cnrm.cloud.google.com/v1beta1
kind: PubSubTopic
status:
conditions:
- lastTransitionTime: '2022-07-01T12:56:21Z'
message: Update failed
reason: UpdateFailed
status: 'False'
type: Ready
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
apiVersion: pubsub.cnrm.cloud.google.com/v1beta1
kind: PubSubTopic
status:
conditions:
- lastTransitionTime: '2022-07-01T12:56:21Z'
message: Update in progress
reason: Updating
status: 'False'
type: Ready

0 comments on commit c317d48

Please sign in to comment.