Skip to content

Commit cefb2f6

Browse files
authored
Bump grpc probe to version 0.4.11 (#967)
Signed-off-by: perdasilva <[email protected]>
1 parent 1436816 commit cefb2f6

File tree

365 files changed

+29052
-3450
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

365 files changed

+29052
-3450
lines changed

go.mod

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ require (
1414
github.com/golang/mock v1.5.0
1515
github.com/golang/protobuf v1.5.2
1616
github.com/google/go-cmp v0.5.6
17-
github.com/grpc-ecosystem/grpc-health-probe v0.3.2
17+
github.com/grpc-ecosystem/grpc-health-probe v0.4.11
1818
github.com/h2non/filetype v1.1.1
1919
github.com/h2non/go-is-svg v0.0.0-20160927212452-35e8c4b0612c
2020
github.com/joelanford/ignore v0.0.0-20210607151042-0d25dc18b62d
@@ -34,11 +34,11 @@ require (
3434
github.com/stretchr/testify v1.7.0
3535
go.etcd.io/bbolt v1.3.6
3636
golang.org/x/mod v0.4.2
37-
golang.org/x/net v0.0.0-20210825183410-e898025ed96a
37+
golang.org/x/net v0.0.0-20220407224826-aac1ed45d8e3
3838
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
39-
google.golang.org/grpc v1.41.0
39+
google.golang.org/grpc v1.45.0
4040
google.golang.org/grpc/cmd/protoc-gen-go-grpc v0.0.0-20200709232328-d8193ee9cc3e
41-
google.golang.org/protobuf v1.27.1
41+
google.golang.org/protobuf v1.28.0
4242
gopkg.in/yaml.v2 v2.4.0
4343
k8s.io/api v0.22.1
4444
k8s.io/apiextensions-apiserver v0.22.1
@@ -125,10 +125,12 @@ require (
125125
github.com/prometheus/procfs v0.6.0 // indirect
126126
github.com/russross/blackfriday v1.5.2 // indirect
127127
github.com/spf13/pflag v1.0.5 // indirect
128+
github.com/spiffe/go-spiffe/v2 v2.0.0 // indirect
128129
github.com/stoewer/go-strcase v1.2.0 // indirect
129130
github.com/yvasiyarov/go-metrics v0.0.0-20150112132944-c25f46c4b940 // indirect
130131
github.com/yvasiyarov/gorelic v0.0.7 // indirect
131132
github.com/yvasiyarov/newrelic_platform_go v0.0.0-20160601141957-9c099fbc30e9 // indirect
133+
github.com/zeebo/errs v1.3.0 // indirect
132134
go.opencensus.io v0.23.0 // indirect
133135
go.opentelemetry.io/contrib v0.20.0 // indirect
134136
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.20.0 // indirect
@@ -140,17 +142,18 @@ require (
140142
go.opentelemetry.io/otel/sdk/metric v0.20.0 // indirect
141143
go.opentelemetry.io/otel/trace v0.20.0 // indirect
142144
go.opentelemetry.io/proto/otlp v0.7.0 // indirect
143-
golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2 // indirect
145+
golang.org/x/crypto v0.0.0-20220408190544-5352b0902921 // indirect
144146
golang.org/x/oauth2 v0.0.0-20210402161424-2e8d93401602 // indirect
145-
golang.org/x/sys v0.0.0-20211025201205-69cdffdb9359 // indirect
146-
golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d // indirect
147+
golang.org/x/sys v0.0.0-20220408201424-a24fb2fb8a0f // indirect
148+
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
147149
golang.org/x/text v0.3.7 // indirect
148150
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac // indirect
149151
golang.org/x/tools v0.1.5 // indirect
150152
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
151153
google.golang.org/appengine v1.6.7 // indirect
152-
google.golang.org/genproto v0.0.0-20210831024726-fe130286e0e2 // indirect
154+
google.golang.org/genproto v0.0.0-20220407144326-9054f6ed7bac // indirect
153155
gopkg.in/inf.v0 v0.9.1 // indirect
156+
gopkg.in/square/go-jose.v2 v2.6.0 // indirect
154157
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
155158
gopkg.in/warnings.v0 v0.1.2 // indirect
156159
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect

go.sum

Lines changed: 32 additions & 14 deletions
Large diffs are not rendered by default.

registry.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ WORKDIR /build
55

66
COPY . .
77
RUN make static
8-
RUN GRPC_HEALTH_PROBE_VERSION=v0.3.2 && \
8+
RUN GRPC_HEALTH_PROBE_VERSION=v0.4.11 && \
99
wget -qO/bin/grpc_health_probe https://github.com/grpc-ecosystem/grpc-health-probe/releases/download/${GRPC_HEALTH_PROBE_VERSION}/grpc_health_probe-linux-$(go env GOARCH) && \
1010
chmod +x /bin/grpc_health_probe
1111

release/goreleaser.opm.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# build opm images. See the configurations in .goreleaser.yaml
33
# and .github/workflows/release.yaml.
44

5-
FROM ghcr.io/grpc-ecosystem/grpc-health-probe:v0.4.6 as grpc_health_probe
5+
FROM ghcr.io/grpc-ecosystem/grpc-health-probe:v0.4.11 as grpc_health_probe
66
FROM gcr.io/distroless/static:debug
77
COPY --from=grpc_health_probe /ko-app/grpc-health-probe /bin/grpc_health_probe
88
COPY ["nsswitch.conf", "/etc/nsswitch.conf"]

upstream-builder.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ WORKDIR /build
55

66
COPY . .
77
RUN make static
8-
RUN GRPC_HEALTH_PROBE_VERSION=v0.3.2 && \
8+
RUN GRPC_HEALTH_PROBE_VERSION=v0.4.11 && \
99
wget -qO/bin/grpc_health_probe https://github.com/grpc-ecosystem/grpc-health-probe/releases/download/${GRPC_HEALTH_PROBE_VERSION}/grpc_health_probe-linux-$(go env GOARCH) && \
1010
chmod +x /bin/grpc_health_probe
1111

upstream-opm-builder.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ WORKDIR /build
1010

1111
COPY . .
1212
RUN make static
13-
RUN GRPC_HEALTH_PROBE_VERSION=v0.3.2 && \
13+
RUN GRPC_HEALTH_PROBE_VERSION=v0.4.11 && \
1414
wget -qO/bin/grpc_health_probe https://github.com/grpc-ecosystem/grpc-health-probe/releases/download/${GRPC_HEALTH_PROBE_VERSION}/grpc_health_probe-linux-$(go env GOARCH) && \
1515
chmod +x /bin/grpc_health_probe
1616

vendor/github.com/grpc-ecosystem/grpc-health-probe/.goreleaser.yml

Lines changed: 30 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/grpc-ecosystem/grpc-health-probe/.ko.yaml

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/grpc-ecosystem/grpc-health-probe/.travis.yml

Lines changed: 0 additions & 25 deletions
This file was deleted.

vendor/github.com/grpc-ecosystem/grpc-health-probe/Dockerfile

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)