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: _docs/administration/codefresh-runner.md
+9-8Lines changed: 9 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -190,7 +190,8 @@ If the Kubernetes cluster with the Codefresh Runner is behind a proxy server wit
190
190
Make sure you have [installed the Codefresh Runner](#codefresh-runner-installation) using any of the options
191
191
192
192
**How to**
193
-
1. Run`kubectl edit deployment runner -n codefresh-runtime` and add the proxy variables:
193
+
* Run`kubectl edit deployment runner -n codefresh-runtime` and add the proxy variables:
194
+
194
195
```yaml
195
196
spec:
196
197
containers:
@@ -209,7 +210,7 @@ spec:
209
210
value: localhost,127.0.0.1,<local_ip_of_machine>
210
211
```
211
212
{:start="2"}
212
-
1. Add the following variables to your`runtime.yaml`, both to the`runtimeScheduler:` and to the`dockerDaemonScheduler:` blocks, within the`envVars:` section:
213
+
* Add the following variables to your`runtime.yaml`, both to the`runtimeScheduler:` and to the`dockerDaemonScheduler:` blocks, within the`envVars:` section:
213
214
```yaml
214
215
HTTP_PROXY: http://<ip of proxy server>:port
215
216
http_proxy: http://<ip of proxy server>:port
@@ -218,15 +219,15 @@ https_proxy: http://<ip of proxy server>:port
1. Add`.firebaseio.com` to the allowed-sites of the proxy server.
222
-
1. Exec into the`dind` pod, and run`ifconfig`.
223
-
1. If the MTU valuefor`docker0` is _higher_ than the MTU value of`eth0` (sometimes the`docker0` MTU is 1500,while`eth0` MTU is 1440), change the`docker0` MTU value to be lower than the`eth0` MTU.
224
-
* To change the`docker0` MTU value, edit the`configmap`in the`codefresh-runtime` namespace:
222
+
* Add`.firebaseio.com` to the allowed-sites of the proxy server.
223
+
* Exec into the`dind` pod, and run`ifconfig`.
224
+
* If the MTU valuefor`docker0` is _higher_ than the MTU value of`eth0` (sometimes the`docker0` MTU is 1500,while`eth0` MTU is 1440), change the`docker0` MTU value to be lower than the`eth0` MTU.
225
+
* To change the`docker0` MTU value, edit the`configmap`in the`codefresh-runtime` namespace:
225
226
```shell
226
227
kubectl edit cm codefresh-dind-config -n codefresh-runtime