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: content/en/docs/components/pipelines/operator-guides/server-config.md
+196-1
Original file line number
Diff line number
Diff line change
@@ -39,4 +39,199 @@ For full fledged Kubeflow, each namespace corresponds to a project with the same
39
39
To configure the `ALLOWED_ARTIFACT_DOMAIN_REGEX` value for user namespace, add an entry in `ml-pipeline-ui-artifact`
40
40
just like this example in [sync.py](https://github.com/kubeflow/pipelines/blob/b630d5c8ae7559be0011e67f01e3aec1946ef765/manifests/kustomize/base/installs/multi-user/pipelines-profile-controller/sync.py#L304-L310) for `ALLOWED_ARTIFACT_DOMAIN_REGEX` environment variable,
41
41
the entry is identical to the environment variable instruction in Standalone Kubeflow Pipelines
42
-
deployment.
42
+
deployment.
43
+
44
+
## Proxy
45
+
46
+
Since KFP 2.5, you can set a server-scoped proxy configuration for the backend by setting any of the following environment variables (in uppercase) in the
47
+
API Server deployment. All variables are optional.
48
+
49
+
-`HTTP_PROXY`
50
+
-`HTTPS_PROXY`
51
+
-`NO_PROXY`
52
+
53
+
If `HTTP_PROXY` or `HTTPS_PROXY` is set and `NO_PROXY` is not set, `NO_PROXY` will automatically be set to `localhost,127.0.0.1,.svc.cluster.local,kubernetes.default.svc,metadata-grpc-service,0,1,2,3,4,5,6,7,8,9`.
54
+
55
+
### Example of an API Server deployment with all `HTTP_PROXY`, `HTTPS_PROXY` and `NO_PROXY` set
0 commit comments