@@ -80,6 +80,8 @@ func init() {
8080 "gardenlet.seedpodcidr" : "100.73.0.0/16" ,
8181 "gardenlet.seedservicecidr" : "100.88.0.0/13" ,
8282 "issuer.acme.email" : "test@example.org" ,
83+ "issuer.acme.server" : "example.acme.server" ,
84+ "issuer.ca" : "my-great-ca" ,
8385 "kubeapiserver.basicauthpassword" : "my-basic-auth-password" ,
8486
8587 "version" : "test" ,
@@ -130,6 +132,8 @@ func init() {
130132 viper .Set ("kubeApiServer.basicAuthPassword" , testConfig ["kubeapiserver.basicauthpassword" ])
131133 viper .Set ("clusterIdentity" , testConfig ["clusteridentity" ])
132134 viper .Set ("cloudprofiles" , testConfig ["cloudprofiles" ])
135+ viper .Set ("issuer.ca" , testConfig ["issuer.ca" ])
136+ viper .Set ("issuer.acme.server" , testConfig ["issuer.acme.server" ])
133137
134138 _ , err = git .PlainInit (configRepo , true )
135139 if err != nil {
@@ -192,6 +196,9 @@ issuer:
192196 enabled: true
193197 acme:
194198 email: test@example.org
199+ server: %s
200+ ca: |
201+ %s
195202kubeApiServer:
196203 basicAuthPassword: %s
197204backups:
@@ -214,6 +221,8 @@ backups:
214221 testConfig ["domainconfig" ].(map [string ]any )["credentials" ].(map [string ]string )["clientsecret" ],
215222 testConfig ["domainconfig" ].(map [string ]any )["credentials" ].(map [string ]string )["subscriptionid" ],
216223 testConfig ["domainconfig" ].(map [string ]any )["credentials" ].(map [string ]string )["tenantid" ],
224+ testConfig ["issuer.acme.server" ],
225+ testConfig ["issuer.ca" ],
217226 testConfig ["kubeapiserver.basicauthpassword" ],
218227 testConfig ["backupconfig" ].(map [string ]any )["enabled" ].(bool ),
219228 testConfig ["backupconfig" ].(map [string ]any )["provider" ].(string ),
0 commit comments