Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ metadata:
name: my-first-etcd-cluster
spec:
replicas: 3
version: 3.2.28
version: 3.2.30
```

## Further Reading
Expand Down
2 changes: 1 addition & 1 deletion config/samples/etcd_v1alpha1_etcdcluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ metadata:
name: my-cluster
spec:
replicas: 3
version: 3.2.28
version: 3.2.30
storage:
volumeClaimTemplate:
storageClassName: standard
Expand Down
2 changes: 1 addition & 1 deletion config/samples/etcd_v1alpha1_etcdpeer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ metadata:
name: etcdpeer-sample
spec:
clusterName: bees
version: 3.2.28
version: 3.2.30
storage:
volumeClaimTemplate:
storageClassName: standard
Expand Down
2 changes: 1 addition & 1 deletion config/samples/etcd_v1alpha1_etcdrestore.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ spec:
clusterName: my-cluster
spec:
replicas: 3
version: 3.2.28
version: 3.2.30
storage:
volumeClaimTemplate:
storageClassName: standard
Expand Down
2 changes: 1 addition & 1 deletion config/test/e2e/defaulting/etcdcluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ metadata:
name: e2e-defaulting-cluster
spec:
replicas: 1
version: 3.2.28
version: 3.2.30
storage:
volumeClaimTemplate:
storageClassName: standard
Expand Down
2 changes: 1 addition & 1 deletion config/test/e2e/defaulting/etcdpeer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ metadata:
name: e2e-defaulting-peer
spec:
clusterName: e2e-defaulting-peer
version: 3.2.28
version: 3.2.30
storage:
volumeClaimTemplate:
resources:
Expand Down
2 changes: 1 addition & 1 deletion config/test/e2e/persistence/cluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ metadata:
name: cluster1
spec:
replicas: 1
version: 3.2.28
version: 3.2.30
storage:
volumeClaimTemplate:
storageClassName: standard
Expand Down
2 changes: 1 addition & 1 deletion config/test/e2e/restore/etcdrestore.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ spec:
clusterName: restored-cluster
spec:
replicas: 3
version: 3.2.28
version: 3.2.30
storage:
volumeClaimTemplate:
storageClassName: standard
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ kind: EtcdCluster
metadata:
name: e2e-defaulting-cluster
spec:
version: 3.2.28
version: 3.2.30
replicas: 1
storage:
volumeClaimTemplate:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ metadata:
name: e2e-defaulting-peer
spec:
clusterName: e2e-defaulting-peer
version: 3.2.28
version: 3.2.30
storage:
volumeClaimTemplate:
resources:
Expand Down
2 changes: 1 addition & 1 deletion controllers/etcdpeer_controller_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ func (s *controllerSuite) testPeerController(t *testing.T) {
})

t.Run("ReportsExpectedVersion", func(t *testing.T) {
expectedVersion := semver.Must(semver.NewVersion("3.2.28"))
expectedVersion := semver.Must(semver.NewVersion("3.2.30"))
staticAPI := fakeEtcdForEtcdPeer(*etcdPeer)
staticAPI.ServerVersion = expectedVersion.String()
etcdAPI.Wrap(staticAPI)
Expand Down
2 changes: 1 addition & 1 deletion docs/operations.md
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ spec:
clusterName: my-cluster
spec:
replicas: 3
version: 3.2.28
version: 3.2.30
storage:
volumeClaimTemplate:
storageClassName: standard
Expand Down
4 changes: 2 additions & 2 deletions internal/test/examples.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ func ExampleEtcdCluster(namespace string) *etcdv1alpha1.EtcdCluster {
},
Spec: etcdv1alpha1.EtcdClusterSpec{
Replicas: pointer.Int32Ptr(3),
Version: "3.2.28",
Version: "3.2.30",
Storage: &etcdv1alpha1.EtcdPeerStorage{
VolumeClaimTemplate: &corev1.PersistentVolumeClaimSpec{
StorageClassName: pointer.StringPtr("standard"),
Expand Down Expand Up @@ -62,7 +62,7 @@ func ExampleEtcdPeer(namespace string) *etcdv1alpha1.EtcdPeer {
},
Spec: etcdv1alpha1.EtcdPeerSpec{
ClusterName: "my-cluster",
Version: "3.2.28",
Version: "3.2.30",
Bootstrap: &etcdv1alpha1.Bootstrap{
Static: &etcdv1alpha1.StaticBootstrap{
InitialCluster: []etcdv1alpha1.InitialClusterMember{
Expand Down