-
If Zilla is restricted to one environment, Is there a possibility that zilla can access the Kafka cluster in a different environment? |
Beta Was this translation helpful? Give feedback.
Answered by
vordimous
Jul 17, 2024
Replies: 1 comment
-
You can install zilla manually by using the Zilla package manager #!/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 start -c ./path/to/zilla.yaml |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
vordimous
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can install zilla manually by using the Zilla package manager
zpm
:That script will create the
zilla
…