-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Deploy K8S Pipeline migration (#38659) * updated auditbeat & deploy k8s pipelines * added kind & kuve env vars, set higer ulimit * added k8s env setup (cherry picked from commit aaa4829) * fixed conflicts n fileinfo test * updated auditbeat and filebeat pipelines * added macos arm image --------- Co-authored-by: Olga Naydyonock <[email protected]>
- Loading branch information
1 parent
bf7f58c
commit ff9add2
Showing
24 changed files
with
679 additions
and
408 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,65 @@ | ||
# yaml-language-server: $schema=https://raw.githubusercontent.com/buildkite/pipeline-schema/main/schema.json | ||
|
||
env: | ||
IMAGE_UBUNTU_X86_64: "family/platform-ingest-beats-ubuntu-2204" | ||
GCP_HI_PERF_MACHINE_TYPE: "c2d-highcpu-16" | ||
|
||
steps: | ||
- label: "Example test" | ||
command: echo "Hello!" | ||
- label: "Checks" | ||
command: ".buildkite/deploy/kubernetes/scripts/make.sh" | ||
if: build.env("BUILDKITE_PULL_REQUEST") != "false" && build.env("GITHUB_PR_LABELS") == "kubernetes" | ||
notify: | ||
- github_commit_status: | ||
context: "Deploy K8S/Checks" | ||
agents: | ||
provider: "gcp" | ||
image: "${IMAGE_UBUNTU_X86_64}" | ||
machineType: "${GCP_HI_PERF_MACHINE_TYPE}" | ||
|
||
- label: "K8S Test/K8S version: v1.29.0" | ||
key: "k8s-test-129" | ||
env: | ||
K8S_VERSION: "v1.29.0" | ||
commands: | ||
- "MODULE=kubernetes make -C metricbeat integration-tests" | ||
- "make -C deploy/kubernetes test" | ||
agents: | ||
provider: "gcp" | ||
image: "${IMAGE_UBUNTU_X86_64}" | ||
machineType: "${GCP_HI_PERF_MACHINE_TYPE}" | ||
|
||
- label: "K8S Test/K8S version: v1.28.0" | ||
key: "k8s-test-128" | ||
env: | ||
K8S_VERSION: "v1.28.0" | ||
commands: | ||
- "MODULE=kubernetes make -C metricbeat integration-tests" | ||
- "make -C deploy/kubernetes test" | ||
agents: | ||
provider: "gcp" | ||
image: "${IMAGE_UBUNTU_X86_64}" | ||
machineType: "${GCP_HI_PERF_MACHINE_TYPE}" | ||
|
||
- label: "K8S Test/K8S version: v1.27.3" | ||
key: "k8s-test-1273" | ||
env: | ||
K8S_VERSION: "v1.27.3" | ||
commands: | ||
- "MODULE=kubernetes make -C metricbeat integration-tests" | ||
- "make -C deploy/kubernetes test" | ||
agents: | ||
provider: "gcp" | ||
image: "${IMAGE_UBUNTU_X86_64}" | ||
machineType: "${GCP_HI_PERF_MACHINE_TYPE}" | ||
|
||
- label: "K8S Test/K8S version: v1.26.6" | ||
key: "k8s-test-1266" | ||
env: | ||
K8S_VERSION: "v1.26.6" | ||
commands: | ||
- "MODULE=kubernetes make -C metricbeat integration-tests" | ||
- "make -C deploy/kubernetes test" | ||
agents: | ||
provider: "gcp" | ||
image: "${IMAGE_UBUNTU_X86_64}" | ||
machineType: "${GCP_HI_PERF_MACHINE_TYPE}" |
Oops, something went wrong.