Skip to content

Commit

Permalink
Merge pull request #42 from metalstormbass/dev
Browse files Browse the repository at this point in the history
Added Support for HTTPS_PROXY to code agent
  • Loading branch information
metalstormbass authored Feb 28, 2022
2 parents b155279 + f662939 commit acc4f38
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/snyk-broker/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 1.1.3
version: 1.1.4

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
8 changes: 6 additions & 2 deletions charts/snyk-broker/templates/code_agent_deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,12 @@ spec:
- name: NODE_TLS_REJECT_UNAUTHORIZED
value: "0"
{{- end }}


{{- if .Values.httpsProxy }}
# HTTPS Proxy Settings
- name: HTTPS_PROXY
value: {{ .Values.httpsProxy }}
{{- end }}

---
apiVersion: v1
kind: Service
Expand Down

0 comments on commit acc4f38

Please sign in to comment.