Skip to content

Commit

Permalink
Merge pull request #46 from metalstormbass/dev
Browse files Browse the repository at this point in the history
Updated values.yaml with documentation
  • Loading branch information
metalstormbass authored Mar 29, 2022
2 parents 6a14da9 + d551525 commit 5d62f5f
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 21 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.5
version: 1.1.6

# 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
53 changes: 33 additions & 20 deletions charts/snyk-broker/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,11 @@ replicaCount: 1

##### Snyk Specific Values #####

# Broker Token is a value from Snyk. Get this from the integration settings page or your Snyk SE
# Broker Token is a value from Snyk. Get this from the integration settings page or your Snyk Representative
brokerToken: ""

# brokerClientUrl is the address of the broker. This needs to be the address of itself. In the case of Kubernetes, you need to ensure that you are pointing to the cluster ingress you have setup.
# Ex: http://kubernetes-ingress.domain.com:8000/broker
brokerClientUrl: ""

# Do not touch unless directed by a Snyk Representative
Expand All @@ -19,7 +20,18 @@ brokerServerUrl: "https://broker.snyk.io"

##### SCM Generic #####

# scmType is used to define the Source Control that you are connecting to. See Documentation for allowed values
# scmType is used to define the Source Control that you are connecting to.

# Allowed values for scmType:
# Github.com: github-com
# Github Enterprise: github-enterprise
# Bitbucket: bitbucket-server
# Gitlab: gitlab
# Azure Repos: azure-repos
# Artifactory: artifactory
# Jira: jira
# Container Registry Agent: container-registry-agent

scmType: "github-com"

# scmToken is used for SCMs that require a personal Access Token: Github & Gitlab
Expand All @@ -28,13 +40,13 @@ scmToken: ""

##### Github Enterprise #####

# GHE URL
# GHE URL - Ex: your.ghe.domain.com (do not prepend HTTPS) - For GHE Cloud use api.github.com
github: ""

# GHE API Address
# GHE API Address - do not prepend HTTPS
githubApi: ""

# GHE Graph QL Address
# GHE Graph QL Address - do not prepend HTTPS
githubGraphQl: ""


Expand All @@ -46,16 +58,16 @@ bitbucketUsername: ""
# Bitbucket Password
bitbucketPassword: ""

# Bitbucket URL
# Bitbucket URL - do not prepend HTTPS
bitbucket: ""

# Bitbucket API URL
# Bitbucket API URL - do not prepend HTTPS
bitbucketApi: ""


##### GitLab #####

# Gitlab URL
# Gitlab URL - do not prepend HTTPS
gitlab: ""


Expand All @@ -64,7 +76,7 @@ gitlab: ""
# Azure Repos Organization
azureReposOrg: ""

# Azure Repos Hostname
# Azure Repos Hostname - do not prepend HTTPS
azureReposHost: ""

# Azure Repos Token
Expand All @@ -73,7 +85,7 @@ azureReposToken: ""

##### Artifactory #####

# Artifactory URL
# Artifactory URL - do not prepend HTTPS
artifactoryUrl: ""


Expand All @@ -85,7 +97,7 @@ jiraUsername: ""
# Jira Password
jiraPassword: ""

# Jira Hostname
# Jira Hostname - do not prepend HTTPS
jiraHostname: ""


Expand All @@ -94,7 +106,7 @@ jiraHostname: ""
# Container Registry Type. See Documentation for allowed values
crType: ""

# Container Registry Base URL
# Container Registry Base URL - do not prepend HTTPS
crBase: ""

# Container Registry Username
Expand All @@ -109,22 +121,22 @@ crImage: "latest"

##### Code Agent #####

# Set to true to enable Code Agent
# Set to 'true' to enable Code Agent
enableCodeAgent: ""

# Snyk API key. Allows Code Agent to upload source code
# Snyk API token. Allows Code Agent to upload source code. Group > Settings > Service Accounts
snykToken: ""

#CA Image Tag. Do not touch unless instructed by Snyk Representative
caImage: "latest"

# Used to allow communication between the code agent and the broker. The helm chart already connects everything. Only adjust this value if advised to by Snyk Representative.
# Only adjust this value if advised to by Snyk Representative. This is the URL of the Snyk Code Agent. This helm chart already connects everything.
gitClientUrl: ""


##### Logging #####

# Default Log Level. Can be set to "debug"
# Default Log Level. Can be set to "debug" for more information
logLevel: "info"

# Add additional logging by setting to true
Expand All @@ -142,22 +154,23 @@ httpsKey: ""

##### HTTPS Inspection #####

# Location of mounted custom certificate. To allow visibility for SSL Inspection
# Not supported by Snyk Container Registry Agent or Snyk Code Agent (use tlsRejectUnauthorized instead). Location of mounted custom certificate. To allow visibility for SSL Inspection.
caCert: ""

# Troubleshooting HTTPS Inspection. Setting any value here will ignore self signed certificates
# Set to "0" to disable trust validation when using self signed certificates.
tlsRejectUnauthorized: ""


##### Use behind proxy #####

# HTTP Proxy URL
# Do not change unless advised by your Snyk Representative. You probably need to use HTTPS proxy setting and leave this blank. - HTTP Proxy URL
httpProxy: ""

# HTTPS Proxy URL
# HTTPS Proxy URL - This will apply to both Snyk Broker and Snyk Code Agent
httpsProxy: ""

# Specify a local accept.json file (relative to snyk-broker folder) to inject with a ConfigMap, e.g. "files/accept.json"
# The accept.json file needs to be modified for use with Snyk Code.
acceptJsonFile: ""

# Specify the accept.json file contents verbatim. Should look something like:
Expand Down

0 comments on commit 5d62f5f

Please sign in to comment.