forked from kedacore/keda
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from jkyros/e2e-makefile-target
PODAUTO-86: Pull test container dockerfile, e2e targets out of CI into keda repo, reenable CPU test
- Loading branch information
Showing
4 changed files
with
74 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# This dockerfile is intended to build something approximating the upstream test | ||
# image, but for use in OpenShift CI. Upstream keda bumps the keda-tools image version | ||
# when they feel like it, so we might just need to pay attention when we do releases. | ||
FROM ghcr.io/kedacore/keda-tools:1.20.5 | ||
COPY . /src | ||
RUN chmod 777 -R /src | ||
WORKDIR /src | ||
RUN mkdir -p /go && chmod 777 -R /go | ||
RUN mkdir -p /bin && chmod 777 -R /bin | ||
ENV GOCACHE=/src/.cache | ||
ENV USE_SUDO=false | ||
ENV PATH=/src/helm:/src/:$PATH | ||
ENV HELM_INSTALL_DIR=/src | ||
RUN curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 && chmod 700 get_helm.sh && ./get_helm.sh |
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 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