Skip to content

Is there a way to setup zilla as a standalone deployment on an aws ec2 instance? #1154

Answered by vordimous
vordimous asked this question in Q&A
Discussion options

You must be logged in to vote

You can install zilla manually by using the Zilla package manager zpm:

#!/bin/bash
set -ex

ZILLA_VERSION=0.9.88

wget "https://raw.githubusercontent.com/aklivity/zilla/${ZILLA_VERSION}/cloud/docker-image/src/main/docker/zpm.json.template"

mkdir -p .zpm/wrapper

wget "https://maven.packages.aklivity.io/io/aklivity/zilla/manager/${ZILLA_VERSION}/manager-${ZILLA_VERSION}.jar" -O .zpm/wrapper/manager-${ZILLA_VERSION}.jar

cat zpm.json.template | sed "s/\${VERSION}/${ZILLA_VERSION}/g" > zpm.json

java -jar .zpm/wrapper/manager-${ZILLA_VERSION}.jar wrap

./zpmw install --debug

./zpmw clean --keep-image

rm zpm.json.template
rm zpm.json
rm zpm-lock.json
rm zpmw

That script will create the zilla

Replies: 1 comment

Comment options

vordimous
Jul 17, 2024
Collaborator Author

You must be logged in to vote
0 replies
Answer selected by vordimous
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
1 participant