Skip to content

Commit

Permalink
chore(gomod): update nginx-operator to v0.13.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nettoclaudio committed Jul 26, 2022
1 parent a595f4c commit 3b7c333
Show file tree
Hide file tree
Showing 10 changed files with 497 additions and 254 deletions.
2 changes: 1 addition & 1 deletion controllers/rpaasinstance_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import (
"sort"
"strconv"

cmv1 "github.com/cert-manager/cert-manager/pkg/apis/certmanager/v1"
"github.com/go-logr/logr"
cmv1 "github.com/jetstack/cert-manager/pkg/apis/certmanager/v1"
nginxv1alpha1 "github.com/tsuru/nginx-operator/api/v1alpha1"
batchv1beta1 "k8s.io/api/batch/v1beta1"
corev1 "k8s.io/api/core/v1"
Expand Down
35 changes: 17 additions & 18 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,46 +4,45 @@ go 1.16

require (
github.com/HdrHistogram/hdrhistogram-go v1.0.0 // indirect
github.com/Masterminds/sprig/v3 v3.1.0
github.com/Masterminds/sprig/v3 v3.2.2
github.com/ajg/form v1.5.1
github.com/cert-manager/cert-manager v1.9.0
github.com/davecgh/go-spew v1.1.1
github.com/evanphx/json-patch/v5 v5.1.0
github.com/fatih/color v1.13.0
github.com/fsnotify/fsnotify v1.5.1
github.com/globocom/echo-prometheus v0.1.2
github.com/go-logr/logr v0.4.0
github.com/go-logr/logr v1.2.2
github.com/google/go-containerregistry v0.8.0
github.com/google/gops v0.3.12
github.com/gorilla/websocket v1.4.2
github.com/hashicorp/go-multierror v1.1.0
github.com/huandu/xstrings v1.3.2 // indirect
github.com/hashicorp/go-multierror v1.1.1
github.com/imdario/mergo v0.3.12
github.com/jetstack/cert-manager v1.4.0
github.com/labstack/echo/v4 v4.6.1
github.com/mitchellh/mapstructure v1.4.3
github.com/olekukonko/tablewriter v0.0.4
github.com/olekukonko/tablewriter v0.0.5
github.com/opentracing-contrib/go-stdlib v1.0.0
github.com/opentracing/opentracing-go v1.2.0
github.com/pkg/errors v0.9.1
github.com/prometheus/client_golang v1.11.0
github.com/prometheus/client_golang v1.12.1
github.com/sirupsen/logrus v1.8.1
github.com/spf13/pflag v1.0.5
github.com/spf13/viper v1.10.0
github.com/stern/stern v1.20.1
github.com/stretchr/testify v1.7.0
github.com/tsuru/nginx-operator v0.12.0
github.com/stretchr/testify v1.7.1
github.com/tsuru/nginx-operator v0.13.1
github.com/uber/jaeger-client-go v2.25.0+incompatible
github.com/uber/jaeger-lib v2.4.0+incompatible // indirect
github.com/urfave/cli/v2 v2.1.1
github.com/urfave/cli/v2 v2.3.0
github.com/willf/bitset v1.1.11
golang.org/x/net v0.0.0-20211216030914-fe4d6282115f
golang.org/x/term v0.0.0-20210503060354-a79de5458b56
k8s.io/api v0.22.0
k8s.io/apimachinery v0.22.0
k8s.io/client-go v0.22.0
k8s.io/kubectl v0.21.0
k8s.io/metrics v0.21.0
sigs.k8s.io/controller-runtime v0.9.6
golang.org/x/net v0.0.0-20220225172249-27dd8689420f
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211
k8s.io/api v0.24.2
k8s.io/apimachinery v0.24.2
k8s.io/client-go v0.24.2
k8s.io/kubectl v0.24.2
k8s.io/metrics v0.24.2
sigs.k8s.io/controller-runtime v0.12.3
sigs.k8s.io/go-open-service-broker-client/v2 v2.0.0-20200925085050-ae25e62aaf10
)

Expand Down
694 changes: 469 additions & 225 deletions go.sum

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions internal/controllers/certificates/cert_manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (
"reflect"
"strings"

cmv1 "github.com/jetstack/cert-manager/pkg/apis/certmanager/v1"
cmmeta "github.com/jetstack/cert-manager/pkg/apis/meta/v1"
cmv1 "github.com/cert-manager/cert-manager/pkg/apis/certmanager/v1"
cmmeta "github.com/cert-manager/cert-manager/pkg/apis/meta/v1"
k8serrors "k8s.io/apimachinery/pkg/api/errors"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
Expand Down
4 changes: 2 additions & 2 deletions internal/controllers/certificates/cert_manager_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
"fmt"
"testing"

cmv1 "github.com/jetstack/cert-manager/pkg/apis/certmanager/v1"
cmmeta "github.com/jetstack/cert-manager/pkg/apis/meta/v1"
cmv1 "github.com/cert-manager/cert-manager/pkg/apis/certmanager/v1"
cmmeta "github.com/cert-manager/cert-manager/pkg/apis/meta/v1"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
corev1 "k8s.io/api/core/v1"
Expand Down
2 changes: 1 addition & 1 deletion internal/controllers/certificates/certificates.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"fmt"
"reflect"

"github.com/jetstack/cert-manager/pkg/util/pki"
"github.com/cert-manager/cert-manager/pkg/util/pki"
nginxv1alpha1 "github.com/tsuru/nginx-operator/api/v1alpha1"
corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
Expand Down
2 changes: 1 addition & 1 deletion internal/pkg/rpaas/certificates.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"fmt"
"strings"

cmv1 "github.com/jetstack/cert-manager/pkg/apis/certmanager/v1"
cmv1 "github.com/cert-manager/cert-manager/pkg/apis/certmanager/v1"
"github.com/tsuru/rpaas-operator/api/v1alpha1"
"github.com/tsuru/rpaas-operator/internal/config"
clientTypes "github.com/tsuru/rpaas-operator/pkg/rpaas/client/types"
Expand Down
2 changes: 1 addition & 1 deletion internal/pkg/rpaas/certificates_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"context"
"testing"

cmv1 "github.com/jetstack/cert-manager/pkg/apis/certmanager/v1"
cmv1 "github.com/cert-manager/cert-manager/pkg/apis/certmanager/v1"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/tsuru/rpaas-operator/api/v1alpha1"
Expand Down
4 changes: 2 additions & 2 deletions internal/pkg/rpaas/k8s.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ import (
"text/template"
"time"

"github.com/cert-manager/cert-manager/pkg/util/pki"
jsonpatch "github.com/evanphx/json-patch/v5"
"github.com/hashicorp/go-multierror"
"github.com/jetstack/cert-manager/pkg/util/pki"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
nginxv1alpha1 "github.com/tsuru/nginx-operator/api/v1alpha1"
Expand Down Expand Up @@ -113,7 +113,7 @@ func keepAliveSpdyExecutor(config *rest.Config, method string, url *url.URL) (re
if err != nil {
return nil, err
}
upgradeRoundTripper := spdy.NewRoundTripper(tlsConfig, true, false)
upgradeRoundTripper := spdy.NewRoundTripper(tlsConfig)
upgradeRoundTripper.Dialer = &net.Dialer{
Timeout: 30 * time.Second,
KeepAlive: 10 * time.Second,
Expand Down
2 changes: 1 addition & 1 deletion pkg/runtime/scheme.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
package runtime

import (
cmv1 "github.com/jetstack/cert-manager/pkg/apis/certmanager/v1"
cmv1 "github.com/cert-manager/cert-manager/pkg/apis/certmanager/v1"
nginxv1alpha1 "github.com/tsuru/nginx-operator/api/v1alpha1"
"k8s.io/apimachinery/pkg/runtime"
utilruntime "k8s.io/apimachinery/pkg/util/runtime"
Expand Down

0 comments on commit 3b7c333

Please sign in to comment.