-
Notifications
You must be signed in to change notification settings - Fork 0
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
chore: automate checking that the quickstart works as expected #250
base: main
Are you sure you want to change the base?
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
707db7a
to
b41be77
Compare
Hey @leggetter, a few notes after I went over this quickstart test here. First I just want to catch up on the My POV is that the top-level .env.example is for Outpost contributor who needs to be very familiar with Outpost available configuration and needs the .env to tweak it as they work on the service. There seems to be a lot going on in this example and therefore may not be the best thing to introduce to a user who just wants to get things going. That’s just my 2c here. Ultimately, it’s up to you whether you think the top-level .env.example is suitable for the quickstart. Regardless, I’d love to know your thoughts so that I can adjust how we evolve that example. As of right now, when I make changes to .env.example, I don’t think about a potential user use case, so it would be helpful to know so that I can account for that audience as well. Back to the automation changes, the biggest thing I want to highlight is the main objective of this script. I understand we want an automated way to test if the quickstart is working correctly. When do you want it to run? (manually, GitHub action, etc.) The thing is the quickstart is set up to use a specific release, so I just want to make sure we’re on the same page that it won’t catch changes between commits if a new release is not provisioned. The git clone line sort of led me to assume that you want to test every commit change, in which case this won’t solve that. We may need to rethink how we want to go about that, so would be great to discuss a bit more high-level objectives if possible too. A few smaller feedback 1: There are 2 scripts, quickstart.sh and clean.sh, and it feels like they’re supposed to be run a bit differently. For example, I have to run from the root dir 2: We should consider docker-compose ... down to clean up the Docker containers usage as well? 3: I wonder if |
The ability to run manually to check things are working as outlined in the docs and upon release/merge into main. Not on every commit. My assumption was that merging to main was the point at which we run a release. So, there's probably a discussion we should have about that.
I added
Good idea.
The goal is to ensure the release is inline with the quickstart. So, it is kind of top-level. How about |
Yes, but in order for the script to work, it must: 1: wait AFTER the release is live on Docker Currently, we specify the version in the quickstart example. Can you clarify again why we need to
Ultimately I don't want to nit too much on this, so whichever works for you! We can always change later if necessary. Just a suggestion, maybe something with |
I believe we should treat docs as part of the product, so should not allow a "full" release to go out if the docs are inaccurate. I see we release on a tag being applied. Could we also create a new docker image when a merge to main takes place? We should also ensure that the YAML is up to date. But there's definitely a chicken-and-egg problem here 🤔 Is there a |
We can but would that "clutter" the Docker page? Maybe that doesn't matter.
Yes, there is an option. We pinned a specific version because I wanted to make sure the quickstart would always work and was concerned "latest" won't work if documentation is outdated. I do agree with your sentiment that it shouldn't happen, so we can adjust there. One minor note is that Let's circle back to the workflow here. My understanding is you want to run this on every PR before (or after) a commit is merged to Or maybe we should run this before making a new release? Regardless, I think one solution is to build the Docker image in CI and run the quickstart off of that image. Let me know if you'd like my help setting something like this, or a workflow that works for you. Happy to dig in, just need to make sure we're on the same page first. |
TODO
acceptance-tests/docs/quickstart.sh
clean.sh
and clean up inquickstart.sh
docker-compose ... down
.env
in appropriate place in theexamples
directory and use that instead of the top-level example