Skip to content

Commit 216f85b

Browse files
STONEBLD-910 Opeshift Pipelines 1.9
1 parent b2113f8 commit 216f85b

File tree

741 files changed

+44346
-23509
lines changed

Some content is hidden

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

741 files changed

+44346
-23509
lines changed

.github/workflows/go-ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
- name: Install Go
6060
uses: actions/setup-go@v3
6161
with:
62-
go-version: 1.17.x
62+
go-version: 1.18.x
6363
- name: Check out code
6464
uses: actions/checkout@v3
6565
- name: Build

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the manager binary
2-
FROM registry.access.redhat.com/ubi8/go-toolset:1.17.7-13.1655148239 as builder
2+
FROM registry.access.redhat.com/ubi8/go-toolset:1.18 as builder
33

44
# Copy the Go Modules manifests
55
COPY go.mod go.mod
@@ -16,4 +16,4 @@ FROM registry.access.redhat.com/ubi8/ubi-minimal:8.6-751
1616
COPY --from=builder /opt/app-root/src/jvmbuildservice /
1717
USER 65532:65532
1818

19-
ENTRYPOINT ["/jvmbuildservice"]
19+
ENTRYPOINT ["/jvmbuildservice"]

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ TMP_DIR=$$(mktemp -d) ;\
8686
cd $$TMP_DIR ;\
8787
go mod init tmp ;\
8888
echo "Downloading $(2)" ;\
89-
GOBIN=$(PROJECT_DIR)/bin go get $(2) ;\
89+
GOBIN=$(PROJECT_DIR)/bin go install $(2) ;\
9090
rm -rf $$TMP_DIR ;\
9191
}
9292
endef

