Skip to content
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

Speed up ci/cd and release process #7859

Open
kdorosh opened this issue Feb 16, 2023 · 2 comments
Open

Speed up ci/cd and release process #7859

kdorosh opened this issue Feb 16, 2023 · 2 comments
Assignees
Labels
Area: CI/CD Type: Enhancement New feature or request

Comments

@kdorosh
Copy link
Contributor

kdorosh commented Feb 16, 2023

Version

1.14.x (beta)

Is your feature request related to a problem? Please describe.

ci/cd has become a major bottleneck for devs waiting and kicking builds. we shouldn't have to wait an hour for this process to run. instead it should be sub-30 minutes

Describe the solution you'd like

we can speed up docker image creation and building by building without using docker and clever base imaging to add anything that needs to be RUN. istio did this successfully and their images all build in under three seconds https://github.com/solo-io/istio/blob/3ddc0b7d4745cb7241d16f36abe843b8a1590d1d/tools/docker-builder/crane.go#L44-L47

further we can speed up our slow e2e tests by not asking envoy to quit after tests gracefully https://github.com/solo-io/gloo/blob/master/test/services/envoy.go#L541 and instead just kill -9 it ungracefully. we can even explore bringing back optimizations that used to work like https://github.com/solo-io/gloo/blob/master/test/services/envoy.go#L40-L46 which would allow us to run in parallel and there would be no need to wait for envoy to quit before running the next one (i.e. once we kill -9 we can just run the next test as the new envoy will bind to different ports even if the old ports aren't marked as ready yet by the OS)

Describe alternatives you've considered

No response

Additional Context

No response

@kdorosh kdorosh added the Type: Enhancement New feature or request label Feb 16, 2023
@nfuden
Copy link
Contributor

nfuden commented Mar 13, 2023

Split out crane to https://github.com/solo-io/solo-projects/issues/4649

@sam-heilbron
Copy link
Contributor

GME PR that we can mirror for a quick win: https://github.com/solo-io/gloo-mesh-enterprise/pull/8809

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Area: CI/CD Type: Enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

4 participants