From 1f442d4429aafb96fe0afedbcb8e53344abb9b3c Mon Sep 17 00:00:00 2001 From: Clayton Coleman Date: Fri, 12 Dec 2014 16:32:02 -0500 Subject: [PATCH] Remove LivenessProbe.Type in v1beta3 --- pkg/api/v1beta3/types.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkg/api/v1beta3/types.go b/pkg/api/v1beta3/types.go index 9d026b791a5..1bb9915c953 100644 --- a/pkg/api/v1beta3/types.go +++ b/pkg/api/v1beta3/types.go @@ -291,8 +291,6 @@ type ExecAction struct { // LivenessProbe describes how to probe a container for liveness. // TODO: pass structured data to the actions, and document that data here. type LivenessProbe struct { - // Type of liveness probe. Current legal values "HTTP", "TCP", "Exec" - Type string `json:"type,omitempty"` // HTTPGetProbe parameters, required if Type == 'HTTP' HTTPGet *HTTPGetAction `json:"httpGet,omitempty"` // TCPSocketProbe parameter, required if Type == 'TCP'