forked from kubeflow/spark-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bgd 5677 spark operator security patching (#25)
* update libraries to fix security vulnerabilities * migrate to leasesresourcelock
- Loading branch information
1 parent
5c6733c
commit 91653f6
Showing
8 changed files
with
2,003 additions
and
132 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,136 +1,193 @@ | ||
module github.com/GoogleCloudPlatform/spark-on-k8s-operator | ||
|
||
go 1.20 | ||
go 1.22.5 | ||
|
||
require ( | ||
cloud.google.com/go/storage v1.10.0 | ||
cloud.google.com/go/storage v1.35.1 | ||
github.com/aws/aws-sdk-go v1.38.49 | ||
github.com/evanphx/json-patch v4.12.0+incompatible | ||
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b | ||
github.com/golang/glog v1.2.1 | ||
github.com/google/go-cloud v0.1.1 | ||
github.com/google/uuid v1.1.2 | ||
github.com/olekukonko/tablewriter v0.0.4 | ||
github.com/google/uuid v1.6.0 | ||
github.com/olekukonko/tablewriter v0.0.5 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/prometheus/client_golang v1.12.1 | ||
github.com/prometheus/client_model v0.2.0 | ||
github.com/prometheus/client_golang v1.19.1 | ||
github.com/prometheus/client_model v0.6.1 | ||
github.com/robfig/cron v1.2.0 | ||
github.com/spf13/cobra v1.4.0 | ||
github.com/stretchr/testify v1.8.0 | ||
golang.org/x/net v0.0.0-20220722155237-a158d28d115b | ||
golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4 | ||
golang.org/x/time v0.0.0-20220210224613-90d013bbcef8 | ||
k8s.io/api v0.25.3 | ||
k8s.io/apiextensions-apiserver v0.25.3 | ||
k8s.io/apimachinery v0.25.3 | ||
k8s.io/client-go v0.25.3 | ||
k8s.io/kubectl v0.25.3 | ||
k8s.io/kubernetes v1.25.3 | ||
k8s.io/utils v0.0.0-20221012122500-cfd413dd9e85 | ||
volcano.sh/volcano v1.1.0 | ||
github.com/spf13/cobra v1.8.1 | ||
github.com/stretchr/testify v1.9.0 | ||
golang.org/x/net v0.28.0 | ||
golang.org/x/sync v0.8.0 | ||
golang.org/x/time v0.6.0 | ||
k8s.io/api v0.30.3 | ||
k8s.io/apiextensions-apiserver v0.30.3 | ||
k8s.io/apimachinery v0.30.3 | ||
k8s.io/client-go v1.5.2 | ||
k8s.io/kubectl v0.30.3 | ||
k8s.io/kubernetes v1.30.3 | ||
k8s.io/utils v0.0.0-20240711033017-18e509b52bc8 | ||
volcano.sh/apis v1.10.0-alpha.0 | ||
) | ||
|
||
require ( | ||
cloud.google.com/go v0.97.0 // indirect | ||
github.com/Azure/go-autorest v14.2.0+incompatible // indirect | ||
github.com/Azure/go-autorest/autorest v0.11.27 // indirect | ||
github.com/Azure/go-autorest/autorest/adal v0.9.20 // indirect | ||
github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect | ||
github.com/Azure/go-autorest/logger v0.2.1 // indirect | ||
github.com/Azure/go-autorest/tracing v0.6.0 // indirect | ||
github.com/PuerkitoBio/purell v1.1.1 // indirect | ||
github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect | ||
cloud.google.com/go v0.110.10 // indirect | ||
cloud.google.com/go/compute/metadata v0.3.0 // indirect | ||
cloud.google.com/go/iam v1.1.5 // indirect | ||
github.com/AdaLogics/go-fuzz-headers v0.0.0-20230811130428-ced1acdcaa24 // indirect | ||
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect | ||
github.com/OneOfOne/xxhash v1.2.8 // indirect | ||
github.com/agnivade/levenshtein v1.1.1 // indirect | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/cespare/xxhash/v2 v2.1.2 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/elazarl/goproxy v0.0.0-20200421181703-e76ad31c14f6 // indirect | ||
github.com/emicklei/go-restful/v3 v3.8.0 // indirect | ||
github.com/bytecodealliance/wasmtime-go/v3 v3.0.2 // indirect | ||
github.com/cenkalti/backoff/v4 v4.3.0 // indirect | ||
github.com/cespare/xxhash v1.1.0 // indirect | ||
github.com/cespare/xxhash/v2 v2.3.0 // indirect | ||
github.com/containerd/containerd v1.7.20 // indirect | ||
github.com/containerd/errdefs v0.1.0 // indirect | ||
github.com/containerd/log v0.1.0 // indirect | ||
github.com/containerd/platforms v0.2.1 // indirect | ||
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect | ||
github.com/dgraph-io/badger/v3 v3.2103.5 // indirect | ||
github.com/dgraph-io/ristretto v0.1.1 // indirect | ||
github.com/dustin/go-humanize v1.0.1 // indirect | ||
github.com/emicklei/go-restful/v3 v3.11.0 // indirect | ||
github.com/fatih/camelcase v1.0.0 // indirect | ||
github.com/go-errors/errors v1.0.1 // indirect | ||
github.com/go-logr/logr v1.2.3 // indirect | ||
github.com/go-openapi/jsonpointer v0.19.5 // indirect | ||
github.com/go-openapi/jsonreference v0.19.5 // indirect | ||
github.com/go-openapi/swag v0.19.14 // indirect | ||
github.com/felixge/httpsnoop v1.0.4 // indirect | ||
github.com/fsnotify/fsnotify v1.7.0 // indirect | ||
github.com/go-errors/errors v1.4.2 // indirect | ||
github.com/go-ini/ini v1.67.0 // indirect | ||
github.com/go-logr/logr v1.4.2 // indirect | ||
github.com/go-logr/stdr v1.2.2 // indirect | ||
github.com/go-openapi/jsonpointer v0.19.6 // indirect | ||
github.com/go-openapi/jsonreference v0.20.2 // indirect | ||
github.com/go-openapi/swag v0.22.3 // indirect | ||
github.com/gobwas/glob v0.2.3 // indirect | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/golang-jwt/jwt/v4 v4.2.0 // indirect | ||
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/golang/protobuf v1.5.4 // indirect | ||
github.com/golang/snappy v0.0.4 // indirect | ||
github.com/google/btree v1.0.1 // indirect | ||
github.com/google/gnostic v0.5.7-v3refs // indirect | ||
github.com/google/go-cmp v0.5.8 // indirect | ||
github.com/google/gofuzz v1.1.0 // indirect | ||
github.com/google/flatbuffers v1.12.1 // indirect | ||
github.com/google/gnostic-models v0.6.8 // indirect | ||
github.com/google/go-cmp v0.6.0 // indirect | ||
github.com/google/gofuzz v1.2.0 // indirect | ||
github.com/google/s2a-go v0.1.7 // indirect | ||
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect | ||
github.com/googleapis/gax-go/v2 v2.1.1 // indirect | ||
github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect | ||
github.com/googleapis/gax-go/v2 v2.12.0 // indirect | ||
github.com/gorilla/mux v1.8.1 // indirect | ||
github.com/gregjones/httpcache v0.0.0-20190212212710-3befbb6ad0cc // indirect | ||
github.com/imdario/mergo v0.3.7 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.0 // indirect | ||
github.com/grpc-ecosystem/grpc-gateway/v2 v2.20.0 // indirect | ||
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/imdario/mergo v0.3.12 // indirect | ||
github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||
github.com/jmespath/go-jmespath v0.4.0 // indirect | ||
github.com/josharian/intern v1.0.0 // indirect | ||
github.com/json-iterator/go v1.1.12 // indirect | ||
github.com/klauspost/compress v1.17.0 // indirect | ||
github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de // indirect | ||
github.com/mailru/easyjson v0.7.6 // indirect | ||
github.com/mattn/go-runewidth v0.0.7 // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect | ||
github.com/magiconair/properties v1.8.7 // indirect | ||
github.com/mailru/easyjson v0.7.7 // indirect | ||
github.com/mattn/go-runewidth v0.0.9 // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect | ||
github.com/mitchellh/mapstructure v1.5.0 // indirect | ||
github.com/moby/locker v1.0.1 // indirect | ||
github.com/moby/spdystream v0.2.0 // indirect | ||
github.com/moby/term v0.0.0-20221205130635-1aeaba878587 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.2 // indirect | ||
github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 // indirect | ||
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect | ||
github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f // indirect | ||
github.com/open-policy-agent/opa v0.67.1 // indirect | ||
github.com/opencontainers/go-digest v1.0.0 // indirect | ||
github.com/opencontainers/image-spec v1.1.0 // indirect | ||
github.com/pelletier/go-toml/v2 v2.1.0 // indirect | ||
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/prometheus/common v0.32.1 // indirect | ||
github.com/prometheus/procfs v0.7.3 // indirect | ||
github.com/peterh/liner v1.2.2 // indirect | ||
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect | ||
github.com/prometheus/common v0.48.0 // indirect | ||
github.com/prometheus/procfs v0.12.0 // indirect | ||
github.com/rcrowley/go-metrics v0.0.0-20200313005456-10cdbea86bc0 // indirect | ||
github.com/sagikazarmark/locafero v0.4.0 // indirect | ||
github.com/sagikazarmark/slog-shim v0.1.0 // indirect | ||
github.com/sergi/go-diff v1.3.1 // indirect | ||
github.com/sirupsen/logrus v1.9.3 // indirect | ||
github.com/sourcegraph/conc v0.3.0 // indirect | ||
github.com/spf13/afero v1.11.0 // indirect | ||
github.com/spf13/cast v1.6.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/xlab/treeprint v1.1.0 // indirect | ||
go.opencensus.io v0.23.0 // indirect | ||
go.starlark.net v0.0.0-20200306205701-8dd3e2ee1dd5 // indirect | ||
golang.org/x/crypto v0.0.0-20220315160706-3147a52a75dd // indirect | ||
golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 // indirect | ||
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f // indirect | ||
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect | ||
google.golang.org/api v0.60.0 // indirect | ||
github.com/spf13/viper v1.18.2 // indirect | ||
github.com/subosito/gotenv v1.6.0 // indirect | ||
github.com/tchap/go-patricia/v2 v2.3.1 // indirect | ||
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect | ||
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect | ||
github.com/xlab/treeprint v1.2.0 // indirect | ||
github.com/yashtewari/glob-intersection v0.2.0 // indirect | ||
go.opencensus.io v0.24.0 // indirect | ||
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.53.0 // indirect | ||
go.opentelemetry.io/otel v1.28.0 // indirect | ||
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.28.0 // indirect | ||
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.28.0 // indirect | ||
go.opentelemetry.io/otel/metric v1.28.0 // indirect | ||
go.opentelemetry.io/otel/sdk v1.28.0 // indirect | ||
go.opentelemetry.io/otel/trace v1.28.0 // indirect | ||
go.opentelemetry.io/proto/otlp v1.3.1 // indirect | ||
go.starlark.net v0.0.0-20230525235612-a134d8f9ddca // indirect | ||
go.uber.org/automaxprocs v1.5.3 // indirect | ||
go.uber.org/multierr v1.11.0 // indirect | ||
golang.org/x/crypto v0.26.0 // indirect | ||
golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect | ||
golang.org/x/oauth2 v0.20.0 // indirect | ||
golang.org/x/sys v0.23.0 // indirect | ||
golang.org/x/term v0.23.0 // indirect | ||
golang.org/x/text v0.17.0 // indirect | ||
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect | ||
google.golang.org/api v0.153.0 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/genproto v0.0.0-20220502173005-c8bf987b8c21 // indirect | ||
google.golang.org/grpc v1.47.0 // indirect | ||
google.golang.org/protobuf v1.28.0 // indirect | ||
google.golang.org/genproto v0.0.0-20231211222908-989df2bf70f3 // indirect | ||
google.golang.org/genproto/googleapis/api v0.0.0-20240701130421-f6361c86f094 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20240701130421-f6361c86f094 // indirect | ||
google.golang.org/grpc v1.65.0 // indirect | ||
google.golang.org/protobuf v1.34.2 // indirect | ||
gopkg.in/inf.v0 v0.9.1 // indirect | ||
gopkg.in/ini.v1 v1.67.0 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
k8s.io/cli-runtime v0.25.3 // indirect | ||
k8s.io/klog/v2 v2.80.1 // indirect | ||
k8s.io/kube-openapi v0.0.0-20220803162953-67bda5d908f1 // indirect | ||
sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 // indirect | ||
sigs.k8s.io/kustomize/api v0.12.1 // indirect | ||
sigs.k8s.io/kustomize/kyaml v0.13.9 // indirect | ||
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect | ||
sigs.k8s.io/yaml v1.2.0 // indirect | ||
k8s.io/cli-runtime v0.30.3 // indirect | ||
k8s.io/klog/v2 v2.120.1 // indirect | ||
k8s.io/kube-openapi v0.0.0-20240228011516-70dd3763d340 // indirect | ||
oras.land/oras-go/v2 v2.3.1 // indirect | ||
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect | ||
sigs.k8s.io/kustomize/api v0.13.5-0.20230601165947-6ce0bf390ce3 // indirect | ||
sigs.k8s.io/kustomize/kyaml v0.14.3-0.20230601165947-6ce0bf390ce3 // indirect | ||
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect | ||
sigs.k8s.io/yaml v1.4.0 // indirect | ||
) | ||
|
||
replace ( | ||
k8s.io/api => k8s.io/api v0.25.3 | ||
k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.25.3 | ||
k8s.io/apimachinery => k8s.io/apimachinery v0.25.3 | ||
k8s.io/apiserver => k8s.io/apiserver v0.25.3 | ||
k8s.io/cli-runtime => k8s.io/cli-runtime v0.25.3 | ||
k8s.io/client-go => k8s.io/client-go v0.25.3 | ||
k8s.io/cloud-provider => k8s.io/cloud-provider v0.25.3 | ||
k8s.io/cluster-bootstrap => k8s.io/cluster-bootstrap v0.25.3 | ||
k8s.io/code-generator => k8s.io/code-generator v0.25.3 | ||
k8s.io/component-base => k8s.io/component-base v0.25.3 | ||
k8s.io/cri-api => k8s.io/cri-api v0.25.3 | ||
k8s.io/csi-translation-lib => k8s.io/csi-translation-lib v0.25.3 | ||
k8s.io/kube-aggregator => k8s.io/kube-aggregator v0.25.3 | ||
k8s.io/kube-controller-manager => k8s.io/kube-controller-manager v0.25.3 | ||
k8s.io/kube-proxy => k8s.io/kube-proxy v0.25.3 | ||
k8s.io/kube-scheduler => k8s.io/kube-scheduler v0.25.3 | ||
k8s.io/kubectl => k8s.io/kubectl v0.25.3 | ||
k8s.io/kubelet => k8s.io/kubelet v0.25.3 | ||
k8s.io/kubernetes => k8s.io/kubernetes v1.19.6 | ||
k8s.io/legacy-cloud-providers => k8s.io/legacy-cloud-providers v0.25.3 | ||
k8s.io/metrics => k8s.io/metrics v0.25.3 | ||
k8s.io/node-api => k8s.io/node-api v0.25.3 | ||
k8s.io/sample-apiserver => k8s.io/sample-apiserver v0.25.3 | ||
k8s.io/sample-cli-plugin => k8s.io/sample-cli-plugin v0.25.3 | ||
k8s.io/sample-controller => k8s.io/sample-controller v0.25.3 | ||
k8s.io/api => k8s.io/api v0.29.3 | ||
k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.29.3 | ||
k8s.io/apimachinery => k8s.io/apimachinery v0.29.3 | ||
k8s.io/apiserver => k8s.io/apiserver v0.29.3 | ||
k8s.io/cli-runtime => k8s.io/cli-runtime v0.29.3 | ||
k8s.io/client-go => k8s.io/client-go v0.29.3 | ||
k8s.io/cloud-provider => k8s.io/cloud-provider v0.29.3 | ||
k8s.io/cluster-bootstrap => k8s.io/cluster-bootstrap v0.29.3 | ||
k8s.io/code-generator => k8s.io/code-generator v0.29.3 | ||
k8s.io/component-base => k8s.io/component-base v0.29.3 | ||
k8s.io/cri-api => k8s.io/cri-api v0.29.3 | ||
k8s.io/csi-translation-lib => k8s.io/csi-translation-lib v0.29.3 | ||
k8s.io/kube-aggregator => k8s.io/kube-aggregator v0.29.3 | ||
k8s.io/kube-controller-manager => k8s.io/kube-controller-manager v0.29.3 | ||
k8s.io/kube-proxy => k8s.io/kube-proxy v0.29.3 | ||
k8s.io/kube-scheduler => k8s.io/kube-scheduler v0.29.3 | ||
k8s.io/kubectl => k8s.io/kubectl v0.29.3 | ||
k8s.io/kubelet => k8s.io/kubelet v0.29.3 | ||
k8s.io/legacy-cloud-providers => k8s.io/legacy-cloud-providers v0.29.3 | ||
k8s.io/metrics => k8s.io/metrics v0.29.3 | ||
k8s.io/node-api => k8s.io/node-api v0.29.3 | ||
k8s.io/sample-apiserver => k8s.io/sample-apiserver v0.29.3 | ||
k8s.io/sample-cli-plugin => k8s.io/sample-cli-plugin v0.29.3 | ||
k8s.io/sample-controller => k8s.io/sample-controller v0.29.3 | ||
) |
Oops, something went wrong.