Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Prow setup for feature flag tests #1803

Merged
merged 1 commit into from
Feb 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 54 additions & 0 deletions prow/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2085,3 +2085,57 @@ periodics:
env:
- name: TEST_RUN_ALL_TESTS
value: "true"
- cron: "6 4 * * *"
dibyom marked this conversation as resolved.
Show resolved Hide resolved
name: ci-tekton-pipeline-feature-flag-tests
labels:
preset-presubmit-sh: "true"
preset-dind-enabled: "true"
preset-kind-volume-mounts: "true"
agent: kubernetes
decorate: true
extra_refs:
- org: tektoncd
repo: pipeline
base_ref: main
path_alias: github.com/tektoncd/pipeline
spec:
nodeSelector:
cloud.google.com/gke-ephemeral-storage-local-ssd: "true"
cloud.google.com/gke-nodepool: n2-standard-4-kind
tolerations:
- key: kind-only
operator: Equal
value: "true"
effect: NoSchedule
containers:
- image: gcr.io/tekton-releases/dogfooding/test-runner@sha256:11dc05cf6e81786ce5935e43aad29a84d6b662804cb57f740c9fb3e1e73ff5f7 # golang 1.19
imagePullPolicy: Always
command:
- /usr/local/bin/entrypoint.sh
args:
- "--service-account=/etc/test-account/service-account.json"
- "--" # end bootstrap args, scenario args below
- "--" # end kubernetes_execute_bazel flags (consider following flags as text)
- "/usr/local/bin/kind-e2e"
- "--k8s-version"
- "v1.25.x"
- "--nodes"
- "3"
- "--e2e-script"
- "./test/e2e-tests.sh"
- "--e2e-env"
- "./test/e2e-tests-kind-prow.env"
securityContext:
privileged: true
resources:
requests:
cpu: 3500m
memory: 4Gi
limits:
cpu: 3500m
memory: 8Gi
env:
- name: RUN_FEATUREFLAG_TESTS
value: "true"
- name: E2E_GO_TEST_TIMEOUT
value: "60m"