Skip to content

Commit 2a2b3e6

Browse files
ACM-29150: Update hive to e33d70397d57878e44d511ddc9ecee5521267d8a
1 parent 1aebf3d commit 2a2b3e6

5,950 files changed

Lines changed: 1124991 additions & 217722 deletions

File tree

Some content is hidden

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

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,8 @@ test: manifests generate fmt vet ## Run tests.
120120

121121
.PHONY: deploy-integration-test
122122
deploy-integration-test:
123-
./hack/integration-test/wait-for-ready.sh
124123
oc apply -f './hack/crds/*.yaml'
124+
./hack/integration-test/wait-for-ready.sh
125125
oc apply -f ./hack/integration-test/namespace.yaml
126126
oc create secret docker-registry -n ibi-test pull-secret --from-file=.dockerconfigjson=./hack/integration-test/pull-secret.json
127127
oc apply -f ./hack/integration-test/clusterimageset.yaml

bundle/manifests/extensions.hive.openshift.io_imageclusterinstalls.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: apiextensions.k8s.io/v1
22
kind: CustomResourceDefinition
33
metadata:
44
annotations:
5-
controller-gen.kubebuilder.io/version: v0.16.2
5+
controller-gen.kubebuilder.io/version: v0.17.0
66
creationTimestamp: null
77
labels:
88
contracts.hive.openshift.io/clusterinstall: "true"

bundle/manifests/image-based-install-operator.clusterserviceversion.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ metadata:
3636
}
3737
]
3838
capabilities: Basic Install
39-
createdAt: "2026-01-07T19:57:51Z"
39+
createdAt: "2026-02-05T10:59:19Z"
4040
operators.operatorframework.io/builder: operator-sdk-v1.30.0
4141
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
4242
name: image-based-install-operator.v0.0.1

go.mod

Lines changed: 168 additions & 150 deletions
Large diffs are not rendered by default.

go.sum

Lines changed: 387 additions & 524 deletions
Large diffs are not rendered by default.

vendor/cel.dev/expr/.bazelversion

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
7.3.2
2+
# Keep this pinned version in parity with cel-go

vendor/cel.dev/expr/.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
*.pb.go linguist-generated=true
2+
*.pb.go -diff -merge

vendor/cel.dev/expr/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
bazel-*
2+
MODULE.bazel.lock

vendor/cel.dev/expr/BUILD.bazel

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
load("@io_bazel_rules_go//go:def.bzl", "go_library")
2+
3+
package(default_visibility = ["//visibility:public"])
4+
5+
licenses(["notice"]) # Apache 2.0
6+
7+
go_library(
8+
name = "expr",
9+
srcs = [
10+
"checked.pb.go",
11+
"eval.pb.go",
12+
"explain.pb.go",
13+
"syntax.pb.go",
14+
"value.pb.go",
15+
],
16+
importpath = "cel.dev/expr",
17+
visibility = ["//visibility:public"],
18+
deps = [
19+
"@org_golang_google_genproto_googleapis_rpc//status:go_default_library",
20+
"@org_golang_google_protobuf//reflect/protoreflect",
21+
"@org_golang_google_protobuf//runtime/protoimpl",
22+
"@org_golang_google_protobuf//types/known/anypb",
23+
"@org_golang_google_protobuf//types/known/durationpb",
24+
"@org_golang_google_protobuf//types/known/emptypb",
25+
"@org_golang_google_protobuf//types/known/structpb",
26+
"@org_golang_google_protobuf//types/known/timestamppb",
27+
],
28+
)
29+
30+
alias(
31+
name = "go_default_library",
32+
actual = ":expr",
33+
visibility = ["//visibility:public"],
34+
)
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Contributor Code of Conduct
2+
## Version 0.1.1 (adapted from 0.3b-angular)
3+
4+
As contributors and maintainers of the Common Expression Language
5+
(CEL) project, we pledge to respect everyone who contributes by
6+
posting issues, updating documentation, submitting pull requests,
7+
providing feedback in comments, and any other activities.
8+
9+
Communication through any of CEL's channels (GitHub, Gitter, IRC,
10+
mailing lists, Google+, Twitter, etc.) must be constructive and never
11+
resort to personal attacks, trolling, public or private harassment,
12+
insults, or other unprofessional conduct.
13+
14+
We promise to extend courtesy and respect to everyone involved in this
15+
project regardless of gender, gender identity, sexual orientation,
16+
disability, age, race, ethnicity, religion, or level of experience. We
17+
expect anyone contributing to the project to do the same.
18+
19+
If any member of the community violates this code of conduct, the
20+
maintainers of the CEL project may take action, removing issues,
21+
comments, and PRs or blocking accounts as deemed appropriate.
22+
23+
If you are subject to or witness unacceptable behavior, or have any
24+
other concerns, please email us at
25+
[cel-conduct@google.com](mailto:cel-conduct@google.com).

0 commit comments

Comments
 (0)