Skip to content

Commit 8d5247e

Browse files
authored
INSIGHTS-358 Bump polaris libs (#1068)
* Bumped libs * Bumped libs * Fixed issues * Fixed issues * Fixed issues * Fixed issues * Fixed issues * Fixed issues * Fixed issues * Fixing issue * Fixing issue * Fixing issue * Fixing issue * Fixing issue * Fixing issue * Fixing issue * Fixing issue * Fixing issue * Fixing issue * Fixing issue * Fixing issue * Fixing issue * Fixing issue * Fixing issue * Fixing issue * Fixing issue * Fixing issue * Fixing issue * Fixing issue * Fixing issue * Fixing issue * Fixing issues * Fixing issues * Fixing issues * Fixing issues * Trying to fix releaser * Trying to fix releaser * Trying to fix releaser * Trying to fix releaser * Trying to fix releaser * Trying to fix releaser * Trying to fix releaser * Trying to fix releaser * Trying to fix releaser * Trying to fix releaser * Trying to fix releaser * Trying to fix releaser * Trying to fix releaser * Trying to fix releaser * Trying to fix releaser * Trying to fix releaser * Trying to fix releaser * Trying to fix releaser * Trying to fix releaser * Trying to fix releaser * Trying to fix releaser * Trying to fix releaser * Trying to fix releaser * Trying to fix * Trying to fix * Trying to fix * Trying to fix * Trying to fix * Trying to fix * Trying to fix
1 parent d30865c commit 8d5247e

File tree

7 files changed

+162
-182
lines changed

7 files changed

+162
-182
lines changed

.circleci/config.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ jobs:
120120

121121
test:
122122
docker:
123-
- image: cimg/go:1.19
123+
- image: cimg/go:1.22
124124
steps:
125125
- checkout
126126
- *set_environment_variables
@@ -136,11 +136,10 @@ jobs:
136136
# The goreleaser image tag determins the version of Go.
137137
# Manually check goreleaser images for their version of Go.
138138
# Ref: https://hub.docker.com/r/goreleaser/goreleaser/tags
139-
- image: goreleaser/goreleaser:v1.18.2
139+
- image: goreleaser/goreleaser:v1.20.0
140140
steps:
141141
- checkout
142-
- setup_remote_docker:
143-
version: 20.10.11
142+
- setup_remote_docker
144143
- *install_vault_alpine
145144
- rok8s/get_vault_env:
146145
vault_path: repo/global/env

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM alpine:3.19
1+
FROM alpine:3.20
22

33
LABEL org.opencontainers.image.authors="FairwindsOps, Inc." \
44
org.opencontainers.image.vendor="FairwindsOps, Inc." \

cmd/polaris/webhook.go

-2
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,6 @@ var webhookCmd = &cobra.Command{
5050
logrus.Debug("Setting up controller manager")
5151

5252
mgr, err := manager.New(k8sConfig.GetConfigOrDie(), manager.Options{
53-
CertDir: certDir,
54-
Port: webhookPort,
5553
WebhookServer: webhook.NewServer(webhook.Options{
5654
CertDir: certDir,
5755
Port: webhookPort,

go.mod

+44-44
Original file line numberDiff line numberDiff line change
@@ -1,83 +1,83 @@
11
module github.com/fairwindsops/polaris
22

3-
go 1.21
3+
go 1.22.3
44

55
require (
66
github.com/AlecAivazis/survey/v2 v2.3.7
77
github.com/fairwindsops/controller-utils v0.3.4
8-
github.com/fairwindsops/insights-plugins/plugins/workloads v0.0.0-20230601204422-5c789e15990c
9-
github.com/fatih/color v1.15.0
10-
github.com/gorilla/mux v1.8.0
8+
github.com/fairwindsops/insights-plugins/plugins/workloads v0.0.0-20240917173116-506f92bdf9a0
9+
github.com/fatih/color v1.17.0
10+
github.com/gorilla/mux v1.8.1
1111
github.com/pkg/errors v0.9.1
1212
github.com/qri-io/jsonschema v0.1.2
1313
github.com/sirupsen/logrus v1.9.3
14-
github.com/spf13/cobra v1.8.0
15-
github.com/stretchr/testify v1.8.4
14+
github.com/spf13/cobra v1.8.1
15+
github.com/stretchr/testify v1.9.0
1616
github.com/thoas/go-funk v0.9.3
17-
gomodules.xyz/jsonpatch/v2 v2.3.0
17+
gomodules.xyz/jsonpatch/v2 v2.4.0
1818
gopkg.in/yaml.v3 v3.0.1
19-
k8s.io/api v0.29.0
20-
k8s.io/apimachinery v0.29.0
21-
k8s.io/client-go v0.29.0
22-
sigs.k8s.io/controller-runtime v0.15.0
23-
sigs.k8s.io/yaml v1.3.0
19+
k8s.io/api v0.31.1
20+
k8s.io/apimachinery v0.31.1
21+
k8s.io/client-go v0.31.1
22+
sigs.k8s.io/controller-runtime v0.19.0
23+
sigs.k8s.io/yaml v1.4.0
2424
)
2525

2626
require (
2727
github.com/beorn7/perks v1.0.1 // indirect
28-
github.com/cespare/xxhash/v2 v2.2.0 // indirect
29-
github.com/davecgh/go-spew v1.1.1 // indirect
30-
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
31-
github.com/evanphx/json-patch v5.6.0+incompatible // indirect
32-
github.com/evanphx/json-patch/v5 v5.6.0 // indirect
33-
github.com/fsnotify/fsnotify v1.6.0 // indirect
34-
github.com/go-logr/logr v1.3.0 // indirect
28+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
29+
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
30+
github.com/emicklei/go-restful/v3 v3.11.3 // indirect
31+
github.com/evanphx/json-patch/v5 v5.9.0 // indirect
32+
github.com/fsnotify/fsnotify v1.7.0 // indirect
33+
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
34+
github.com/go-logr/logr v1.4.2 // indirect
3535
github.com/go-logr/stdr v1.2.2 // indirect
36-
github.com/go-openapi/jsonpointer v0.19.6 // indirect
37-
github.com/go-openapi/jsonreference v0.20.2 // indirect
38-
github.com/go-openapi/swag v0.22.3 // indirect
36+
github.com/go-openapi/jsonpointer v0.20.3 // indirect
37+
github.com/go-openapi/jsonreference v0.20.5 // indirect
38+
github.com/go-openapi/swag v0.22.10 // indirect
3939
github.com/gogo/protobuf v1.3.2 // indirect
4040
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
41-
github.com/golang/protobuf v1.5.3 // indirect
42-
github.com/google/gnostic-models v0.6.8 // indirect
41+
github.com/golang/protobuf v1.5.4 // indirect
42+
github.com/google/gnostic-models v0.6.9-0.20230804172637-c7be7c783f49 // indirect
4343
github.com/google/go-cmp v0.6.0 // indirect
4444
github.com/google/gofuzz v1.2.0 // indirect
45-
github.com/google/uuid v1.3.0 // indirect
46-
github.com/imdario/mergo v0.3.13 // indirect
45+
github.com/google/uuid v1.6.0 // indirect
46+
github.com/imdario/mergo v0.3.16 // indirect
4747
github.com/inconshreveable/mousetrap v1.1.0 // indirect
4848
github.com/josharian/intern v1.0.0 // indirect
4949
github.com/json-iterator/go v1.1.12 // indirect
5050
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
5151
github.com/mailru/easyjson v0.7.7 // indirect
5252
github.com/mattn/go-colorable v0.1.13 // indirect
53-
github.com/mattn/go-isatty v0.0.17 // indirect
54-
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
53+
github.com/mattn/go-isatty v0.0.20 // indirect
5554
github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b // indirect
5655
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
5756
github.com/modern-go/reflect2 v1.0.2 // indirect
5857
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
59-
github.com/pmezard/go-difflib v1.0.0 // indirect
60-
github.com/prometheus/client_golang v1.15.1 // indirect
61-
github.com/prometheus/client_model v0.4.0 // indirect
62-
github.com/prometheus/common v0.42.0 // indirect
63-
github.com/prometheus/procfs v0.9.0 // indirect
58+
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
59+
github.com/prometheus/client_golang v1.19.1 // indirect
60+
github.com/prometheus/client_model v0.6.1 // indirect
61+
github.com/prometheus/common v0.55.0 // indirect
62+
github.com/prometheus/procfs v0.15.1 // indirect
6463
github.com/qri-io/jsonpointer v0.1.1 // indirect
6564
github.com/samber/lo v1.46.0 // indirect
6665
github.com/spf13/pflag v1.0.5 // indirect
67-
golang.org/x/net v0.17.0 // indirect
68-
golang.org/x/oauth2 v0.13.0 // indirect
69-
golang.org/x/sys v0.13.0 // indirect
70-
golang.org/x/term v0.13.0 // indirect
66+
github.com/x448/float16 v0.8.4 // indirect
67+
golang.org/x/exp v0.0.0-20240222234643-814bf88cf225 // indirect
68+
golang.org/x/net v0.26.0 // indirect
69+
golang.org/x/oauth2 v0.21.0 // indirect
70+
golang.org/x/sys v0.21.0 // indirect
71+
golang.org/x/term v0.21.0 // indirect
7172
golang.org/x/text v0.16.0 // indirect
72-
golang.org/x/time v0.3.0 // indirect
73-
google.golang.org/appengine v1.6.8 // indirect
74-
google.golang.org/protobuf v1.31.0 // indirect
73+
golang.org/x/time v0.5.0 // indirect
74+
google.golang.org/protobuf v1.34.2 // indirect
75+
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
7576
gopkg.in/inf.v0 v0.9.1 // indirect
7677
gopkg.in/yaml.v2 v2.4.0 // indirect
77-
k8s.io/component-base v0.27.2 // indirect
78-
k8s.io/klog/v2 v2.110.1 // indirect
79-
k8s.io/kube-openapi v0.0.0-20231010175941-2dd684a91f00 // indirect
80-
k8s.io/utils v0.0.0-20230726121419-3b25d923346b // indirect
78+
k8s.io/klog/v2 v2.130.1 // indirect
79+
k8s.io/kube-openapi v0.0.0-20240228011516-70dd3763d340 // indirect
80+
k8s.io/utils v0.0.0-20240711033017-18e509b52bc8 // indirect
8181
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
8282
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
8383
)

0 commit comments

Comments
 (0)