File tree 6 files changed +9
-15
lines changed
6 files changed +9
-15
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,6 @@ require (
12
12
github.com/sirupsen/logrus v1.9.3
13
13
github.com/stretchr/testify v1.9.0
14
14
golang.org/x/crypto v0.31.0
15
- golang.org/x/exp v0.0.0-20240112132812-db7319d0e0e3
16
15
gopkg.in/yaml.v2 v2.4.0
17
16
k8s.io/api v0.30.4
18
17
k8s.io/apiextensions-apiserver v0.25.9
Original file line number Diff line number Diff line change @@ -121,8 +121,6 @@ golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8U
121
121
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 /go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto =
122
122
golang.org/x/crypto v0.31.0 h1:ihbySMvVjLAeSH1IbfcRTkD/iNscyz8rGzjF/E5hV6U =
123
123
golang.org/x/crypto v0.31.0 /go.mod h1:kDsLvtWBEx7MV9tJOj9bnXsPbxwJQ6csT/x4KIN4Ssk =
124
- golang.org/x/exp v0.0.0-20240112132812-db7319d0e0e3 h1:hNQpMuAJe5CtcUqCXaWga3FHu+kQvCqcsoVaQgSV60o =
125
- golang.org/x/exp v0.0.0-20240112132812-db7319d0e0e3 /go.mod h1:idGWGoKP1toJGkd5/ig9ZLuPcZBC3ewk7SzmH0uou08 =
126
124
golang.org/x/mod v0.2.0 /go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA =
127
125
golang.org/x/mod v0.3.0 /go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA =
128
126
golang.org/x/mod v0.4.2 /go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA =
Original file line number Diff line number Diff line change @@ -4,27 +4,26 @@ import (
4
4
"context"
5
5
"encoding/json"
6
6
"fmt"
7
+ "maps"
7
8
"path"
9
+ "slices"
8
10
"sort"
9
11
"strings"
10
12
11
13
"github.com/pkg/errors"
12
14
"github.com/sirupsen/logrus"
13
15
14
16
appsv1 "k8s.io/api/apps/v1"
17
+ batchv1 "k8s.io/api/batch/v1"
15
18
v1 "k8s.io/api/core/v1"
16
19
policyv1 "k8s.io/api/policy/v1"
17
20
apierrors "k8s.io/apimachinery/pkg/api/errors"
18
21
"k8s.io/apimachinery/pkg/api/resource"
19
22
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
23
+ "k8s.io/apimachinery/pkg/labels"
20
24
"k8s.io/apimachinery/pkg/types"
21
25
"k8s.io/apimachinery/pkg/util/intstr"
22
26
23
- "golang.org/x/exp/maps"
24
- "golang.org/x/exp/slices"
25
- batchv1 "k8s.io/api/batch/v1"
26
- "k8s.io/apimachinery/pkg/labels"
27
-
28
27
acidv1 "github.com/zalando/postgres-operator/pkg/apis/acid.zalan.do/v1"
29
28
"github.com/zalando/postgres-operator/pkg/spec"
30
29
"github.com/zalando/postgres-operator/pkg/util"
Original file line number Diff line number Diff line change @@ -3,12 +3,11 @@ package cluster
3
3
import (
4
4
"context"
5
5
"fmt"
6
+ "slices"
6
7
"sort"
7
8
"strconv"
8
9
"time"
9
10
10
- "golang.org/x/exp/slices"
11
-
12
11
appsv1 "k8s.io/api/apps/v1"
13
12
v1 "k8s.io/api/core/v1"
14
13
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
Original file line number Diff line number Diff line change @@ -4,8 +4,10 @@ import (
4
4
"context"
5
5
"encoding/json"
6
6
"fmt"
7
+ "maps"
7
8
"reflect"
8
9
"regexp"
10
+ "slices"
9
11
"strconv"
10
12
"strings"
11
13
"time"
@@ -15,8 +17,6 @@ import (
15
17
"github.com/zalando/postgres-operator/pkg/util"
16
18
"github.com/zalando/postgres-operator/pkg/util/constants"
17
19
"github.com/zalando/postgres-operator/pkg/util/k8sutil"
18
- "golang.org/x/exp/maps"
19
- "golang.org/x/exp/slices"
20
20
batchv1 "k8s.io/api/batch/v1"
21
21
v1 "k8s.io/api/core/v1"
22
22
policyv1 "k8s.io/api/policy/v1"
Original file line number Diff line number Diff line change @@ -2,15 +2,14 @@ package cluster
2
2
3
3
import (
4
4
"bytes"
5
+ "context"
5
6
"fmt"
6
7
"io"
7
8
"net/http"
9
+ "slices"
8
10
"testing"
9
11
"time"
10
12
11
- "context"
12
-
13
- "golang.org/x/exp/slices"
14
13
v1 "k8s.io/api/core/v1"
15
14
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
16
15
"k8s.io/apimachinery/pkg/types"
You can’t perform that action at this time.
0 commit comments