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:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to