11 lines
160 B
Go
11 lines
160 B
Go
|
package clustersconfig
|
||
|
|
||
|
type CertRequest struct {
|
||
|
Template `yaml:",inline"`
|
||
|
|
||
|
CA string
|
||
|
Profile string
|
||
|
Label string
|
||
|
PerHost bool `yaml:"per_host"`
|
||
|
}
|