Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Openshift 4.x #5

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM golang:1.15 as build
FROM golang:1.17 as build
WORKDIR /go/src/github.com/universityofadelaide/openshift-newrelic-synthetics
ADD . /go/src/github.com/universityofadelaide/openshift-newrelic-synthetics
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -o bin/openshift-newrelic-synthetics github.com/universityofadelaide/openshift-newrelic-synthetics/cmd/openshift-newrelic-synthetics

FROM alpine:3.10
FROM alpine:3.15
RUN apk --no-cache add ca-certificates
COPY --from=build /go/src/github.com/universityofadelaide/openshift-newrelic-synthetics/bin/openshift-newrelic-synthetics /usr/local/bin/openshift-newrelic-synthetics
ENTRYPOINT ["openshift-newrelic-synthetics"]
11 changes: 6 additions & 5 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,16 @@ go 1.14
replace github.com/newrelic/newrelic-client-go => github.com/nickschuch/newrelic-client-go v0.50.1-0.20201124011817-0a6479b171fc

require (
github.com/docker/spdystream v0.0.0-20160310174837-449fdfce4d96 // indirect
github.com/go-openapi/spec v0.19.3 // indirect
github.com/gophercloud/gophercloud v0.1.0 // indirect
github.com/newrelic/newrelic-client-go v0.50.0
github.com/openshift/api v3.9.0+incompatible
github.com/openshift/client-go v0.0.0-20201020082437-7737f16e53fc
github.com/openshift/api v0.0.0-20220414050251-a83e6f8f1d50
github.com/openshift/client-go v0.0.0-20211209144617-7385dd6338e3
github.com/sirupsen/logrus v1.7.0
gopkg.in/alecthomas/kingpin.v2 v2.2.6
k8s.io/apimachinery v0.19.2
k8s.io/client-go v0.19.2
k8s.io/apimachinery v0.23.0
k8s.io/client-go v0.23.0
k8s.io/klog v1.0.0 // indirect
k8s.io/utils v0.0.0-20201110183641-67b214c5f920 // indirect
sigs.k8s.io/structured-merge-diff/v3 v3.0.0 // indirect
)
219 changes: 219 additions & 0 deletions go.sum

Large diffs are not rendered by default.

29 changes: 29 additions & 0 deletions vendor/github.com/go-logr/logr/.golangci.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions vendor/github.com/go-logr/logr/CHANGELOG.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions vendor/github.com/go-logr/logr/CONTRIBUTING.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading