File tree 3 files changed +4
-2
lines changed
deploy/helm/zookeeper-operator/crds
3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ All notable changes to this project will be documented in this file.
8
8
9
9
- Generate OLM bundle for Release 23.4.0 ([ #672 ] ).
10
10
- Expose ` ZOOKEEPER_CLIENT_PORT ` in discovery CM ([ #675 ] , [ #676 ] ).
11
+ - Missing CRD defaults for ` status.conditions ` field ([ #682 ] ).
11
12
12
13
### Changed
13
14
@@ -22,6 +23,7 @@ All notable changes to this project will be documented in this file.
22
23
[ #675 ] : https://github.com/stackabletech/zookeeper-operator/pull/675
23
24
[ #676 ] : https://github.com/stackabletech/zookeeper-operator/pull/676
24
25
[ #680 ] : https://github.com/stackabletech/zookeeper-operator/pull/680
26
+ [ #682 ] : https://github.com/stackabletech/zookeeper-operator/pull/682
25
27
26
28
## [ 23.4.0] - 2023-04-17
27
29
Original file line number Diff line number Diff line change @@ -1559,6 +1559,7 @@ spec:
1559
1559
nullable : true
1560
1560
properties :
1561
1561
conditions :
1562
+ default : []
1562
1563
items :
1563
1564
properties :
1564
1565
lastTransitionTime :
@@ -1604,8 +1605,6 @@ spec:
1604
1605
description : An opaque value that changes every time a discovery detail does
1605
1606
nullable : true
1606
1607
type : string
1607
- required :
1608
- - conditions
1609
1608
type : object
1610
1609
required :
1611
1610
- spec
Original file line number Diff line number Diff line change @@ -380,6 +380,7 @@ pub struct ZookeeperClusterStatus {
380
380
/// An opaque value that changes every time a discovery detail does
381
381
#[ serde( default , skip_serializing_if = "Option::is_none" ) ]
382
382
pub discovery_hash : Option < String > ,
383
+ #[ serde( default ) ]
383
384
pub conditions : Vec < ClusterCondition > ,
384
385
}
385
386
You can’t perform that action at this time.
0 commit comments