The hosts that drone run's requires the use of proxies in order to communicate externally. I've setup the following .drone.yml file where the proxy environment variables are set as well as the configuration for the slack plugin. We have no issues using curl to post to the slack webhook while running from the drone host, so the proxy is working. Should this plugin support my use case?
The hosts that drone run's requires the use of proxies in order to communicate externally. I've setup the following .drone.yml file where the proxy environment variables are set as well as the configuration for the slack plugin. We have no issues using curl to post to the slack webhook while running from the drone host, so the proxy is working. Should this plugin support my use case?
environment:
HTTPS_PROXY: http://proxy:8080
HTTP_PROXY: http://proxy:8080
...
slack:
webhook_url: https://hooks.slack.com/services/XXX/YYY/ZZZ
channel: #build_health
username: drone
on_started: true
on_success: true
on_failure: true
The text was updated successfully, but these errors were encountered: