forked from knative/client
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6,223 changed files
with
1,743,717 additions
and
12 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
35 changes: 32 additions & 3 deletions
35
openshift/ci-operator/knative-test-images/grpc-ping/Dockerfile
100644 → 100755
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,35 @@ | ||
FROM openshift/origin-base | ||
# DO NOT EDIT! Generated Dockerfile for vendor/knative.dev/serving/test/test_images/grpc-ping. | ||
ARG GO_BUILDER=registry.ci.openshift.org/openshift/release:rhel-8-release-golang-1.22-openshift-4.17 | ||
ARG GO_RUNTIME=registry.access.redhat.com/ubi8/ubi-minimal | ||
|
||
FROM $GO_BUILDER as builder | ||
|
||
WORKDIR /workspace | ||
COPY . . | ||
|
||
ENV CGO_ENABLED=1 | ||
ENV GOEXPERIMENT=strictfipsruntime | ||
|
||
RUN go build -tags strictfipsruntime -o /usr/bin/main ./vendor/knative.dev/serving/test/test_images/grpc-ping | ||
|
||
FROM $GO_RUNTIME | ||
|
||
ARG VERSION=knative-v1.16 | ||
|
||
COPY --from=builder /usr/bin/main /ko-app/grpc-ping | ||
COPY LICENSE /licenses/ | ||
|
||
USER 65532 | ||
|
||
ADD grpc-ping /ko-app/grpc-ping | ||
LABEL \ | ||
com.redhat.component="openshift-serverless-1-client-vendor-knative.dev-serving-test-test-images-grpc-ping-rhel8-container" \ | ||
name="openshift-serverless-1/client-vendor-knative.dev-serving-test-test-images-grpc-ping-rhel8" \ | ||
version=$VERSION \ | ||
summary="Red Hat OpenShift Serverless 1 Client Vendor Knative.Dev Serving Test Test Images Grpc Ping" \ | ||
maintainer="serverless-support@redhat.com" \ | ||
description="Red Hat OpenShift Serverless 1 Client Vendor Knative.Dev Serving Test Test Images Grpc Ping" \ | ||
io.k8s.display-name="Red Hat OpenShift Serverless 1 Client Vendor Knative.Dev Serving Test Test Images Grpc Ping" \ | ||
io.k8s.description="Red Hat OpenShift Serverless Client Vendor Knative.Dev Serving Test Test Images Grpc Ping" \ | ||
io.openshift.tags="vendor-knative.dev-serving-test-test-images-grpc-ping" | ||
|
||
ENTRYPOINT ["/ko-app/grpc-ping"] | ||
ENTRYPOINT ["/ko-app/grpc-ping"] |
35 changes: 32 additions & 3 deletions
35
openshift/ci-operator/knative-test-images/servingcontainer/Dockerfile
100644 → 100755
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,35 @@ | ||
# Do not edit! This file was generated via Makefile | ||
FROM openshift/origin-base | ||
# DO NOT EDIT! Generated Dockerfile for vendor/knative.dev/serving/test/test_images/multicontainer/servingcontainer. | ||
ARG GO_BUILDER=registry.ci.openshift.org/openshift/release:rhel-8-release-golang-1.22-openshift-4.17 | ||
ARG GO_RUNTIME=registry.access.redhat.com/ubi8/ubi-minimal | ||
|
||
FROM $GO_BUILDER as builder | ||
|
||
WORKDIR /workspace | ||
COPY . . | ||
|
||
ENV CGO_ENABLED=1 | ||
ENV GOEXPERIMENT=strictfipsruntime | ||
|
||
RUN go build -tags strictfipsruntime -o /usr/bin/main ./vendor/knative.dev/serving/test/test_images/multicontainer/servingcontainer | ||
|
||
FROM $GO_RUNTIME | ||
|
||
ARG VERSION=knative-v1.16 | ||
|
||
COPY --from=builder /usr/bin/main /ko-app/servingcontainer | ||
COPY LICENSE /licenses/ | ||
|
||
USER 65532 | ||
|
||
ADD servingcontainer /ko-app/servingcontainer | ||
LABEL \ | ||
com.redhat.component="openshift-serverless-1-client-vendor-knative.dev-serving-test-test-images-multicontainer-servingcontainer-rhel8-container" \ | ||
name="openshift-serverless-1/client-vendor-knative.dev-serving-test-test-images-multicontainer-servingcontainer-rhel8" \ | ||
version=$VERSION \ | ||
summary="Red Hat OpenShift Serverless 1 Client Vendor Knative.Dev Serving Test Test Images Multicontainer Servingcontainer" \ | ||
maintainer="serverless-support@redhat.com" \ | ||
description="Red Hat OpenShift Serverless 1 Client Vendor Knative.Dev Serving Test Test Images Multicontainer Servingcontainer" \ | ||
io.k8s.display-name="Red Hat OpenShift Serverless 1 Client Vendor Knative.Dev Serving Test Test Images Multicontainer Servingcontainer" \ | ||
io.k8s.description="Red Hat OpenShift Serverless Client Vendor Knative.Dev Serving Test Test Images Multicontainer Servingcontainer" \ | ||
io.openshift.tags="vendor-knative.dev-serving-test-test-images-multicontainer-servingcontainer" | ||
|
||
ENTRYPOINT ["/ko-app/servingcontainer"] |
35 changes: 32 additions & 3 deletions
35
openshift/ci-operator/knative-test-images/sidecarcontainer/Dockerfile
100644 → 100755
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,35 @@ | ||
# Do not edit! This file was generated via Makefile | ||
FROM openshift/origin-base | ||
# DO NOT EDIT! Generated Dockerfile for vendor/knative.dev/serving/test/test_images/multicontainer/sidecarcontainer. | ||
ARG GO_BUILDER=registry.ci.openshift.org/openshift/release:rhel-8-release-golang-1.22-openshift-4.17 | ||
ARG GO_RUNTIME=registry.access.redhat.com/ubi8/ubi-minimal | ||
|
||
FROM $GO_BUILDER as builder | ||
|
||
WORKDIR /workspace | ||
COPY . . | ||
|
||
ENV CGO_ENABLED=1 | ||
ENV GOEXPERIMENT=strictfipsruntime | ||
|
||
RUN go build -tags strictfipsruntime -o /usr/bin/main ./vendor/knative.dev/serving/test/test_images/multicontainer/sidecarcontainer | ||
|
||
FROM $GO_RUNTIME | ||
|
||
ARG VERSION=knative-v1.16 | ||
|
||
COPY --from=builder /usr/bin/main /ko-app/sidecarcontainer | ||
COPY LICENSE /licenses/ | ||
|
||
USER 65532 | ||
|
||
ADD sidecarcontainer /ko-app/sidecarcontainer | ||
LABEL \ | ||
com.redhat.component="openshift-serverless-1-client-vendor-knative.dev-serving-test-test-images-multicontainer-sidecarcontainer-rhel8-container" \ | ||
name="openshift-serverless-1/client-vendor-knative.dev-serving-test-test-images-multicontainer-sidecarcontainer-rhel8" \ | ||
version=$VERSION \ | ||
summary="Red Hat OpenShift Serverless 1 Client Vendor Knative.Dev Serving Test Test Images Multicontainer Sidecarcontainer" \ | ||
maintainer="serverless-support@redhat.com" \ | ||
description="Red Hat OpenShift Serverless 1 Client Vendor Knative.Dev Serving Test Test Images Multicontainer Sidecarcontainer" \ | ||
io.k8s.display-name="Red Hat OpenShift Serverless 1 Client Vendor Knative.Dev Serving Test Test Images Multicontainer Sidecarcontainer" \ | ||
io.k8s.description="Red Hat OpenShift Serverless Client Vendor Knative.Dev Serving Test Test Images Multicontainer Sidecarcontainer" \ | ||
io.openshift.tags="vendor-knative.dev-serving-test-test-images-multicontainer-sidecarcontainer" | ||
|
||
ENTRYPOINT ["/ko-app/sidecarcontainer"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
knative.dev/client/cmd/kn: registry.ci.openshift.org/openshift/knative-client-kn:knative-v1.16 | ||
knative.dev/client/test/test_images/helloworld: registry.ci.openshift.org/openshift/knative-client-test-helloworld:knative-v1.16 | ||
knative.dev/serving/test/test_images/grpc-ping: registry.ci.openshift.org/openshift/knative-client-test-grpc-ping:knative-v1.16 | ||
knative.dev/serving/test/test_images/multicontainer/servingcontainer: registry.ci.openshift.org/openshift/knative-client-test-servingcontainer:knative-v1.16 | ||
knative.dev/serving/test/test_images/multicontainer/sidecarcontainer: registry.ci.openshift.org/openshift/knative-client-test-sidecarcontainer:knative-v1.16 |
17 changes: 17 additions & 0 deletions
17
vendor/contrib.go.opencensus.io/exporter/ocagent/.gitignore
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
20 changes: 20 additions & 0 deletions
20
vendor/contrib.go.opencensus.io/exporter/ocagent/.travis.yml
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
24 changes: 24 additions & 0 deletions
24
vendor/contrib.go.opencensus.io/exporter/ocagent/CONTRIBUTING.md
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.