From dcb4242843e6ee4ec7d7448075b0f5d985e0f1f4 Mon Sep 17 00:00:00 2001 From: Brad White Date: Mon, 7 Apr 2025 11:27:18 -0600 Subject: [PATCH] [FIPS][Build] Add Wolfi tag to FIPS image (#217247) ## Summary Adjusts the Docker tag for the Wolfi FIPS image from `kibana-fips` to `kibana-wolfi-fips` to avoid confusion in the future. The other products use `-fips` naming for released Cloud artifacts but our artifact is `kibana-cloud-fips`. ### Considerations This changeset could be further reaching, but unsure if it's necessary and would like other opinions. If we want to change it now is the time while adoption is low. For example, we're using `--skip-docker-fips` in build scripts or GH label `ci:build-docker-fips`. We could align these better, adding `wolfi` but don't think it is necessary. --- .buildkite/scripts/steps/fips/build.sh | 4 ++-- src/dev/build/tasks/os_packages/docker_generator/run.ts | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.buildkite/scripts/steps/fips/build.sh b/.buildkite/scripts/steps/fips/build.sh index be6af9cdd0e1..310b67fc837b 100755 --- a/.buildkite/scripts/steps/fips/build.sh +++ b/.buildkite/scripts/steps/fips/build.sh @@ -32,9 +32,9 @@ node scripts/build \ cd "$KIBANA_DIR/target" buildkite-agent artifact upload "./*docker-image*.tar.gz" -KIBANA_FIPS_IMAGE="docker.elastic.co/kibana-ci/kibana-fips:$FULL_VERSION-$BUILDKITE_COMMIT" +KIBANA_FIPS_IMAGE="docker.elastic.co/kibana-ci/kibana-wolfi-fips:$FULL_VERSION-$BUILDKITE_COMMIT" -cat <