You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: deploy/chart/docs/guide/rancher.md
+21-1Lines changed: 21 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -105,7 +105,27 @@ database:
105
105
database: registry
106
106
```
107
107
108
-
The hostname chosen for our local deployment is the default, `harbor.example.com`. To override our DNS resolver, we set a mapping to localhost in `/etc/hosts`:
108
+
We set also `externalURL` and `harborAdminPassword`:
109
+
110
+
```yaml
111
+
externalURL: "https://harbor.example.com"
112
+
harborAdminPassword: "strong-password"
113
+
```
114
+
115
+
Finally we configure the ingress:
116
+
117
+
```yaml
118
+
ingress:
119
+
core: harbor.example.com
120
+
hosts:
121
+
- host: harbor.example.com
122
+
tls:
123
+
- secretName: harbor-tls
124
+
hosts:
125
+
- harbor.example.com
126
+
```
127
+
128
+
The hostname chosen for our local deployment is `harbor.example.com`. To override our DNS resolver, we set a mapping to localhost in `/etc/hosts`:
0 commit comments