This repository has been archived by the owner on Oct 23, 2024. It is now read-only.
-
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.
* Migrate all the tests to KUTTL Signed-off-by: Alex Lembiewski <[email protected]> * Update 'operators' submodule Signed-off-by: Alex Lembiewski <[email protected]> * Update Spark image tag, added make target for updating Spark image in manifests Signed-off-by: Alex Lembiewski <[email protected]> * Exclude SparkApplicationCompleted events from assertions Signed-off-by: Alex Lembiewski <[email protected]> * Update make target to include manifests in templates, update image tags Signed-off-by: Alex Lembiewski <[email protected]> * Remove go tests, moved kuttl test-cases Signed-off-by: Alex Lembiewski <[email protected]> * Fix app arguments placeholders, update make target Signed-off-by: Alex Lembiewski <[email protected]> * Improve log collectors, set 'deleteOnTermination' to 'false' for executors Signed-off-by: Alex Lembiewski <[email protected]> * Increase read timeout for kubernetes-client Signed-off-by: Alex Lembiewski <[email protected]> * Fix KUBERNETES_REQUEST_TIMEOUT value format Signed-off-by: Alex Lembiewski <[email protected]> * Revert "Fix KUBERNETES_REQUEST_TIMEOUT value format" This reverts commit 11e5534 Signed-off-by: Alex Lembiewski <[email protected]> * Revert "Increase read timeout for kubernetes-client" This reverts commit 9123f81 Signed-off-by: Alex Lembiewski <[email protected]> * Revert KUBERNETES_REQUEST_TIMEOUT from spark-pi.yaml Signed-off-by: Alex Lembiewski <[email protected]> * Set 'spark.kubernetes.submission.*Timeout' properties for test SparkApplication's Signed-off-by: Alex Lembiewski <[email protected]>
- Loading branch information
1 parent
b63ff6f
commit d7e9ffb
Showing
190 changed files
with
2,350 additions
and
4,557 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
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,15 +1,20 @@ | ||
FROM golang:1.13.0@sha256:de697ce5ae02f3d9a57b0603fbb648efadfa212727e702ad3a807b43eba7f6d6 | ||
FROM python:3.8.2-slim-buster | ||
|
||
ARG KUDO_DOWNLOAD_URL=https://github.com/kudobuilder/kudo/releases/download/v0.15.0/kubectl-kudo_0.15.0_linux_x86_64 | ||
ARG KUBECTL_DOWNLOAD_URL=https://storage.googleapis.com/kubernetes-release/release/v1.17.8/bin/linux/amd64/kubectl | ||
ARG KUDO_VERSION=0.15.0 | ||
ARG KUBECTL_VERSION=1.17.8 | ||
ARG KUTTL_VERSION=0.6.1 | ||
ARG KUDO_DOWNLOAD_URL=https://github.com/kudobuilder/kudo/releases/download/v${KUDO_VERSION}/kubectl-kudo_${KUDO_VERSION}_linux_x86_64 | ||
ARG KUBECTL_DOWNLOAD_URL=https://storage.googleapis.com/kubernetes-release/release/v${KUBECTL_VERSION}/bin/linux/amd64/kubectl | ||
ARG KUTTL_DOWNLOAD_URL=https://github.com/kudobuilder/kuttl/releases/download/v${KUTTL_VERSION}/kubectl-kuttl_${KUTTL_VERSION}_linux_x86_64 | ||
ARG JAVA_URL=https://downloads.mesosphere.com/java/openjdk-8u212b03-hotspot-linux-x64.tar.gz | ||
ENV JAVA_HOME=/usr/local/java | ||
ENV PATH=$PATH:${JAVA_HOME}/bin | ||
|
||
RUN curl -LO ${KUBECTL_DOWNLOAD_URL} && \ | ||
chmod +x ./kubectl && \ | ||
mv ./kubectl /usr/local/bin/kubectl && \ | ||
curl -L ${KUDO_DOWNLOAD_URL} -o /go/bin/kubectl-kudo && \ | ||
chmod +x /go/bin/kubectl-kudo && \ | ||
RUN apt-get update && apt-get install -y curl jq && \ | ||
pip install awscli && \ | ||
curl -L ${KUBECTL_DOWNLOAD_URL} -o /usr/local/bin/kubectl && \ | ||
curl -L ${KUDO_DOWNLOAD_URL} -o /usr/local/bin/kubectl-kudo && \ | ||
curl -L ${KUTTL_DOWNLOAD_URL} -o /usr/local/bin/kubectl-kuttl && \ | ||
for tool in kubectl*; do chmod +x /usr/local/bin/${tool}; done && \ | ||
mkdir -p /usr/local/java && \ | ||
curl -L -O ${JAVA_URL} && tar -xf openjdk-8u212b03-hotspot-linux-x64.tar.gz -C /usr/local/java --strip-components=1 |
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,5 @@ | ||
apiVersion: kudo.dev/v1alpha1 | ||
kind: TestSuite | ||
testDirs: | ||
- tests | ||
timeout: 120 |
Submodule operators
updated
11 files
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.