-
The Below are the commands I tried.
Building for instance, just the
I noticed these lines & they seem to be missing the file/directory specified in the LHS of the But - if I manually copy over the directories and files from I'm sure I'm missing something quite basic. |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments
-
Hi @anokun7 , Your meepctl configuration seems to have an error in the Here is what my config looks like:
The docker registry name is important and required to store the platform docker images correctly for deployment. |
Beta Was this translation helpful? Give feedback.
-
Thank you @dilallkx So I have tried using the default as well, which was
|
Beta Was this translation helpful? Give feedback.
-
Hi @anokun7 , You are correct, you should be able to use a different docker registry and this does not seem to be the cause of the issue you are observing. Your issue seems to be caused by a meep-virt-engine build failure. The folder NOTE: The microservice binaries must be successfully built using the Here is a link to the AdvantEDGE build wiki page: The build logs should give us more information about the error. |
Beta Was this translation helpful? Give feedback.
-
Ah. That was it. 👍 I was trying to get away from setting up a development/build environment. It seemed especially promising when I was able to download the `meepctl` binary without having to build it using a development environment. It seemed even more promising when I was able to run `meepctl deploy dep` without using docker at all. I think we can either host pre-built docker images or at least prepare a development environment within a docker container. It would be nice to have a deployment only option. It would be more friction-less that way, IMO.Thank you @dilallkx 🙏 - I was able to run |
Beta Was this translation helpful? Give feedback.
-
Hi @anokun7 , Glad to hear this fixed your issue! WRT installation from binaries (to avoid dev environment setup) this is possible for major releases and is briefly described in the wiki procedure here: https://github.com/InterDigitalInc/AdvantEDGE/wiki#getting-started You must extract the release binaries to the AdvantEDGE folder, which should create the /bin folder with the release binaries. The meepctl dockerize command should then work correctly. You mention that you were able to get the meepctl binary, the platform binaries should have been in the same archive. Please let me know if this is not the case. Note: For release v1.6.1 hotfix, the v1.6.0 binaries should be used. I will update the v1.6.1 release notes accordingly. Also, I agree that a containerized dev environment would be great... it is on our improvement roadmap! |
Beta Was this translation helpful? Give feedback.
Hi @anokun7 ,
You are correct, you should be able to use a different docker registry and this does not seem to be the cause of the issue you are observing.
Your issue seems to be caused by a meep-virt-engine build failure. The folder
/home/ec2-user/AdvantEDGE/bin/meep-virt-engine
should be created when you build the meep-virt-engine and it should contain a copy of the Dockerfile and the meep-virt-engine binary. Please run the following command and provide the build logs to check for errors:meepctl build meep-virt-engine -v
NOTE: The microservice binaries must be successfully built using the
meepctl build
command before using themeepctl dockerize
command to create the platform docker ima…