deploy/crds/base/jvmbuildservice.io_dependencybuilds.yaml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -80,13 +80,14 @@ spec:
8080
description: "Condition contains details for one aspect of the current
8181
state of this API Resource. --- This struct is intended for direct
8282
use as an array at the field path .status.conditions. For example,
83-
type FooStatus struct{ // Represents the observations of a
84-
foo's current state. // Known .status.conditions.type are:
85-
\"Available\", \"Progressing\", and \"Degraded\" // +patchMergeKey=type
86-
\ // +patchStrategy=merge // +listType=map // +listMapKey=type
87-
\ Conditions []metav1.Condition `json:\"conditions,omitempty\"
88-
patchStrategy:\"merge\" patchMergeKey:\"type\" protobuf:\"bytes,1,rep,name=conditions\"`
89-
\n // other fields }"
83+
\n \ttype FooStatus struct{ \t // Represents the observations
84+
of a foo's current state. \t // Known .status.conditions.type
85+
are: \"Available\", \"Progressing\", and \"Degraded\" \t //
86+
+patchMergeKey=type \t // +patchStrategy=merge \t // +listType=map
87+
\t // +listMapKey=type \t Conditions []metav1.Condition
88+
`json:\"conditions,omitempty\" patchStrategy:\"merge\" patchMergeKey:\"type\"
89+
protobuf:\"bytes,1,rep,name=conditions\"` \n \t // other fields
90+
\t}"
9091
properties:
9192
lastTransitionTime:
9293
description: lastTransitionTime is the last time the condition

deploy/openshift-pipelines-subscription.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ metadata:
44
name: openshift-pipelines-operator
55
namespace: openshift-operators
66
spec:
7-
channel: pipelines-1.8
7+
channel: pipelines-1.9
88
name: openshift-pipelines-operator-rh
99
source: redhat-operators
1010
sourceNamespace: openshift-marketplace

go.mod

Lines changed: 42 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -1,72 +1,69 @@
11
module github.com/redhat-appstudio/jvm-build-service
22

3-
go 1.17
3+
go 1.18
44

55
require (
6-
github.com/go-logr/logr v1.2.2
6+
github.com/go-logr/logr v1.2.3
77
github.com/onsi/ginkgo v1.16.5
8-
github.com/onsi/gomega v1.19.0
8+
github.com/onsi/gomega v1.20.1
99
github.com/openshift/api v0.0.0-20211203173402-b8f149d82307
1010
github.com/openshift/client-go v0.0.0-20210521082421-73d9475a9142
1111
github.com/prometheus/client_golang v1.14.0
1212
github.com/prometheus/client_model v0.3.0
13-
github.com/tektoncd/pipeline v0.37.4
14-
k8s.io/api v0.24.3
15-
k8s.io/apiextensions-apiserver v0.24.3
16-
k8s.io/apimachinery v0.24.3
13+
github.com/tektoncd/pipeline v0.41.1
14+
k8s.io/api v0.25.3
15+
k8s.io/apiextensions-apiserver v0.25.2
16+
k8s.io/apimachinery v0.25.3
1717
k8s.io/cli-runtime v0.24.3
18-
k8s.io/client-go v0.24.3
19-
k8s.io/code-generator v0.24.3
20-
k8s.io/klog/v2 v2.60.1
21-
knative.dev/pkg v0.0.0-20220329144915-0a1ec2e0d46c
18+
k8s.io/client-go v0.25.3
19+
k8s.io/code-generator v0.25.2
20+
k8s.io/klog/v2 v2.70.2-0.20220707122935-0990e81f1a8f
21+
knative.dev/pkg v0.0.0-20221011175852-714b7630a836
2222
sigs.k8s.io/controller-runtime v0.12.2
2323
)
2424

2525
require (
26-
github.com/google/go-containerregistry v0.8.1-0.20220216220642-00c59d91847c
27-
go.uber.org/zap v1.19.1
26+
github.com/google/go-containerregistry v0.12.0
27+
go.uber.org/zap v1.23.0
2828
)
2929

3030
require (
3131
contrib.go.opencensus.io/exporter/ocagent v0.7.1-0.20200907061046-05415f1de66d // indirect
3232
contrib.go.opencensus.io/exporter/prometheus v0.4.0 // indirect
33-
github.com/PuerkitoBio/purell v1.1.1 // indirect
34-
github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect
3533
github.com/beorn7/perks v1.0.1 // indirect
3634
github.com/blendle/zapdriver v1.3.1 // indirect
3735
github.com/census-instrumentation/opencensus-proto v0.3.0 // indirect
3836
github.com/cespare/xxhash/v2 v2.1.2 // indirect
39-
github.com/containerd/stargz-snapshotter/estargz v0.11.0 // indirect
37+
github.com/containerd/stargz-snapshotter/estargz v0.12.1 // indirect
4038
github.com/davecgh/go-spew v1.1.1 // indirect
41-
github.com/docker/cli v20.10.12+incompatible // indirect
42-
github.com/docker/distribution v2.8.0+incompatible // indirect
43-
github.com/docker/docker v20.10.12+incompatible // indirect
44-
github.com/docker/docker-credential-helpers v0.6.4 // indirect
45-
github.com/emicklei/go-restful v2.16.0+incompatible // indirect
39+
github.com/docker/cli v20.10.20+incompatible // indirect
40+
github.com/docker/distribution v2.8.1+incompatible // indirect
41+
github.com/docker/docker v20.10.20+incompatible // indirect
42+
github.com/docker/docker-credential-helpers v0.7.0 // indirect
43+
github.com/emicklei/go-restful/v3 v3.8.0 // indirect
4644
github.com/evanphx/json-patch v4.12.0+incompatible // indirect
4745
github.com/evanphx/json-patch/v5 v5.6.0 // indirect
4846
github.com/fsnotify/fsnotify v1.5.1 // indirect
4947
github.com/go-kit/log v0.2.0 // indirect
5048
github.com/go-logfmt/logfmt v0.5.1 // indirect
51-
github.com/go-logr/zapr v1.2.0 // indirect
49+
github.com/go-logr/zapr v1.2.3 // indirect
5250
github.com/go-openapi/jsonpointer v0.19.5 // indirect
53-
github.com/go-openapi/jsonreference v0.19.5 // indirect
54-
github.com/go-openapi/swag v0.19.15 // indirect
51+
github.com/go-openapi/jsonreference v0.20.0 // indirect
52+
github.com/go-openapi/swag v0.22.3 // indirect
5553
github.com/gogo/protobuf v1.3.2 // indirect
5654
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
5755
github.com/golang/protobuf v1.5.2 // indirect
5856
github.com/google/gnostic v0.5.7-v3refs // indirect
59-
github.com/google/go-cmp v0.5.8 // indirect
57+
github.com/google/go-cmp v0.5.9 // indirect
6058
github.com/google/gofuzz v1.2.0 // indirect
6159
github.com/google/uuid v1.3.0 // indirect
6260
github.com/grpc-ecosystem/grpc-gateway v1.16.0 // indirect
63-
github.com/hashicorp/errwrap v1.0.0 // indirect
61+
github.com/hashicorp/errwrap v1.1.0 // indirect
6462
github.com/hashicorp/go-multierror v1.1.1 // indirect
6563
github.com/imdario/mergo v0.3.12 // indirect
6664
github.com/josharian/intern v1.0.0 // indirect
6765
github.com/json-iterator/go v1.1.12 // indirect
68-
github.com/klauspost/compress v1.14.4 // indirect
69-
github.com/kr/pretty v0.2.1 // indirect
66+
github.com/klauspost/compress v1.15.11 // indirect
7067
github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de // indirect
7168
github.com/mailru/easyjson v0.7.7 // indirect
7269
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect
@@ -76,42 +73,42 @@ require (
7673
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
7774
github.com/nxadm/tail v1.4.8 // indirect
7875
github.com/opencontainers/go-digest v1.0.0 // indirect
79-
github.com/opencontainers/image-spec v1.0.3-0.20220114050600-8b9d41f48198 // indirect
76+
github.com/opencontainers/image-spec v1.1.0-rc2 // indirect
8077
github.com/pkg/errors v0.9.1 // indirect
8178
github.com/prometheus/common v0.37.0 // indirect
8279
github.com/prometheus/procfs v0.8.0 // indirect
8380
github.com/prometheus/statsd_exporter v0.21.0 // indirect
84-
github.com/sirupsen/logrus v1.8.1 // indirect
81+
github.com/sirupsen/logrus v1.9.0 // indirect
8582
github.com/spf13/pflag v1.0.5 // indirect
8683
github.com/vbatts/tar-split v0.11.2 // indirect
8784
go.opencensus.io v0.23.0 // indirect
88-
go.uber.org/atomic v1.9.0 // indirect
89-
go.uber.org/multierr v1.7.0 // indirect
90-
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 // indirect
85+
go.uber.org/atomic v1.10.0 // indirect
86+
go.uber.org/multierr v1.8.0 // indirect
87+
golang.org/x/mod v0.6.0 // indirect
9188
golang.org/x/net v0.7.0 // indirect
92-
golang.org/x/oauth2 v0.0.0-20220223155221-ee480838109b // indirect
93-
golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4 // indirect
89+
golang.org/x/oauth2 v0.1.0 // indirect
90+
golang.org/x/sync v0.1.0 // indirect
9491
golang.org/x/sys v0.5.0 // indirect
9592
golang.org/x/term v0.5.0 // indirect
9693
golang.org/x/text v0.7.0 // indirect
97-
golang.org/x/time v0.0.0-20220224211638-0e9765cccd65 // indirect
94+
golang.org/x/time v0.0.0-20220922220347-f3bd1da661af // indirect
9895
golang.org/x/tools v0.1.12 // indirect
9996
gomodules.xyz/jsonpatch/v2 v2.2.0 // indirect
100-
google.golang.org/api v0.70.0 // indirect
97+
google.golang.org/api v0.100.0 // indirect
10198
google.golang.org/appengine v1.6.7 // indirect
102-
google.golang.org/genproto v0.0.0-20220303160752-862486edd9cc // indirect
103-
google.golang.org/grpc v1.44.0 // indirect
99+
google.golang.org/genproto v0.0.0-20221014213838-99cd37c6964a // indirect
100+
google.golang.org/grpc v1.50.1 // indirect
104101
google.golang.org/protobuf v1.28.1 // indirect
105102
gopkg.in/inf.v0 v0.9.1 // indirect
106103
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
107104
gopkg.in/yaml.v2 v2.4.0 // indirect
108105
gopkg.in/yaml.v3 v3.0.1 // indirect
109106
gotest.tools/v3 v3.1.0 // indirect
110-
k8s.io/component-base v0.24.3 // indirect
111-
k8s.io/gengo v0.0.0-20220307231824-4627b89bbf1b // indirect
112-
k8s.io/kube-openapi v0.0.0-20220328201542-3ee0da9b0b42 // indirect
113-
k8s.io/utils v0.0.0-20220210201930-3a6ce19ff2f9 // indirect
114-
sigs.k8s.io/json v0.0.0-20211208200746-9f7c6b3444d2 // indirect
115-
sigs.k8s.io/structured-merge-diff/v4 v4.2.1 // indirect
107+
k8s.io/component-base v0.25.2 // indirect
108+
k8s.io/gengo v0.0.0-20220613173612-397b4ae3bce7 // indirect
109+
k8s.io/kube-openapi v0.0.0-20220803162953-67bda5d908f1 // indirect
110+
k8s.io/utils v0.0.0-20220728103510-ee6ede2d64ed // indirect
111+
sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 // indirect
112+
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
116113
sigs.k8s.io/yaml v1.3.0 // indirect
117114
)

0 commit comments

Comments
 (0)