Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: enable apprisk by default [HYB-651] #142

Merged
merged 1 commit into from
Nov 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ HA mode on:
value: "true"
- name: ACCEPT_IAC
value: tf,yaml,yml,json,tpl
- name: ACCEPT_APPRISK
value: "true"
- name: BROKER_HA_MODE_ENABLED
value: "true"
- name: BROKER_DISPATCHER_BASE_URL
Expand Down Expand Up @@ -203,6 +205,8 @@ HA mode on with 4 replicas:
value: "true"
- name: ACCEPT_IAC
value: tf,yaml,yml,json,tpl
- name: ACCEPT_APPRISK
value: "true"
- name: BROKER_HA_MODE_ENABLED
value: "true"
- name: BROKER_DISPATCHER_BASE_URL
Expand Down Expand Up @@ -352,6 +356,8 @@ default values:
value: "true"
- name: ACCEPT_IAC
value: tf,yaml,yml,json,tpl
- name: ACCEPT_APPRISK
value: "true"
- name: BROKER_DISPATCHER_BASE_URL
value: https://api.test.snyk.io
image: snyk/broker:github-com
Expand Down Expand Up @@ -499,6 +505,8 @@ preflight checks off:
value: "true"
- name: ACCEPT_IAC
value: tf,yaml,yml,json,tpl
- name: ACCEPT_APPRISK
value: "true"
- name: PREFLIGHT_CHECKS_ENABLED
value: "false"
- name: BROKER_DISPATCHER_BASE_URL
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ ingress:
value: "true"
- name: ACCEPT_IAC
value: tf,yaml,yml,json,tpl
- name: ACCEPT_APPRISK
value: "true"
- name: BROKER_DISPATCHER_BASE_URL
value: https://api.test.snyk.io
image: snyk/broker:github-com
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ ingress:
value: "true"
- name: ACCEPT_IAC
value: tf,yaml,yml,json,tpl
- name: ACCEPT_APPRISK
value: "true"
- name: BROKER_DISPATCHER_BASE_URL
value: https://api.test.snyk.io
image: snyk/broker:github-com
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ github token pool configured:
value: "true"
- name: ACCEPT_IAC
value: tf,yaml,yml,json,tpl
- name: ACCEPT_APPRISK
value: "true"
- name: BROKER_DISPATCHER_BASE_URL
value: https://api.test.snyk.io
image: snyk/broker:github-com
Expand Down Expand Up @@ -219,6 +221,8 @@ github token pool configured with enabled useExternalSecretScmTokenPool:
value: "true"
- name: ACCEPT_IAC
value: tf,yaml,yml,json,tpl
- name: ACCEPT_APPRISK
value: "true"
- name: BROKER_DISPATCHER_BASE_URL
value: https://api.test.snyk.io
image: snyk/broker:github-com
Expand Down Expand Up @@ -373,6 +377,8 @@ gitlab token pool configured:
value: "true"
- name: ACCEPT_IAC
value: tf,yaml,yml,json,tpl
- name: ACCEPT_APPRISK
value: "true"
- name: BROKER_DISPATCHER_BASE_URL
value: https://api.test.snyk.io
image: snyk/broker:gitlab
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ HA mode on:
value: "true"
- name: ACCEPT_IAC
value: tf,yaml,yml,json,tpl
- name: ACCEPT_APPRISK
value: "true"
- name: BROKER_HA_MODE_ENABLED
value: "true"
- name: BROKER_DISPATCHER_BASE_URL
Expand Down Expand Up @@ -203,6 +205,8 @@ HA mode on with 4 replicas:
value: "true"
- name: ACCEPT_IAC
value: tf,yaml,yml,json,tpl
- name: ACCEPT_APPRISK
value: "true"
- name: BROKER_HA_MODE_ENABLED
value: "true"
- name: BROKER_DISPATCHER_BASE_URL
Expand Down Expand Up @@ -356,6 +360,8 @@ HTTPS enabled:
value: "true"
- name: ACCEPT_IAC
value: tf,yaml,yml,json,tpl
- name: ACCEPT_APPRISK
value: "true"
- name: BROKER_DISPATCHER_BASE_URL
value: https://api.test.snyk.io
image: snyk/broker:github-com
Expand Down Expand Up @@ -518,6 +524,8 @@ default values:
value: "true"
- name: ACCEPT_IAC
value: tf,yaml,yml,json,tpl
- name: ACCEPT_APPRISK
value: "true"
- name: BROKER_DISPATCHER_BASE_URL
value: https://api.test.snyk.io
image: snyk/broker:github-com
Expand Down Expand Up @@ -665,6 +673,8 @@ preflight checks off:
value: "true"
- name: ACCEPT_IAC
value: tf,yaml,yml,json,tpl
- name: ACCEPT_APPRISK
value: "true"
- name: PREFLIGHT_CHECKS_ENABLED
value: "false"
- name: BROKER_DISPATCHER_BASE_URL
Expand Down
2 changes: 1 addition & 1 deletion charts/snyk-broker/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ crImage: "latest"

##### AppRisk #####
# Set to 'true' to enable AppRisk
enableAppRisk: ""
enableAppRisk: "true"

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

Expand Down
Loading