You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+44-4Lines changed: 44 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ To set the image pull secret, you need to create a custom values.yaml file that
16
16
1.**Direct Image Pull Secrets**: If you have a direct image pull secret (a base64 encoded JSON containing Docker auth config), you can set it directly in the values.yaml file under either of these keys
export CLIENT_ID=vaas # default client id for self-hosted vaas
108
108
export CLIENT_SECRET=$(kubectl get secret -n vaas vaas-client-secret -o jsonpath="{.data.secret}"| base64 -d)# extracts the client secret from the k8s secret
109
109
export SCAN_PATH=./build.gradle # path to the file you want to scan
110
-
export VAAS_URL=ws://vaas/ws# URL of the VaaS instance you set earlier in your /etc/hosts
110
+
export VAAS_URL=http://vaas # URL of the VaaS instance you set earlier in your /etc/hosts
111
111
export TOKEN_URL=http://vaas/auth/protocol/openid-connect/token # URL of the token endpoint you set earlier in your /etc/hosts
112
112
```
113
113
114
+
Alternatively, if you are using an SDK version that still supports websockets, you have to set another host for the VAAS_URL:
115
+
116
+
```bash
117
+
export VAAS_URL=ws://vaas/ws # URL of the VaaS instance you set earlier in your /etc/hosts
118
+
```
119
+
114
120
* Execute FileScan example in Java SDK example folder
115
121
116
122
```bash
@@ -202,8 +208,10 @@ In addition, Sentry will always behave as follows:
0 commit comments