-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Doc update to introduce Tiered Platform Support Model #8224
Conversation
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for writing this up! I did a first review; will be out for a couple weeks and take this back when I return :)
docs/platform-support.md
Outdated
- Kubernetes arm64, i386, arm/v7 and ppc64le | ||
- Docker amd64, arm64, i386, arm/v7 and ppc64le | ||
|
||
The proposed additional platforms Linux on s390x (#378) and AIX on ppc64 ([#19195](https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/19195#issuecomment-1458560971)) will be included into Tier 3 once they're added to the OpenTelemetry Collector as platforms. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The proposed additional platforms Linux on s390x (#378) and AIX on ppc64 ([#19195](https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/19195#issuecomment-1458560971)) will be included into Tier 3 once they're added to the OpenTelemetry Collector as platforms. | |
The proposed additional platforms Linux on s390x ([#378](https://github.com/open-telemetry/opentelemetry-collector-releases/issues/378#issuecomment-1662371014)) and AIX on ppc64 ([#19195](https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/19195#issuecomment-1458560971)) will be included into Tier 3 once they're added to the OpenTelemetry Collector as platforms. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Instead of linking to specific issue comments here, it is sufficient to link to the related issues. I will update the link for AIX on ppc64.
Co-authored-by: Aunsh Chaudhari <[email protected]>
Reference issue for AIX on ppc64 support, instead of a specific issue comment.
This PR was marked stale due to lack of activity. It will be closed in 14 days. |
Codecov ReportPatch has no changes to coverable lines. 📢 Thoughts on this report? Let us know!. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me, just one suggestion about formatting. Thanks for your hard work on this @rrschulze!!
Co-authored-by: Pablo Baeyens <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the writeup! Only a few comments.
Co-authored-by: Alex Boten <[email protected]>
Co-authored-by: Alex Boten <[email protected]>
Co-authored-by: Alex Boten <[email protected]>
Co-authored-by: Alex Boten <[email protected]>
Co-authored-by: Alex Boten <[email protected]>
Co-authored-by: Alex Boten <[email protected]>
Removed the listing of specific platforms for container images and added reference to goreleaser configuration.
Q: what happens when a tier-3 platform build starts failing? Is the release process already resilient enough to such failures to ensure that the other platforms are still released? |
@yurishkuro Right now it would make the build fail, but it would be easy enough to temporarily exclude a particular platform from the build with a small PR that we can later revert. Maybe we can make it easier, if you have concrete ideas please file an issue :) In any case IMO this text should be read as a guide to make decisions (what to do when we have a question such as "should we delay the release because of a problem specific to platform X?") than as a prescription on what our release pipeline should look like. |
Description: This PR adds documentation to introduce a tiered platform support model for the OpenTelemetry Collector. The tiered platform support model provides clarity to the project and its users about how existing platforms are supported today and how requests for new platforms can be supported in future, while balancing between the aim to support as many platforms as possible and to guarantee stability for the most important platforms.
Link to tracking Issue: #8209