mirror of
https://github.com/rancher/types.git
synced 2025-08-01 21:07:41 +00:00
update vendor
This commit is contained in:
parent
218080cd20
commit
8a698a37a0
@ -3,14 +3,22 @@ package client
|
||||
const (
|
||||
FluentForwarderConfigType = "fluentForwarderConfig"
|
||||
FluentForwarderConfigFieldCertificate = "certificate"
|
||||
FluentForwarderConfigFieldClientCert = "clientCert"
|
||||
FluentForwarderConfigFieldClientKey = "clientKey"
|
||||
FluentForwarderConfigFieldClientKeyPass = "clientKeyPass"
|
||||
FluentForwarderConfigFieldCompress = "compress"
|
||||
FluentForwarderConfigFieldEnableTLS = "enableTls"
|
||||
FluentForwarderConfigFieldFluentServers = "fluentServers"
|
||||
FluentForwarderConfigFieldSSLVerify = "sslVerify"
|
||||
)
|
||||
|
||||
type FluentForwarderConfig struct {
|
||||
Certificate string `json:"certificate,omitempty" yaml:"certificate,omitempty"`
|
||||
ClientCert string `json:"clientCert,omitempty" yaml:"clientCert,omitempty"`
|
||||
ClientKey string `json:"clientKey,omitempty" yaml:"clientKey,omitempty"`
|
||||
ClientKeyPass string `json:"clientKeyPass,omitempty" yaml:"clientKeyPass,omitempty"`
|
||||
Compress bool `json:"compress,omitempty" yaml:"compress,omitempty"`
|
||||
EnableTLS bool `json:"enableTls,omitempty" yaml:"enableTls,omitempty"`
|
||||
FluentServers []FluentServer `json:"fluentServers,omitempty" yaml:"fluentServers,omitempty"`
|
||||
SSLVerify bool `json:"sslVerify,omitempty" yaml:"sslVerify,omitempty"`
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user