1
0
mirror of https://github.com/rancher/types.git synced 2025-09-19 00:46:53 +00:00

Add target type and cert for custom target config

Problem:
user may need cert when input custom config

Solution:
add cert for custom config

Issue:
https://github.com/rancher/rancher/issues/176965
This commit is contained in:
Aiwantaozi
2019-01-28 19:19:24 +08:00
committed by Craig Jellick
parent 3152022f25
commit 7247d13971

View File

@@ -166,7 +166,10 @@ type FluentServer struct {
}
type CustomTargetConfig struct {
Content string `json:"content,omitempty"`
Content string `json:"content,omitempty"`
Certificate string `json:"certificate,omitempty"`
ClientCert string `json:"clientCert,omitempty"`
ClientKey string `json:"clientKey,omitempty"`
}
type LoggingSystemImages struct {