Skip to content
Open
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
21 changes: 21 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,17 @@ jobs:
docker buildx create tls-env --use
docker buildx build --push --platform=linux/arm64,linux/amd64 -t graviteeio/k6:latest -f images/k6/Dockerfile images/k6/

build-and-push-logstash:
executor: docker/docker
steps:
- checkout
- prepare-docker-context
- run:
command: |
docker context create tls-env
docker buildx create tls-env --use
docker buildx build --push --platform=linux/arm64,linux/amd64 --build-arg logstash_version=<< parameters.version >> -t graviteeio/logstash:<< parameters.version >> -f images/logstash/Dockerfile images/logstash/
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

not graviteeio/logstash but graviteeio.azurecr.io/logstash


add-docker-images-in-snyk:
docker:
- image: cimg/base:stable
Expand Down Expand Up @@ -166,6 +177,16 @@ workflows:
- build nginx 1.27.1
docker-image-name: nginx
version: "1.27.1"
- build-and-push-logstash:
name: build logstash 8.12.1
context: cicd-orchestrator
version: "8.12.1"
- add-docker-images-in-snyk:
context: cicd-orchestrator
requires:
- build logstash 8.12.1
docker-image-name: logstash
version: "8.12.1"
- build-and-push-git-http-server:
context: cicd-orchestrator
- add-docker-images-in-snyk:
Expand Down