mirror of
https://github.com/elastic/logstash.git
synced 2025-04-24 14:47:19 -04:00
This commit adds a Buildkite pipeline to test against serverless endpoint daily Tests cover - es-output - es-input - es-filter - central pipeline management - legacy monitoring - dlq - integration-filter - kibana API - metricbeat stack monitoring Co-authored-by: João Duarte <jsvd@users.noreply.github.com> Co-authored-by: João Duarte <jsvduarte@gmail.com>
10 lines
266 B
Bash
Executable file
10 lines
266 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
install_java() {
|
|
# TODO: let's think about regularly creating a custom image for Logstash which may align on version.yml definitions
|
|
sudo apt update && sudo apt install -y openjdk-17-jdk && sudo apt install -y openjdk-17-jre
|
|
}
|
|
|
|
install_java
|