From 865bd4bdf988d9b58be181d2d64868a01595e024 Mon Sep 17 00:00:00 2001 From: osher cohen Date: Mon, 19 Oct 2020 10:47:56 +0300 Subject: [PATCH 1/4] MGMT-2407 Run all jobs periodically at night --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 7f68abe0d40a..1e8ae16e767f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,4 +1,4 @@ -String cron_string = BRANCH_NAME == "master" ? "@hourly" : "" +String cron_string = BRANCH_NAME == "master" ? "@hourly" : BRANCH_NAME.startsWith("PR") ? "@midnight" : "" pipeline { agent { label 'centos_worker' } From 40a829b7b6f4fedff3c70397fc50baa7336a67a5 Mon Sep 17 00:00:00 2001 From: osher cohen Date: Mon, 19 Oct 2020 13:05:32 +0300 Subject: [PATCH 2/4] MGMT-2407 testing --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 1e8ae16e767f..30da86668fc7 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,4 +1,4 @@ -String cron_string = BRANCH_NAME == "master" ? "@hourly" : BRANCH_NAME.startsWith("PR") ? "@midnight" : "" +String cron_string = BRANCH_NAME == "master" ? "@hourly" : BRANCH_NAME.startsWith("PR") ? "'*/10 * * * *'" : "" pipeline { agent { label 'centos_worker' } From 913472bf3afb8757e8ec7d1f784c4b3de3523582 Mon Sep 17 00:00:00 2001 From: osher cohen Date: Mon, 19 Oct 2020 13:08:13 +0300 Subject: [PATCH 3/4] test --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d90a17434b9d..6c7e0752e639 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ ## Prerequisites -1. Docker +1. Docker lala 1. skipper https://github.com/stratoscale/skipper 1. minikube (for tests) 1. kubectl From 86f3f73b581acdc6b200bdc9be6fe0d472201352 Mon Sep 17 00:00:00 2001 From: osher cohen Date: Mon, 19 Oct 2020 13:15:42 +0300 Subject: [PATCH 4/4] test test --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6c7e0752e639..d62e9fb10fd0 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ 1. kubectl -## First Setup +## First Setup try To push your build target to a Docker registry you first need to change the default target. 1. Create a quay.io or Docker Hub account if you don't already have one. These instructions refer to quay.io, Docker Hub is similar.