You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@openwhisk.apache.org by GitBox <gi...@apache.org> on 2019/07/11 14:43:58 UTC

[GitHub] [incubator-openwhisk-devtools] phlucas96 opened a new issue #271: Error setup Kafka provider

phlucas96 opened a new issue #271: Error setup Kafka provider
URL: https://github.com/apache/incubator-openwhisk-devtools/issues/271
 
 
   During the installation of the kafka provider, docker-compose tries to pull the openwhisk/controller:"latest" image instead of the "nightly" image, giving an error:
   
   ```
   Pulling controller (openwhisk/controller:latest)...
   ERROR: manifest for openwhisk/controller:latest not found
   ```
   
   This is because during the "setup-providers" phase of the Makefile, the image prefix and image tag are missing from the "providers.env" file. 
   
   Adding the following lines to the Makefile "setup-providers" phase fixes the problem.
   
   ```
   printf "DOCKER_IMAGE_PREFIX"="openwhisk\n" >> $(TMP_HOME)/tmp/openwhisk/providers.env
   
   printf "DOCKER_IMAGE_TAG"="nightly\n" >> $(TMP_HOME)/tmp/openwhisk/providers.env
   ```

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services