Files
stream-applications/local

Local Development Support

The files in this folder are to support local testing and development.

These scripts are useful when you want to build the containers on a different architecture and publish to a private repo.

download-apps.sh

Downloads all applications needed by create-containers.sh from Maven repository.

If the timestamp of snapshots matches the download will be skipped.

Usage: download-apps.sh [version] [broker] [filter]

  • version is the stream applications version like 3.2.1 or default is 3.2.2-SNAPSHOT
  • broker is one of rabbitmq, rabbit or kafka
  • filter is a name of an application or a partial name that will be matched.

create-containers.sh

Creates all containers and pushes to local docker registry.

This script requires jib-cli

Usage: create-containers.sh [version] [broker] [jre-version] [filter]

  • version is the skipper version like 3.2.1 or default is 3.2.2-SNAPSHOT
  • broker is one of rabbitmq, rabbit or kafka
  • jre-version should be one of 11, 17
  • filter is a name of an application or a partial name that will be matched.

If the file is not present required to create the container the script will skip the one.

pack-containers.sh

Creates all containers and pushes to local docker registry.

This script requires pack

Usage: pack-containers.sh [version] [broker] [jre-version] [filter]

  • version is the skipper version like 3.2.1 or default is 3.2.2-SNAPSHOT
  • broker is one of rabbitmq, rabbit or kafka
  • jre-version should be one of 11, 17
  • filter is a name of an application or a partial name that will be matched.

If the file is not present required to create the container the script will skip the one.

If any parameter is provided all those to the left of it should be considered required.