1
0
mirror of https://github.com/rancher/types.git synced 2025-07-18 23:36:24 +00:00

go generate

This commit is contained in:
gitlawr 2019-07-04 17:43:26 +08:00 committed by Alena Prokharchyk
parent 9e9f110be1
commit c8c22eccbd

View File

@ -5,6 +5,7 @@ import "k8s.io/apimachinery/pkg/util/intstr"
const (
HTTPGetActionType = "httpGetAction"
HTTPGetActionFieldHTTPHeaders = "httpHeaders"
HTTPGetActionFieldHost = "host"
HTTPGetActionFieldPath = "path"
HTTPGetActionFieldPort = "port"
HTTPGetActionFieldScheme = "scheme"
@ -12,6 +13,7 @@ const (
type HTTPGetAction struct {
HTTPHeaders []HTTPHeader `json:"httpHeaders,omitempty" yaml:"httpHeaders,omitempty"`
Host string `json:"host,omitempty" yaml:"host,omitempty"`
Path string `json:"path,omitempty" yaml:"path,omitempty"`
Port intstr.IntOrString `json:"port,omitempty" yaml:"port,omitempty"`
Scheme string `json:"scheme,omitempty" yaml:"scheme,omitempty"`