Skip to content

Commit 1102200

Browse files
committed
use env variables
1 parent ab27919 commit 1102200

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

performance-testing/uid2-operator/k6-token-generate-refresh-identitymap-keysharing.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ import { check } from 'k6';
55
import http from 'k6/http';
66

77
const vus = 300;
8-
const baseUrl = "https://integ.euid.eu";
9-
const clientSecret = "";
10-
const clientKey = "";
8+
const baseUrl = $OPERATOR_URL;
9+
const clientSecret = $CLIENT_SECRET;
10+
const clientKey = $CLIENT_KEY;
1111

1212
const generateVUs = vus;
1313
const refreshVUs = vus;

performance-testing/uid2-operator/k6-token-generate-refresh-identitymap.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ import { check } from 'k6';
55
import http from 'k6/http';
66

77
const vus = 50;
8-
const baseUrl = "https://integ.euid.eu";
9-
const clientSecret = "";
10-
const clientKey = "";
8+
const baseUrl = $OPERATOR_URL;
9+
const clientSecret = $CLIENT_SECRET;
10+
const clientKey = $CLIENT_KEY;
1111

1212
const generateVUs = vus;
1313
const refreshVUs = vus;

performance-testing/uid2-operator/k6-token-generate.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ import { check } from 'k6';
55
import http from 'k6/http';
66

77
const vus = 500;
8-
const baseUrl = "https://integ.euid.eu";
9-
const clientSecret = "";
10-
const clientKey = "";
8+
const baseUrl = $OPERATOR_URL;
9+
const clientSecret = $CLIENT_SECRET;
10+
const clientKey = $CLIENT_KEY;
1111

1212
const generateVUs = vus;
1313
const refreshVUs = vus;

0 commit comments

Comments
 (0)