#!/usr/bin/env groovy pipelineJob('k8s-e2e') { displayName('Kubernetes Plugin E2E Test') logRotator { numToKeep(10) daysToKeep(30) } configure { project -> project / 'properties' / 'org.jenkinsci.plugins.workflow.job.properties.DurabilityHintJobProperty' { hint('PERFORMANCE_OPTIMIZED') } } definition { cpsScm { scm { git { remote { url('https://github.com/jenkinsci/kubernetes-operator.git') credentials('jenkins-operator') } branches('*/master') } } scriptPath('cicd/pipelines/k8s.jenkins') } } }