Skip to content

Commit

Permalink
fix: health in dummy configs (#874)
Browse files Browse the repository at this point in the history
  • Loading branch information
adityathebe authored Jul 1, 2024
1 parent 5320bc7 commit 3cbb54d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/fixtures/dummy/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ var KubernetesNodeAKSPool1 = models.ConfigItem{
Name: lo.ToPtr("aks-pool-1"),
ConfigClass: models.ConfigClassNode,
Type: lo.ToPtr("Kubernetes::Node"),
Status: lo.ToPtr("Healthy"),
Status: lo.ToPtr("healthy"),
Config: lo.ToPtr(`{"apiVersion":"v1", "kind":"Node", "metadata": {"name": "aks-pool-1"}}`),
Tags: types.JSONStringMap{
"cluster": "demo",
Expand All @@ -67,7 +67,7 @@ var KubernetesNodeA = models.ConfigItem{
ConfigClass: models.ConfigClassNode,
Config: lo.ToPtr(`{"apiVersion":"v1", "kind":"Node", "metadata": {"name": "node-a"}}`),
Type: lo.ToPtr("Kubernetes::Node"),
Status: lo.ToPtr("Healthy"),
Status: lo.ToPtr("healthy"),
Tags: types.JSONStringMap{
"cluster": "aws",
"account": "flanksource",
Expand All @@ -92,7 +92,7 @@ var KubernetesNodeB = models.ConfigItem{
Config: lo.ToPtr(`{"apiVersion":"v1", "kind":"Node", "metadata": {"name": "node-b"}}`),
ConfigClass: models.ConfigClassNode,
Type: lo.ToPtr("Kubernetes::Node"),
Status: lo.ToPtr("Healthy"),
Status: lo.ToPtr("healthy"),
Tags: types.JSONStringMap{
"cluster": "aws",
"account": "flanksource",
Expand Down

0 comments on commit 3cbb54d

Please sign in to comment.