From 7feb7427f2c80bfe4d4d31384bfe8767993e985d Mon Sep 17 00:00:00 2001 From: adrian-salas Date: Wed, 20 Jul 2022 17:42:39 +0200 Subject: [PATCH] ISSUE-30 - Fix syntax on tcp liveness probe Closes #30 --- helm/probe.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helm/probe.go b/helm/probe.go index bc80e4b..38608a6 100644 --- a/helm/probe.go +++ b/helm/probe.go @@ -10,7 +10,7 @@ import ( type Probe struct { HttpGet *HttpGet `yaml:"httpGet,omitempty"` Exec *Exec `yaml:"exec,omitempty"` - TCP *TCP `yaml:"tcp,omitempty"` + TCP *TCP `yaml:"tcpSocket,omitempty"` Period float64 `yaml:"periodSeconds"` InitialDelay float64 `yaml:"initialDelaySeconds"` Success uint64 `yaml:"successThreshold"`