Skip to content
This repository was archived by the owner on May 16, 2023. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
fb3b0a7
[release] Initiate 7.7 branch (#541)
Apr 9, 2020
29d33c3
[meta] fix ci jobs
jmlrt Apr 10, 2020
0f87b17
Merge pull request #570 from jmlrt/fix-ci-jobs-77-branch
jmlrt Apr 10, 2020
a55cea1
[jenkins] Fix Google cluster name (#571)
Apr 10, 2020
b9e724e
[ci] Fix triggering upstream cleanup job (#578)
Apr 14, 2020
32ed278
Merge pull request #567 from jmlrt/metricbeat-improvements
jmlrt Apr 10, 2020
724f306
Merge pull request #568 from jmlrt/filebeat-improvements
jmlrt Apr 10, 2020
7ccb9e5
[doc] Update links to 7.7 branch (#579)
Apr 14, 2020
26bd1ca
Merge pull request #580 from jmlrt/helm-2-16-6
jmlrt Apr 15, 2020
68a54af
[script] Update bumper script to handle SNAPSHOT versions (#581)
Apr 15, 2020
42eef5d
[ci] Fix multijob configuration for testing staging artifacts (#582)
Apr 15, 2020
1785431
Merge pull request #583 from Conky5/use-different-image-for-random-key
Conky5 Apr 15, 2020
f74d721
Merge pull request #572 from jmlrt/split-metricbeat-values
jmlrt Apr 17, 2020
f59b2c8
Merge pull request #585 from jmlrt/metricbeat-hostnetwork
jmlrt Apr 17, 2020
fd72d67
Merge pull request #590 from marcostvz/patch-1
jmlrt Apr 20, 2020
65eebf9
Merge pull request #584 from michelesr/master
jmlrt Apr 20, 2020
bcaaaad
Merge pull request #522 from domgoodwin/helm-default-patch
jmlrt Apr 21, 2020
ac520df
Merge pull request #586 from jmlrt/readiness-to-503
jmlrt Apr 21, 2020
e2d4b9c
Merge pull request #569 from cartonalexandre/master
jmlrt Apr 23, 2020
ab26d11
Merge pull request #591 from jmlrt/logstash-http-host-var
jmlrt Apr 27, 2020
6a66c2e
Merge pull request #593 from jmlrt/doc-improvements (#599)
jmlrt Apr 28, 2020
f3f4e27
FAQ and examples improvements (#598) (#600)
jmlrt Apr 28, 2020
1c63c35
[meta] bump version on examples readme (#601)
jmlrt Apr 29, 2020
420eadb
initiate 6.8 branch (#602)
jmlrt May 4, 2020
ddafbcd
[helm] bump helm version to 2.16.7 (#607)
jmlrt May 6, 2020
b019af6
temporary bump to 7.7.0
jmlrt May 13, 2020
17788fd
[meta] remove beta notices and small doc updates
jmlrt May 13, 2020
a99ad6e
[meta] bump to 6.8.9
jmlrt May 13, 2020
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
8 changes: 1 addition & 7 deletions .ci/jobs/defaults.yml → .ci/jobs.t/defaults.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,6 @@
logrotate:
daysToKeep: 30
numToKeep: 100
parameters:
- string:
name: branch_specifier
default: master
description: the Git branch specifier to build (<branchName>, <tagName>,
<commitId>, etc.)
properties:
- github:
url: https://github.com/elastic/helm-charts/
Expand All @@ -30,7 +24,7 @@
credentials-id: f6c7695a-671e-4f4f-a331-acdce44ff9ba
reference-repo: /var/lib/jenkins/.git-references/helm-charts.git
branches:
- ${branch_specifier}
- "%BRANCH%"
url: git@github.com:elastic/helm-charts.git
basedir: ''
wipe-workspace: 'True'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
- job:
name: elastic+helm-charts+master+cluster-cleanup
display-name: elastic / helm-charts - master - cluster cleanup
description: Master - cluster cleanup
name: elastic+helm-charts+%BRANCH%+cluster-cleanup
display-name: elastic / helm-charts - %BRANCH% - cluster cleanup
description: cluster cleanup
scm:
- git:
wipe-workspace: 'True'
Expand All @@ -29,7 +29,8 @@
unset VAULT_ROLE_ID VAULT_SECRET_ID
set -x

cluster_name="helm-${KUBERNETES_VERSION//./}-${branch_specifier:0:10}"
BRANCH_NAME="%BRANCH%"
cluster_name="helm-${KUBERNETES_VERSION//./}-${BRANCH_NAME//./}"

cd helpers/terraform/
./in-docker make destroy KUBERNETES_VERSION=${KUBERNETES_VERSION} CLUSTER_NAME=${cluster_name}
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
- job:
name: elastic+helm-charts+master+cluster-creation
display-name: elastic / helm-charts - master - cluster creation
description: Master - cluster creation
name: elastic+helm-charts+%BRANCH%+cluster-creation
display-name: elastic / helm-charts - %BRANCH% - cluster creation
description: cluster creation
scm:
- git:
wipe-workspace: 'True'
Expand All @@ -29,7 +29,8 @@
unset VAULT_ROLE_ID VAULT_SECRET_ID
set -x

cluster_name="helm-${KUBERNETES_VERSION//./}-${branch_specifier:0:10}"
BRANCH_NAME="%BRANCH%"
cluster_name="helm-${KUBERNETES_VERSION//./}-${BRANCH_NAME//./}"

cd helpers/terraform/
./in-docker make up KUBERNETES_VERSION=${KUBERNETES_VERSION} CLUSTER_NAME=${cluster_name}
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
- job:
name: elastic+helm-charts+master+integration-apm-server
display-name: elastic / helm-charts - master - integration apm-server
description: Master - integration apm-server
name: elastic+helm-charts+%BRANCH%+integration-apm-server
display-name: elastic / helm-charts - %BRANCH% - integration apm-server
description: integration apm-server
scm:
- git:
wipe-workspace: 'True'
Expand Down Expand Up @@ -33,7 +33,8 @@
unset VAULT_ROLE_ID VAULT_SECRET_ID
set -x

cluster_name="helm-${KUBERNETES_VERSION//./}-${branch_specifier:0:10}"
BRANCH_NAME="%BRANCH%"
cluster_name="helm-${KUBERNETES_VERSION//./}-${BRANCH_NAME//./}"

cd helpers/terraform/
./in-docker make integration KUBERNETES_VERSION=${KUBERNETES_VERSION} CLUSTER_NAME=${cluster_name} SUITE=${APM_SERVER_SUITE} CHART=apm-server
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
- job:
name: elastic+helm-charts+master+integration-elasticsearch
display-name: elastic / helm-charts - master - integration elasticsearch
description: Master - integration elasticsearch
name: elastic+helm-charts+%BRANCH%+integration-elasticsearch
display-name: elastic / helm-charts - %BRANCH% - integration elasticsearch
description: integration elasticsearch
scm:
- git:
wipe-workspace: 'True'
Expand Down Expand Up @@ -33,7 +33,8 @@
unset VAULT_ROLE_ID VAULT_SECRET_ID
set -x

cluster_name="helm-${KUBERNETES_VERSION//./}-${branch_specifier:0:10}"
BRANCH_NAME="%BRANCH%"
cluster_name="helm-${KUBERNETES_VERSION//./}-${BRANCH_NAME//./}"

cd helpers/terraform/
./in-docker make integration KUBERNETES_VERSION=${KUBERNETES_VERSION} CLUSTER_NAME=${cluster_name} SUITE=${ES_SUITE} CHART=elasticsearch
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
- job:
name: elastic+helm-charts+master+integration-filebeat
display-name: elastic / helm-charts - master - integration filebeat
description: Master - integration filebeat
name: elastic+helm-charts+%BRANCH%+integration-filebeat
display-name: elastic / helm-charts - %BRANCH% - integration filebeat
description: integration filebeat
scm:
- git:
wipe-workspace: 'True'
Expand Down Expand Up @@ -33,7 +33,8 @@
unset VAULT_ROLE_ID VAULT_SECRET_ID
set -x

cluster_name="helm-${KUBERNETES_VERSION//./}-${branch_specifier:0:10}"
BRANCH_NAME="%BRANCH%"
cluster_name="helm-${KUBERNETES_VERSION//./}-${BRANCH_NAME//./}"

cd helpers/terraform/
./in-docker make integration KUBERNETES_VERSION=${KUBERNETES_VERSION} CLUSTER_NAME=${cluster_name} SUITE=${FILEBEAT_SUITE} CHART=filebeat
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
- job:
name: elastic+helm-charts+master+integration-kibana
display-name: elastic / helm-charts - master - integration kibana
description: Master - integration kibana
name: elastic+helm-charts+%BRANCH%+integration-kibana
display-name: elastic / helm-charts - %BRANCH% - integration kibana
description: integration kibana
scm:
- git:
wipe-workspace: 'True'
Expand Down Expand Up @@ -33,7 +33,8 @@
unset VAULT_ROLE_ID VAULT_SECRET_ID
set -x

cluster_name="helm-${KUBERNETES_VERSION//./}-${branch_specifier:0:10}"
BRANCH_NAME="%BRANCH%"
cluster_name="helm-${KUBERNETES_VERSION//./}-${BRANCH_NAME//./}"

cd helpers/terraform/
./in-docker make integration KUBERNETES_VERSION=${KUBERNETES_VERSION} CLUSTER_NAME=${cluster_name} SUITE=${KIBANA_SUITE} CHART=kibana
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
- job:
name: elastic+helm-charts+master+integration-logstash
display-name: elastic / helm-charts - master - integration logstash
description: Master - integration logstash
name: elastic+helm-charts+%BRANCH%+integration-logstash
display-name: elastic / helm-charts - %BRANCH% - integration logstash
description: integration logstash
scm:
- git:
wipe-workspace: 'True'
Expand Down Expand Up @@ -33,7 +33,8 @@
unset VAULT_ROLE_ID VAULT_SECRET_ID
set -x

cluster_name="helm-${KUBERNETES_VERSION//./}-${branch_specifier:0:10}"
BRANCH_NAME="%BRANCH%"
cluster_name="helm-${KUBERNETES_VERSION//./}-${BRANCH_NAME//./}"

cd helpers/terraform/
./in-docker make integration KUBERNETES_VERSION=${KUBERNETES_VERSION} CLUSTER_NAME=${cluster_name} SUITE=${LOGSTASH_SUITE} CHART=logstash
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
- job:
name: elastic+helm-charts+master+integration-metricbeat
display-name: elastic / helm-charts - master - integration metricbeat
description: Master - integration metricbeat
name: elastic+helm-charts+%BRANCH%+integration-metricbeat
display-name: elastic / helm-charts - %BRANCH% - integration metricbeat
description: integration metricbeat
scm:
- git:
wipe-workspace: 'True'
Expand Down Expand Up @@ -33,7 +33,8 @@
unset VAULT_ROLE_ID VAULT_SECRET_ID
set -x

cluster_name="helm-${KUBERNETES_VERSION//./}-${branch_specifier:0:10}"
BRANCH_NAME="%BRANCH%"
cluster_name="helm-${KUBERNETES_VERSION//./}-${BRANCH_NAME//./}"

cd helpers/terraform/
./in-docker make integration KUBERNETES_VERSION=${KUBERNETES_VERSION} CLUSTER_NAME=${cluster_name} SUITE=${METRICBEAT_SUITE} CHART=metricbeat
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
- job:
name: elastic+helm-charts+staging+cluster-cleanup
name: elastic+helm-charts+%BRANCH%+staging+cluster-cleanup
display-name: elastic / helm-charts - staging - cluster cleanup
description: staging - cluster cleanup
parameters:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
- job:
name: elastic+helm-charts+staging+cluster-creation
name: elastic+helm-charts+%BRANCH%+staging+cluster-creation
display-name: elastic / helm-charts - staging - cluster creation
description: staging - cluster creation
parameters:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
- job:
name: elastic+helm-charts+staging+integration-apm-server
name: elastic+helm-charts+%BRANCH%+staging+integration-apm-server
display-name: elastic / helm-charts - staging - integration apm-server
description: staging - integration apm-server
parameters:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
- job:
name: elastic+helm-charts+staging+integration-elasticsearch
name: elastic+helm-charts+%BRANCH%+staging+integration-elasticsearch
display-name: elastic / helm-charts - staging - integration elasticsearch
description: staging - integration elasticsearch
parameters:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
- job:
name: elastic+helm-charts+staging+integration-filebeat
name: elastic+helm-charts+%BRANCH%+staging+integration-filebeat
display-name: elastic / helm-charts - staging - integration filebeat
description: staging - integration filebeat
parameters:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
- job:
name: elastic+helm-charts+staging+integration-kibana
name: elastic+helm-charts+%BRANCH%+staging+integration-kibana
display-name: elastic / helm-charts - staging - integration kibana
description: staging - integration kibana
parameters:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
- job:
name: elastic+helm-charts+staging+integration-logstash
name: elastic+helm-charts+%BRANCH%+staging+integration-logstash
display-name: elastic / helm-charts - staging - integration logstash
description: staging - integration logstash
parameters:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
- job:
name: elastic+helm-charts+staging+integration-metricbeat
name: elastic+helm-charts+%BRANCH%+staging+integration-metricbeat
display-name: elastic / helm-charts - staging - integration metricbeat
description: staging - integration metricbeat
parameters:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
---
- job:
name: elastic+helm-charts+staging
display-name: elastic / helm-charts - staging
name: elastic+helm-charts+%BRANCH%+staging
display-name: elastic / helm-charts +%BRANCH%+ - staging tests
description: Staging image testing
concurrent: true
parameters:
- string:
name: BUILD_ID
description: "The buildId for the staging images. (Example: 7.6.1-abcdabcd)"
description: "The buildId for the staging images. (Example: 6.8.9-abcdabcd)"
project-type: multijob
scm:
- git:
Expand All @@ -17,30 +17,30 @@
name: template testing and kubernetes cluster creation
condition: SUCCESSFUL
projects:
- name: elastic+helm-charts+staging+cluster-creation
- name: elastic+helm-charts+%BRANCH%+staging+cluster-creation
current-parameters: true
- multijob:
name: elasticsearch integration testing
condition: ALWAYS
projects:
- name: elastic+helm-charts+staging+integration-elasticsearch
- name: elastic+helm-charts+%BRANCH%+staging+integration-elasticsearch
current-parameters: true
- multijob:
name: integration testing
condition: ALWAYS
projects:
- name: elastic+helm-charts+staging+integration-kibana
- name: elastic+helm-charts+%BRANCH%+staging+integration-kibana
current-parameters: true
- name: elastic+helm-charts+staging+integration-filebeat
- name: elastic+helm-charts+%BRANCH%+staging+integration-filebeat
current-parameters: true
- name: elastic+helm-charts+staging+integration-metricbeat
- name: elastic+helm-charts+%BRANCH%+staging+integration-metricbeat
current-parameters: true
- name: elastic+helm-charts+staging+integration-logstash
- name: elastic+helm-charts+%BRANCH%+staging+integration-logstash
current-parameters: true
- name: elastic+helm-charts+staging+integration-apm-server
- name: elastic+helm-charts+%BRANCH%+staging+integration-apm-server
current-parameters: true
publishers:
- trigger-parameterized-builds:
- project: elastic+helm-charts+staging+cluster-cleanup
- project: elastic+helm-charts+%BRANCH%+staging+cluster-cleanup
current-parameters: true
trigger-with-no-params: false
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
- job:
name: elastic+helm-charts+master+lint-python
display-name: elastic / helm-charts - master - lint python
description: Master - lint python
name: elastic+helm-charts+%BRANCH%+lint-python
display-name: elastic / helm-charts - %BRANCH% - lint python
description: lint python
scm:
- git:
wipe-workspace: 'True'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
- job:
name: elastic+helm-charts+master+template-testing
display-name: elastic / helm-charts - master - template testing
description: Master - template testing
name: elastic+helm-charts+%BRANCH%+template-testing
display-name: elastic / helm-charts - %BRANCH% - template testing
description: template testing
scm:
- git:
wipe-workspace: 'True'
Expand Down
Loading