@rallycry/conveyor-agent 10.13.58 → 10.13.59
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{chunk-HYP7BK2B.js → chunk-JCRP6K6T.js} +20 -4
- package/dist/chunk-JCRP6K6T.js.map +1 -0
- package/dist/cli.js +172 -8
- package/dist/cli.js.map +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-HYP7BK2B.js.map +0 -1
|
@@ -3301,6 +3301,10 @@ var FIREBASE_EMULATOR_COMMAND = [
|
|
|
3301
3301
|
EOF
|
|
3302
3302
|
exec firebase emulators:start --only=auth --project=rally-cry-dev`
|
|
3303
3303
|
];
|
|
3304
|
+
var FIREBASE_EMULATOR_ENV = {
|
|
3305
|
+
METADATA_SERVER_DETECTION: "none",
|
|
3306
|
+
GOOGLE_APPLICATION_CREDENTIALS: "/dev/null"
|
|
3307
|
+
};
|
|
3304
3308
|
var CATALOG = {
|
|
3305
3309
|
postgresql: {
|
|
3306
3310
|
name: "postgresql",
|
|
@@ -3386,6 +3390,10 @@ var CATALOG = {
|
|
|
3386
3390
|
requests: { cpuMillicores: 25, memoryMi: 32, ephemeralMi: 256 },
|
|
3387
3391
|
limits: { cpuMillicores: 50, memoryMi: 64, ephemeralMi: 256 }
|
|
3388
3392
|
},
|
|
3393
|
+
connectionEnv: {
|
|
3394
|
+
REDIS_URL: "redis://redis:6379",
|
|
3395
|
+
AUTH_REDIS_URL: "redis://redis:6379"
|
|
3396
|
+
},
|
|
3389
3397
|
statefulBake: false,
|
|
3390
3398
|
// Redis holds no baked state, so the bake runs the stock image CMD.
|
|
3391
3399
|
bake: {},
|
|
@@ -3431,6 +3439,9 @@ var CATALOG = {
|
|
|
3431
3439
|
requests: { cpuMillicores: 500, memoryMi: 1024, ephemeralMi: 256 },
|
|
3432
3440
|
limits: { cpuMillicores: 2e3, memoryMi: 1024, ephemeralMi: 256 }
|
|
3433
3441
|
},
|
|
3442
|
+
connectionEnv: {
|
|
3443
|
+
ELASTICSEARCH_URL: "http://elasticsearch:9200"
|
|
3444
|
+
},
|
|
3434
3445
|
statefulBake: true,
|
|
3435
3446
|
bake: {
|
|
3436
3447
|
// No lock-clearing command at bake time: the bake starts from the stock
|
|
@@ -3500,8 +3511,7 @@ var CATALOG = {
|
|
|
3500
3511
|
// for this container only: google-auth-library skips metadata detection
|
|
3501
3512
|
// and finds no key file, firebase-tools logs "not authenticated" and
|
|
3502
3513
|
// starts the emulator immediately. The agent container keeps its WI.
|
|
3503
|
-
|
|
3504
|
-
GOOGLE_APPLICATION_CREDENTIALS: "/dev/null"
|
|
3514
|
+
...FIREBASE_EMULATOR_ENV
|
|
3505
3515
|
},
|
|
3506
3516
|
resources: {
|
|
3507
3517
|
requests: { cpuMillicores: 100, memoryMi: 256, ephemeralMi: 256 },
|
|
@@ -3523,8 +3533,12 @@ var CATALOG = {
|
|
|
3523
3533
|
// The emulator writes its config at startup, so the bake needs the same
|
|
3524
3534
|
// inline command the runtime uses.
|
|
3525
3535
|
command: FIREBASE_EMULATOR_COMMAND,
|
|
3536
|
+
environment: FIREBASE_EMULATOR_ENV,
|
|
3526
3537
|
healthcheck: {
|
|
3527
|
-
test: [
|
|
3538
|
+
test: [
|
|
3539
|
+
"CMD-SHELL",
|
|
3540
|
+
`node -e "fetch('http://localhost:9099/').then((response) => process.exit(response.ok ? 0 : 1)).catch(() => process.exit(1))"`
|
|
3541
|
+
],
|
|
3528
3542
|
intervalSec: 3,
|
|
3529
3543
|
timeoutSec: 5,
|
|
3530
3544
|
retries: 20
|
|
@@ -16398,6 +16412,8 @@ export {
|
|
|
16398
16412
|
PtyHarness,
|
|
16399
16413
|
resolveTuiKindFromEnv,
|
|
16400
16414
|
resolveTuiAdapter,
|
|
16415
|
+
readWorkspaceBytes,
|
|
16416
|
+
statWorkspacePath,
|
|
16401
16417
|
workspacePathExists,
|
|
16402
16418
|
GIT_TIMEOUT_MS,
|
|
16403
16419
|
hasUncommittedChanges,
|
|
@@ -16422,4 +16438,4 @@ export {
|
|
|
16422
16438
|
loadConveyorConfig,
|
|
16423
16439
|
unshallowRepo
|
|
16424
16440
|
};
|
|
16425
|
-
//# sourceMappingURL=chunk-
|
|
16441
|
+
//# sourceMappingURL=chunk-JCRP6K6T.js.map
|