Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Step 3: incubator-streampipes-installer

Open the extensions installer folder (installer/{version}/{rc}).

The installer contains no files that need to be built, just some bash scripts, docker-compose files and helm charts.

Repeat the following steps for the installer project, similar as explained above:


Verify signature

Code Block
languagebash
titleVerify signature
gpg --verify apache-streampipes-installer-{current-full-version}-incubating-source-release.zip.asc apache-streampipes-installer-{current-full-version}-incubating-source-release.zip

# example
gpg --verify apache-streampipes-installer-0.66.0-incubating-source-release.zip.asc apache-streampipes-installer-0.66.0-incubating-source-release.zip


Verify checksum

Code Block
titleVerify checksum
sha512sum -c apache-streampipes-installer-{current-full-version}-incubating-source-release.zip.sha512

# example:
sha512sum -c apache-streampipes-installer-0.66.0-incubating-source-release.zip.sha512

Make sure the output says OK.


Unzip the source file

Unzip and switch to the parent directory.

Code Block
titleUnzip
unzip apache-streampipes-installer-{current-full-version}-incubating-source-release.zip
cd apache-streampipes-installer-{current-full-version}-incubating/

# example:
unzip apache-streampipes-installer-0.66.0-incubating-source-release.zip
cd apache-streampipes-installer-0.66.0-incubating/


Verify legal information and required files

  •  Verify the existence of LICENSE, NOTICE, README, RELEASE_NOTES and RELEASE_VALIDATION files in the extracted source bundle.
  •  Check the LICENSE file
  •  Check the NOTICE file (e.g., make sure the year is correct)


Step 4: Test

If you have started the core and extensions in Docker as explained in the previous step, you can now switch to the user interface to do functional testing:

Go to Open your browser and go to http://localhost (port 80) to open get to the StreamPipes UI. You'll see the setup screen where you can start the setup procedure.

...