feat: use certificates imported by certs plugin when deploying via scheduler-k3s

Closes #7257
This commit is contained in:
Jose Diaz-Gonzalez
2026-01-08 01:05:40 -05:00
parent b99e0b303d
commit b8e8ea74ff
16 changed files with 899 additions and 38 deletions

View File

@@ -336,8 +336,9 @@ func (a NameSorter) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
func (a NameSorter) Less(i, j int) bool { return a[i].Name < a[j].Name }
type ProcessTls struct {
Enabled bool `yaml:"enabled"`
IssuerName string `yaml:"issuer_name"`
Enabled bool `yaml:"enabled"`
IssuerName string `yaml:"issuer_name"`
UseImportedCert bool `yaml:"use_imported_cert"`
}
type ClusterIssuer struct {