Proxy Configuration
The StackState Kubernetes Agent allows you to configure HTTP or HTTPS proxy settings for the connections it initiates.
Proxy for communication with StackState
To configure the agent to proxy connections to the StackState backend, you can use Helm configuration.
Helm Configuration
Via values.yaml File
values.yaml File- Open your Helm chart - values.yamlfile.
- Locate the - global.proxy.urlconfiguration and specify the proxy URL:- global: proxy: url: "https://proxy.example.com:8080"
- Optionally, if the proxy does not have a signed certificate, disable SSL verification by setting - global.skipSslValidationto- true:- global: skipSslValidation: true
Via Command Line Flag
- During installation of the Helm chart, use the - --setflag to specify the proxy URL:- helm install stackstate-k8s-agent stackstate/stackstate-k8s-agent --set global.proxy.url="https://proxy.example.com:8080"
- To disable SSL validation via the command line, use: - helm install stackstate-k8s-agent stackstate/stackstate-k8s-agent --set global.skipSslValidation=true
Last updated