-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
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
Support to install atest in Docker and Kubernetes #105
Comments
Hi, I'm a learner of go language and full stack and I'm interested in this repo, so I'd like to start with this GOOD FIRST ISSUE, what I can understand is: you need me to add download options for linux and docker. But how do I add them? I was starting to think it should be added in a file like make.sh, but I realized I didn't find anything like that. |
First, I need to say sorry about this issue. Consider this feature can be independent. I already moved it to a new repository go-service. Please go ahead if this situation does not bother you. As you can see from the following document. There are multiple ways to install
https://linuxsuren.github.io/api-testing/#installation So I'm thinking about how to make it easier. For instance, we can install it like: Finally, I guess this issue relates to two repositories. |
Since it was moved to a new repo, I guess this issue can be closed, right? : ) |
IMO, go-service will complete the most work, and this project still need to call the relevant functions to finish this issue. |
atest
could install as a Linux or macOS service according to the OS until v0.0.12. See also the following output. See the code lines of this sub-commandatest
could run in Docker or Kubernetes as well. So, it's good to support installing in Docker and Kubernetes. You could find the Kubernetes manifest files.In order to specify the target environment, we could add a new flag
--target
. For example:atest service install --target (os | docker | kubernetes)
Considering the compatibility, we could make the default value of
--target
to beos
.The text was updated successfully, but these errors were encountered: