mirror of
https://github.com/rancher/types.git
synced 2025-07-18 23:36:24 +00:00
go generate
This commit is contained in:
parent
9e9f110be1
commit
c8c22eccbd
@ -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"`
|
||||
|
Loading…
Reference in New Issue
Block a user