ServerlessSpec
or PodSpec
class as well:
proxy_url
: The location of your proxy. This could be an HTTP or HTTPS URL depending on your proxy setup.proxy_headers
: Accepts a python dictionary which can be used to pass any custom headers required by your proxy. If your proxy is protected by authentication, use this parameter to pass basic authentication headers with a digest of your username and password. The make_headers
utility from urllib3
can be used to help construct the dictionary.ssl_ca_certs
: By default, the client will perform SSL certificate verification using the CA bundle maintained by Mozilla in the certifi
package. If your proxy is using self-signed certicates, use this parameter to specify the path to the certificate (PEM format).ssl_verify
: SSL verification is enabled by default, but it is disabled when set to False
. It is not recommened to go into production with SSL verification disabled.