forked from knative/serving
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove ES performance tests and patches (#917)
- Loading branch information
Showing
19 changed files
with
175 additions
and
6,954 deletions.
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
32 changes: 26 additions & 6 deletions
32
openshift/ci-operator/knative-perf-images/dataplane-probe/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,13 +1,33 @@ | ||
# Do not edit! This file was generated via Makefile | ||
FROM registry.ci.openshift.org/openshift/release:rhel-8-release-golang-1.22-openshift-4.17 as builder | ||
# DO NOT EDIT! Generated Dockerfile for test/performance/benchmarks/dataplane-probe. | ||
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 | ||
|
||
COPY . . | ||
|
||
RUN ./openshift/in-docker-patch.sh | ||
RUN make perf-install | ||
ENV CGO_ENABLED=1 | ||
ENV GOEXPERIMENT=strictfipsruntime | ||
|
||
RUN go build -tags strictfipsruntime -o /usr/bin/main ./test/performance/benchmarks/dataplane-probe | ||
|
||
FROM $GO_RUNTIME | ||
|
||
ARG VERSION=knative-v1.15 | ||
|
||
COPY --from=builder /usr/bin/main /ko-app/dataplane-probe | ||
|
||
FROM registry.access.redhat.com/ubi8/ubi-minimal | ||
USER 65532 | ||
|
||
COPY --from=builder /go/bin/dataplane-probe /ko-app/dataplane-probe | ||
LABEL \ | ||
com.redhat.component="openshift-serverless-1-serving-test-performance-benchmarks-dataplane-probe-rhel8-container" \ | ||
name="openshift-serverless-1/serving-test-performance-benchmarks-dataplane-probe-rhel8" \ | ||
version=$VERSION \ | ||
summary="Red Hat OpenShift Serverless 1 Serving Test Performance Benchmarks Dataplane Probe" \ | ||
maintainer="[email protected]" \ | ||
description="Red Hat OpenShift Serverless 1 Serving Test Performance Benchmarks Dataplane Probe" \ | ||
io.k8s.display-name="Red Hat OpenShift Serverless 1 Serving Test Performance Benchmarks Dataplane Probe" \ | ||
io.k8s.description="Red Hat OpenShift Serverless Serving Test Performance Benchmarks Dataplane Probe" \ | ||
io.openshift.tags="test-performance-benchmarks-dataplane-probe" | ||
|
||
ENTRYPOINT ["/ko-app/dataplane-probe"] |
32 changes: 26 additions & 6 deletions
32
openshift/ci-operator/knative-perf-images/load-test/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,13 +1,33 @@ | ||
# Do not edit! This file was generated via Makefile | ||
FROM registry.ci.openshift.org/openshift/release:rhel-8-release-golang-1.22-openshift-4.17 as builder | ||
# DO NOT EDIT! Generated Dockerfile for test/performance/benchmarks/load-test. | ||
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 | ||
|
||
COPY . . | ||
|
||
RUN ./openshift/in-docker-patch.sh | ||
RUN make perf-install | ||
ENV CGO_ENABLED=1 | ||
ENV GOEXPERIMENT=strictfipsruntime | ||
|
||
RUN go build -tags strictfipsruntime -o /usr/bin/main ./test/performance/benchmarks/load-test | ||
|
||
FROM $GO_RUNTIME | ||
|
||
ARG VERSION=knative-v1.15 | ||
|
||
COPY --from=builder /usr/bin/main /ko-app/load-test | ||
|
||
FROM registry.access.redhat.com/ubi8/ubi-minimal | ||
USER 65532 | ||
|
||
COPY --from=builder /go/bin/load-test /ko-app/load-test | ||
LABEL \ | ||
com.redhat.component="openshift-serverless-1-serving-test-performance-benchmarks-load-test-rhel8-container" \ | ||
name="openshift-serverless-1/serving-test-performance-benchmarks-load-test-rhel8" \ | ||
version=$VERSION \ | ||
summary="Red Hat OpenShift Serverless 1 Serving Test Performance Benchmarks Load Test" \ | ||
maintainer="[email protected]" \ | ||
description="Red Hat OpenShift Serverless 1 Serving Test Performance Benchmarks Load Test" \ | ||
io.k8s.display-name="Red Hat OpenShift Serverless 1 Serving Test Performance Benchmarks Load Test" \ | ||
io.k8s.description="Red Hat OpenShift Serverless Serving Test Performance Benchmarks Load Test" \ | ||
io.openshift.tags="test-performance-benchmarks-load-test" | ||
|
||
ENTRYPOINT ["/ko-app/load-test"] |
32 changes: 26 additions & 6 deletions
32
openshift/ci-operator/knative-perf-images/real-traffic-test/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,13 +1,33 @@ | ||
# Do not edit! This file was generated via Makefile | ||
FROM registry.ci.openshift.org/openshift/release:rhel-8-release-golang-1.22-openshift-4.17 as builder | ||
# DO NOT EDIT! Generated Dockerfile for test/performance/benchmarks/real-traffic-test. | ||
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 | ||
|
||
COPY . . | ||
|
||
RUN ./openshift/in-docker-patch.sh | ||
RUN make perf-install | ||
ENV CGO_ENABLED=1 | ||
ENV GOEXPERIMENT=strictfipsruntime | ||
|
||
RUN go build -tags strictfipsruntime -o /usr/bin/main ./test/performance/benchmarks/real-traffic-test | ||
|
||
FROM $GO_RUNTIME | ||
|
||
ARG VERSION=knative-v1.15 | ||
|
||
COPY --from=builder /usr/bin/main /ko-app/real-traffic-test | ||
|
||
FROM registry.access.redhat.com/ubi8/ubi-minimal | ||
USER 65532 | ||
|
||
COPY --from=builder /go/bin/real-traffic-test /ko-app/real-traffic-test | ||
LABEL \ | ||
com.redhat.component="openshift-serverless-1-serving-test-performance-benchmarks-real-traffic-test-rhel8-container" \ | ||
name="openshift-serverless-1/serving-test-performance-benchmarks-real-traffic-test-rhel8" \ | ||
version=$VERSION \ | ||
summary="Red Hat OpenShift Serverless 1 Serving Test Performance Benchmarks Real Traffic Test" \ | ||
maintainer="[email protected]" \ | ||
description="Red Hat OpenShift Serverless 1 Serving Test Performance Benchmarks Real Traffic Test" \ | ||
io.k8s.display-name="Red Hat OpenShift Serverless 1 Serving Test Performance Benchmarks Real Traffic Test" \ | ||
io.k8s.description="Red Hat OpenShift Serverless Serving Test Performance Benchmarks Real Traffic Test" \ | ||
io.openshift.tags="test-performance-benchmarks-real-traffic-test" | ||
|
||
ENTRYPOINT ["/ko-app/real-traffic-test"] |
32 changes: 26 additions & 6 deletions
32
openshift/ci-operator/knative-perf-images/reconciliation-delay/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,13 +1,33 @@ | ||
# Do not edit! This file was generated via Makefile | ||
FROM registry.ci.openshift.org/openshift/release:rhel-8-release-golang-1.22-openshift-4.17 as builder | ||
# DO NOT EDIT! Generated Dockerfile for test/performance/benchmarks/reconciliation-delay. | ||
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 | ||
|
||
COPY . . | ||
|
||
RUN ./openshift/in-docker-patch.sh | ||
RUN make perf-install | ||
ENV CGO_ENABLED=1 | ||
ENV GOEXPERIMENT=strictfipsruntime | ||
|
||
RUN go build -tags strictfipsruntime -o /usr/bin/main ./test/performance/benchmarks/reconciliation-delay | ||
|
||
FROM $GO_RUNTIME | ||
|
||
ARG VERSION=knative-v1.15 | ||
|
||
COPY --from=builder /usr/bin/main /ko-app/reconciliation-delay | ||
|
||
FROM registry.access.redhat.com/ubi8/ubi-minimal | ||
USER 65532 | ||
|
||
COPY --from=builder /go/bin/reconciliation-delay /ko-app/reconciliation-delay | ||
LABEL \ | ||
com.redhat.component="openshift-serverless-1-serving-test-performance-benchmarks-reconciliation-delay-rhel8-container" \ | ||
name="openshift-serverless-1/serving-test-performance-benchmarks-reconciliation-delay-rhel8" \ | ||
version=$VERSION \ | ||
summary="Red Hat OpenShift Serverless 1 Serving Test Performance Benchmarks Reconciliation Delay" \ | ||
maintainer="[email protected]" \ | ||
description="Red Hat OpenShift Serverless 1 Serving Test Performance Benchmarks Reconciliation Delay" \ | ||
io.k8s.display-name="Red Hat OpenShift Serverless 1 Serving Test Performance Benchmarks Reconciliation Delay" \ | ||
io.k8s.description="Red Hat OpenShift Serverless Serving Test Performance Benchmarks Reconciliation Delay" \ | ||
io.openshift.tags="test-performance-benchmarks-reconciliation-delay" | ||
|
||
ENTRYPOINT ["/ko-app/reconciliation-delay"] |
32 changes: 26 additions & 6 deletions
32
openshift/ci-operator/knative-perf-images/rollout-probe/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,13 +1,33 @@ | ||
# Do not edit! This file was generated via Makefile | ||
FROM registry.ci.openshift.org/openshift/release:rhel-8-release-golang-1.22-openshift-4.17 as builder | ||
# DO NOT EDIT! Generated Dockerfile for test/performance/benchmarks/rollout-probe. | ||
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 | ||
|
||
COPY . . | ||
|
||
RUN ./openshift/in-docker-patch.sh | ||
RUN make perf-install | ||
ENV CGO_ENABLED=1 | ||
ENV GOEXPERIMENT=strictfipsruntime | ||
|
||
RUN go build -tags strictfipsruntime -o /usr/bin/main ./test/performance/benchmarks/rollout-probe | ||
|
||
FROM $GO_RUNTIME | ||
|
||
ARG VERSION=knative-v1.15 | ||
|
||
COPY --from=builder /usr/bin/main /ko-app/rollout-probe | ||
|
||
FROM registry.access.redhat.com/ubi8/ubi-minimal | ||
USER 65532 | ||
|
||
COPY --from=builder /go/bin/rollout-probe /ko-app/rollout-probe | ||
LABEL \ | ||
com.redhat.component="openshift-serverless-1-serving-test-performance-benchmarks-rollout-probe-rhel8-container" \ | ||
name="openshift-serverless-1/serving-test-performance-benchmarks-rollout-probe-rhel8" \ | ||
version=$VERSION \ | ||
summary="Red Hat OpenShift Serverless 1 Serving Test Performance Benchmarks Rollout Probe" \ | ||
maintainer="[email protected]" \ | ||
description="Red Hat OpenShift Serverless 1 Serving Test Performance Benchmarks Rollout Probe" \ | ||
io.k8s.display-name="Red Hat OpenShift Serverless 1 Serving Test Performance Benchmarks Rollout Probe" \ | ||
io.k8s.description="Red Hat OpenShift Serverless Serving Test Performance Benchmarks Rollout Probe" \ | ||
io.openshift.tags="test-performance-benchmarks-rollout-probe" | ||
|
||
ENTRYPOINT ["/ko-app/rollout-probe"] |
32 changes: 26 additions & 6 deletions
32
openshift/ci-operator/knative-perf-images/scale-from-zero/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,13 +1,33 @@ | ||
# Do not edit! This file was generated via Makefile | ||
FROM registry.ci.openshift.org/openshift/release:rhel-8-release-golang-1.22-openshift-4.17 as builder | ||
# DO NOT EDIT! Generated Dockerfile for test/performance/benchmarks/scale-from-zero. | ||
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 | ||
|
||
COPY . . | ||
|
||
RUN ./openshift/in-docker-patch.sh | ||
RUN make perf-install | ||
ENV CGO_ENABLED=1 | ||
ENV GOEXPERIMENT=strictfipsruntime | ||
|
||
RUN go build -tags strictfipsruntime -o /usr/bin/main ./test/performance/benchmarks/scale-from-zero | ||
|
||
FROM $GO_RUNTIME | ||
|
||
ARG VERSION=knative-v1.15 | ||
|
||
COPY --from=builder /usr/bin/main /ko-app/scale-from-zero | ||
|
||
FROM registry.access.redhat.com/ubi8/ubi-minimal | ||
USER 65532 | ||
|
||
COPY --from=builder /go/bin/scale-from-zero /ko-app/scale-from-zero | ||
LABEL \ | ||
com.redhat.component="openshift-serverless-1-serving-test-performance-benchmarks-scale-from-zero-rhel8-container" \ | ||
name="openshift-serverless-1/serving-test-performance-benchmarks-scale-from-zero-rhel8" \ | ||
version=$VERSION \ | ||
summary="Red Hat OpenShift Serverless 1 Serving Test Performance Benchmarks Scale From Zero" \ | ||
maintainer="[email protected]" \ | ||
description="Red Hat OpenShift Serverless 1 Serving Test Performance Benchmarks Scale From Zero" \ | ||
io.k8s.display-name="Red Hat OpenShift Serverless 1 Serving Test Performance Benchmarks Scale From Zero" \ | ||
io.k8s.description="Red Hat OpenShift Serverless Serving Test Performance Benchmarks Scale From Zero" \ | ||
io.openshift.tags="test-performance-benchmarks-scale-from-zero" | ||
|
||
ENTRYPOINT ["/ko-app/scale-from-zero"] |
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.