Skip to content

Commit dde85f8

Browse files
craig[bot]fqazicockroach-teamcity
committed
148840: cli/doctor: handle truncated rows gracefully in zipdir r=fqazi a=fqazi When debug doctor is run on zipdir files which are corrupt / incomplete it can end up crashing. This patch aims to generate a more productive error message if any row does not have enough fields in any file format. Currently this always hits an index out of range error. Fixes: #147722 Release note: None 149218: orchestration: released CockroachDB version v25.2.2. Next version: v25.2.3 r=rail a=cockroach-teamcity Release note: None Epic: None Release justification: non-production (release infra) change. Co-authored-by: Faizan Qazi <[email protected]> Co-authored-by: Justin Beaver <[email protected]>
3 parents 9ab3e4d + a0b4d1b + ade6ac1 commit dde85f8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+446
-25
lines changed

cloud/kubernetes/bring-your-own-certs/client.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ spec:
2020
serviceAccountName: cockroachdb
2121
containers:
2222
- name: cockroachdb-client
23-
image: cockroachdb/cockroach:v25.2.1
23+
image: cockroachdb/cockroach:v25.2.2
2424
# Keep a pod open indefinitely so kubectl exec can be used to get a shell to it
2525
# and run cockroach client commands, such as cockroach sql, cockroach node status, etc.
2626
command:

cloud/kubernetes/bring-your-own-certs/cockroachdb-statefulset.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ spec:
153153
topologyKey: kubernetes.io/hostname
154154
containers:
155155
- name: cockroachdb
156-
image: cockroachdb/cockroach:v25.2.1
156+
image: cockroachdb/cockroach:v25.2.2
157157
imagePullPolicy: IfNotPresent
158158
# TODO: Change these to appropriate values for the hardware that you're running. You can see
159159
# the resources that can be allocated on each of your Kubernetes nodes by running:

cloud/kubernetes/client-secure.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ spec:
3232
mountPath: /cockroach-certs
3333
containers:
3434
- name: cockroachdb-client
35-
image: cockroachdb/cockroach:v25.2.1
35+
image: cockroachdb/cockroach:v25.2.2
3636
imagePullPolicy: IfNotPresent
3737
volumeMounts:
3838
- name: client-certs

cloud/kubernetes/cluster-init-secure.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ spec:
3434
mountPath: /cockroach-certs
3535
containers:
3636
- name: cluster-init
37-
image: cockroachdb/cockroach:v25.2.1
37+
image: cockroachdb/cockroach:v25.2.2
3838
imagePullPolicy: IfNotPresent
3939
volumeMounts:
4040
- name: client-certs

cloud/kubernetes/cluster-init.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ spec:
1010
spec:
1111
containers:
1212
- name: cluster-init
13-
image: cockroachdb/cockroach:v25.2.1
13+
image: cockroachdb/cockroach:v25.2.2
1414
imagePullPolicy: IfNotPresent
1515
command:
1616
- "/cockroach/cockroach"

cloud/kubernetes/cockroachdb-statefulset-secure.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ spec:
195195
topologyKey: kubernetes.io/hostname
196196
containers:
197197
- name: cockroachdb
198-
image: cockroachdb/cockroach:v25.2.1
198+
image: cockroachdb/cockroach:v25.2.2
199199
imagePullPolicy: IfNotPresent
200200
# TODO: Change these to appropriate values for the hardware that you're running. You can see
201201
# the resources that can be allocated on each of your Kubernetes nodes by running:

cloud/kubernetes/cockroachdb-statefulset.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ spec:
9898
topologyKey: kubernetes.io/hostname
9999
containers:
100100
- name: cockroachdb
101-
image: cockroachdb/cockroach:v25.2.1
101+
image: cockroachdb/cockroach:v25.2.2
102102
imagePullPolicy: IfNotPresent
103103
# TODO: Change these to appropriate values for the hardware that you're running. You can see
104104
# the resources that can be allocated on each of your Kubernetes nodes by running:

cloud/kubernetes/multiregion/client-secure.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ spec:
99
serviceAccountName: cockroachdb
1010
containers:
1111
- name: cockroachdb-client
12-
image: cockroachdb/cockroach:v25.2.1
12+
image: cockroachdb/cockroach:v25.2.2
1313
imagePullPolicy: IfNotPresent
1414
volumeMounts:
1515
- name: client-certs

cloud/kubernetes/multiregion/cluster-init-secure.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ spec:
1111
serviceAccountName: cockroachdb
1212
containers:
1313
- name: cluster-init
14-
image: cockroachdb/cockroach:v25.2.1
14+
image: cockroachdb/cockroach:v25.2.2
1515
imagePullPolicy: IfNotPresent
1616
volumeMounts:
1717
- name: client-certs

cloud/kubernetes/multiregion/cockroachdb-statefulset-secure.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ spec:
167167
topologyKey: kubernetes.io/hostname
168168
containers:
169169
- name: cockroachdb
170-
image: cockroachdb/cockroach:v25.2.1
170+
image: cockroachdb/cockroach:v25.2.2
171171
imagePullPolicy: IfNotPresent
172172
ports:
173173
- containerPort: 26257

0 commit comments

Comments
 (0)