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
Well Done! **Port Agent** is now running in your environment and will trigger any webhook that you've configured (for self-service actions, or changes in the software catalog).
@@ -56,7 +55,7 @@ env:
56
55
VAR_NAME: VAR_VALUE
57
56
```
58
57
59
-
### Proxy configuration
58
+
### Proxy configuration
60
59
61
60
#### `HTTP_PROXY`, `HTTPS_PROXY` & `ALL_PROXY`
62
61
`HTTP_PROXY`, `HTTPS_PROXY`, and `ALL_PROXY` are environment variables used to specify a proxy server for handling HTTP, HTTPS, or all types of requests, respectively. The values assigned to these settings should be the URL of the proxy server.
@@ -81,7 +80,13 @@ For more information take a look at the Requests [proxy configuration documentat
81
80
82
81
### SSL Environment Configuration
83
82
84
-
#### `REQUESTS_CA_BUNDLE`
83
+
### Certificate Configuration
84
+
85
+
#### Self-signed certificate
86
+
87
+
Use the following Helm values:
88
+
- Set `selfSignedCertificate.enabled` to `true`.
89
+
- Put your PEM-encoded CA content in `selfSignedCertificate.certificate`.
85
90
86
91
`REQUESTS_CA_BUNDLE`is an environment variable used to specify a custom Certificate Authority (CA) bundle for verifying SSL/TLS certificates in HTTPS requests.
This configuration directs the `requests` library to use the specified CA bundle for SSL/TLS certificate verification, overriding default system settings. It's useful for trusting self-signed certificates or certificates from a private CA.
96
101
102
+
#### Multiple certificates
103
+
104
+
Use the following Helm values:
105
+
- Keep your certificate via `selfSignedCertificate` as above.
106
+
- Add other certificates by supplying files via `extraVolumes` and mounting them with `extraVolumeMounts` into the container.
107
+
108
+
:::info Certificate file requirement
109
+
Each certificate must be provided in a separate PEM file. Files containing multiple certificates are not supported.
0 commit comments