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
17 changes: 12 additions & 5 deletions .buildkite/pipeline-resource-definitions/kibana-vm-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,24 @@ spec:
provider_settings:
trigger_mode: none
schedules:
daily kibana image build:
daily kibana base image build:
branch: main
cronline: '0 0 * * *'
env:
IMAGES_CONFIG: kibana/images.yml
message: Builds Kibana VM images daily
IMAGES_CONFIG: kibana/base_image.yml
message: Builds Kibana VM base image daily
daily kibana cache layer build:
branch: main
cronline: '0 1 * * *' # make sure this runs after the daily kibana base image build
env:
IMAGES_CONFIG: kibana/image_cache.yml
BASE_IMAGES_CONFIG: 'core/images.yml,kibana/base_image.yml'
message: Builds Kibana VM cache warmup daily
daily kibana fips image build:
branch: main
cronline: '0 4 * * *' # make sure this runs after the daily kibana image build
cronline: '0 4 * * *' # make sure this runs after the daily kibana cache image build
env:
BASE_IMAGES_CONFIG: 'core/images.yml,kibana/images.yml'
BASE_IMAGES_CONFIG: 'core/images.yml,kibana/base_image.yml,kibana/image_cache.yml'
IMAGES_CONFIG: kibana/fips.yml
message: Builds Kibana FIPS VM image daily
teams:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ steps:
async: true
build:
env:
IMAGES_CONFIG: "kibana/images.yml"
IMAGES_CONFIG: 'kibana/image_cache.yml'
BASE_IMAGES_CONFIG: 'core/images.yml,kibana/base_image.yml'
RETRY: "1"
EOF
3 changes: 2 additions & 1 deletion .buildkite/scripts/steps/es_snapshots/promote.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ steps:
async: true
build:
env:
IMAGES_CONFIG: "kibana/images.yml"
IMAGES_CONFIG: 'kibana/image_cache.yml'
BASE_IMAGES_CONFIG: 'core/images.yml,kibana/base_image.yml'
RETRY: "1"
EOF
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ steps:
async: true
build:
env:
IMAGES_CONFIG: "kibana/images.yml"
IMAGES_CONFIG: 'kibana/image_cache.yml'
BASE_IMAGES_CONFIG: 'core/images.yml,kibana/base_image.yml'
RETRY: "1"
EOF
else
Expand Down