@@ -87,15 +87,15 @@ description: "Learn how to use Helm chart to install Digger on your Kubernetes c
87
87
</Step >
88
88
89
89
<Step title = " Configure initial secrets" >
90
- Configure the authentication and hostname settings. Make sure the hostname matches your ingress configuration :
90
+ Configure the authentication and hostname settings:
91
91
92
92
```yaml values.yaml
93
93
digger:
94
94
secret:
95
95
httpBasicAuthUsername: "admin"
96
96
httpBasicAuthPassword: "<strong-password >" # CHANGE THIS
97
97
bearerAuthToken: "<strong-token >" # CHANGE THIS
98
- hostname: "digger.example.com" # MUST match your ingress host
98
+ hostname: "https:// digger.example.com " # Include https:// prefix!
99
99
githubOrg: "your-github-org" # Your GitHub organization name
100
100
101
101
# GitHub App credentials - leave empty for now
@@ -106,9 +106,18 @@ description: "Learn how to use Helm chart to install Digger on your Kubernetes c
106
106
githubWebhookSecret: ""
107
107
```
108
108
109
+ <Note >
110
+ ** Hostname configuration is different from ingress:**
111
+ - Ingress host: ` digger.example.com ` (no protocol)
112
+ - Secret hostname: ` https://digger.example.com ` (requires https:// prefix)
113
+
114
+ For example:
115
+ - If your ingress host is ` digger.35.232.52.175.nip.io `
116
+ - Your secret hostname should be ` https://digger.35.232.52.175.nip.io `
117
+ </Note >
118
+
109
119
<Warning >
110
120
** Important** :
111
- - The ` hostname ` must exactly match the host you configured in the ingress step
112
121
- The ` githubOrg ` must be your actual GitHub organization name where you'll install the app
113
122
- Change all default passwords and tokens
114
123
</Warning >
@@ -246,7 +255,7 @@ description: "Learn how to use Helm chart to install Digger on your Kubernetes c
246
255
httpBasicAuthUsername : " admin"
247
256
httpBasicAuthPassword : " secure-password-123"
248
257
bearerAuthToken : " secure-bearer-token-456"
249
- hostname : " digger.example.com"
258
+ hostname : " https:// digger.example.com" # Include https:// prefix
250
259
251
260
githubOrg : " your-github-org"
252
261
githubAppID : " 123456"
0 commit comments