Skip to content

Commit

Permalink
fix(k8s): Fix type name typo (#4741)
Browse files Browse the repository at this point in the history
  • Loading branch information
jfrabaute committed Jul 10, 2020
1 parent ca28ddf commit bf0d4eb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public KubernetesV2Health(V1PodStatus status) {

public KubernetesV2Health(V1ContainerStatus status) {
this.source = "Container " + status.getName();
this.type = "kuberentes/container";
this.type = "kubernetes/container";

if (!status.getReady()) {
state = HealthState.Down;
Expand Down

0 comments on commit bf0d4eb

Please sign in to comment.