Skip to content

Commit 8d7a926

Browse files
Andrew Farriesroboquat
authored andcommitted
Make server githubApp.certSecretName configurable
1 parent 7b31f94 commit 8d7a926

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

install/installer/pkg/components/server/configmap.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ func configmap(ctx *common.RenderContext) ([]runtime.Object, error) {
5959
githubApp.LogLevel = cfg.WebApp.Server.GithubApp.LogLevel
6060
githubApp.MarketplaceName = cfg.WebApp.Server.GithubApp.MarketplaceName
6161
githubApp.WebhookSecret = cfg.WebApp.Server.GithubApp.WebhookSecret
62+
githubApp.CertSecretname = cfg.WebApp.Server.GithubApp.CertSecretName
6263
}
6364
return nil
6465
})

install/installer/pkg/components/server/types.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ type GitHubApp struct {
107107
CertPath string `json:"certPath"`
108108
MarketplaceName string `json:"marketplaceName"`
109109
LogLevel string `json:"logLevel"`
110+
CertSecretname string `json:"certSecretName"`
110111
}
111112

112113
type Session struct {

0 commit comments

Comments
 (0)