We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
./sandbox up
I'm following the TICK stack getting setup documentation. Executing ./sandbox up fails with the following message:
=> CANCELED ... failed to parse stage name "kapacitor:kapacitor:latest": invalid reference format
The thing to pay attention to here is kapacitor:kapacitor:latest. That is likely because of the .env which adds the image name to the tag variables.
Replacing the contents of the .env from
TELEGRAF_TAG=telegraf:latest INFLUXDB_TAG=influxdb:1.8 CHRONOGRAF_TAG=chronograf:latest KAPACITOR_TAG=kapacitor:latest
to
TELEGRAF_TAG=latest INFLUXDB_TAG=1.8 CHRONOGRAF_TAG=latest KAPACITOR_TAG=latest
fixed the issue
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm following the TICK stack getting setup documentation. Executing
./sandbox up
fails with the following message:The thing to pay attention to here is kapacitor:kapacitor:latest. That is likely because of the .env which adds the image name to the tag variables.
Replacing the contents of the .env from
to
fixed the issue
The text was updated successfully, but these errors were encountered: