Skip to content

Commit a632039

Browse files
committed
fix: more visibility for containers and workers
1 parent 01de759 commit a632039

2 files changed

Lines changed: 14 additions & 1 deletion

File tree

scripts/deploy.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,9 @@ interface WranglerConfig {
4848
disk_mb?: number;
4949
} | string;
5050
rollout_step_percentage?: number;
51+
ssh?: {
52+
enabled: boolean;
53+
};
5154
}>;
5255
d1_databases?: Array<{
5356
binding: string;

wrangler.jsonc

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,13 @@
2121
"observability": {
2222
"enabled": true,
2323
"head_sampling_rate": 1,
24+
"logs": {
25+
"enabled": true,
26+
"invocation_logs": true
27+
},
28+
"traces": {
29+
"enabled": true
30+
}
2431
},
2532
"unsafe": {
2633
"bindings": [
@@ -68,7 +75,10 @@
6875
"memory_mib": 8192,
6976
"disk_mb": 10240
7077
},
71-
"rollout_step_percentage": 100
78+
"rollout_step_percentage": 100,
79+
"ssh": {
80+
"enabled": true
81+
}
7282
}
7383
],
7484
"d1_databases": [

0 commit comments

Comments
 (0)