Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion config/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ branch-protection:
- pull-cert-manager-bazel
- pull-cert-manager-deps
- pull-cert-manager-chart
- pull-cert-manager-e2e-v1-21
- pull-cert-manager-e2e-v1-22
cert-manager-csi:
protect: true
required_status_checks:
Expand Down
66 changes: 64 additions & 2 deletions config/jobs/cert-manager/cert-manager-periodics.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,69 @@ periodics:
- name: ndots
value: "1"

- name: ci-cert-manager-upgrade-v1-21
- name: ci-cert-manager-e2e-v1-22
interval: 2h
agent: kubernetes
decorate: true
extra_refs:
- org: jetstack
repo: cert-manager
base_ref: master
annotations:
testgrid-create-test-group: 'true'
testgrid-dashboards: jetstack-cert-manager-master
testgrid-alert-email: cert-manager-dev-alerts@googlegroups.com
description: Runs the end-to-end test suite against a Kubernetes v1.22 cluster
labels:
preset-service-account: "true"
preset-dind-enabled: "true"
preset-bazel-remote-cache-enabled: "true"
preset-bazel-scratch-dir: "true"
preset-cloudflare-credentials: "true"
preset-venafi-tpp-credentials: "true"
preset-venafi-cloud-credentials: "true"
spec:
containers:
- image: eu.gcr.io/jetstack-build-infra-images/bazelbuild:20210323-ad5071a-3.7.2
args:
- runner
- devel/ci-run-e2e.sh
resources:
requests:
cpu: 3500m
memory: 12Gi
env:
- name: K8S_VERSION
value: "1.22"
# Enable CertificateSigningRequest and Gateway API e2e tests for v1.19+ clusters
- name: FEATURE_GATES
value: "ExperimentalCertificateSigningRequestControllers=true,ExperimentalGatewayAPISupport=true"
securityContext:
privileged: true
capabilities:
add: ["SYS_ADMIN"]
volumeMounts:
- mountPath: /lib/modules
name: modules
readOnly: true
- mountPath: /sys/fs/cgroup
name: cgroup
volumes:
- name: modules
hostPath:
path: /lib/modules
type: Directory
- name: cgroup
hostPath:
path: /sys/fs/cgroup
type: Directory
dnsConfig:
options:
- name: ndots
value: "1"


- name: ci-cert-manager-upgrade
interval: 8h
agent: kubernetes
decorate: true
Expand Down Expand Up @@ -468,7 +530,7 @@ periodics:
memory: 12Gi
env:
- name: K8S_VERSION
value: "1.21"
value: "1.22"
securityContext:
privileged: true
capabilities:
Expand Down
Loading