First weekly status update. (#593)

Signed-off-by: Jakub Martin <kubam@spacelift.io>
This commit is contained in:
Kuba Martin 2023-09-26 17:38:40 +02:00 committed by GitHub
parent 4e09565174
commit a7ab3cd5ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 35 additions and 0 deletions

View File

@ -3,6 +3,7 @@
- Manifesto: https://opentofu.org/manifesto
- About the OpenTofu fork: https://opentofu.org/fork
- [Join our Slack community!](https://join.slack.com/t/opentfcommunity/shared_invite/zt-237chyryd-mFULiefrbYGMYQoG72BUpQ)
- [Weekly OpenTofu Status Updates](WEEKLY_UPDATES.md)
![](https://raw.githubusercontent.com/opentofu/brand-artifacts/main/full/transparent/SVG/on-dark.svg#gh-dark-mode-only)
![](https://raw.githubusercontent.com/opentofu/brand-artifacts/main/full/transparent/SVG/on-light.svg#gh-light-mode-only)

34
WEEKLY_UPDATES.md Normal file
View File

@ -0,0 +1,34 @@
# Weekly Updates
## 26.09.2023
Hello!
Weve received some feedback that its currently hard to track the status of OpenTofu and what is currently being worked on. We hear you, and well do better. Were slowly moving discussions from our internal slack to public GitHub issues, to make them more inclusive. In addition, well now be publishing an update like this once a week to give you a breakdown of where were at, what were currently working on, how you can best help, and whats up next.
- Current Status
- Right now were primarily working towards the first alpha release. There are two remaining blockers here:
- Finishing the renaming to OpenTofu. There's only [a single PR](https://github.com/opentofu/opentofu/pull/576) left here.
- Preparing the alpha registry replacement to be ready for use. The main current issue here is [#97](https://github.com/opentofu/registry/issues/97), described in a bit more detail below.
- The [current registry design](https://github.com/opentofu/registry) is a glorified GitHub redirector.
- This is by no means the final design! Its meant to be a “get it working” design for the alpha release. Soon (~once the alpha release is out) well start public discussions regarding the “stable” design for the registry, and were not ruling out any options here yet.
- Right now the main issue is caching. Since the registry is a GitHub redirector, it is affected by GitHub rate limits. The rate limit is 5k requests per hour. We already do extensive caching here, but we can still do better and want to do better prior to the alpha release. [This issue contains more details](https://github.com/opentofu/registry/issues/97) about the work being done here.
- Also, even though OpenTofu alpha will [skip signature validation](https://github.com/opentofu/opentofu/issues/266) **when the key is not available**, were collecting provider signing keys for the registry to serve. So, if youre a provider author, please make sure to create a Pull Request to the registry repo and add your public key. [Here's the latest example of such a PR](https://github.com/opentofu/registry/pull/95).
- Weve also made a mirror of all official HashiCorp providers so that theyre hosted on the OpenTofu GitHub, like any other 3rd-party provider. This included getting all historic versions to build (which was quite a challenge!) but were done with it and the end result is that out of 2260 provider versions we only have 16 failures, which are generally old and broken versions, so you should be able to easily work around this.
- The reason for this is that the registry being a GitHub redirector needs all artifacts on GitHub, while HashiCorp hosts these providers directly on their registry and doesn't include them in GitHub releases.
- Long-term were planning to host these most-used providers on Fastly.
- Up next
- Early next week were planning to make available an alpha release of OpenTofu, with a fully drop-in working registry for providers and modules.
- With the above, well also kick off the discussion around the stable registry.
- Well publish an initial list of requirements for the registry in the [original registry issue](https://github.com/opentofu/opentofu/issues/258). The list itself will be open to changes based on further discussion.
- Based on those requirements, we will be creating RFCs for possible solutions. If youd like to propose a solution, feel free to post an RFC too!
- After having discussions there and possibly doing some PoCs, the technical steering committee will make the final call which approach to pursue.
- How can I help?
- Right now the best way to help is to create issues, discuss on issues, and spread the word about OpenTofu.
- There are some occasional minor issues which are accepted and open to external contribution, esp. ones outside the release-blocking path. Were also happy to accept any minor refactors or linter fixes. [Please see the contributing guide for more details](https://github.com/opentofu/opentofu/blob/main/CONTRIBUTING.md).
- We have multiple engineers available full-time in the core team, so were generally trying to own any issues that are release blockers - this way we can make sure we get to the release as soon as possible.
- The amount of pending-decision-labeled issues on the repository might be a bit off-putting. The reason for that is that right now were prioritizing the alpha and stable release. Only after we have a stable release in place do we aim to start actually accepting enhancement proposals and getting them implemented/merged. Still, we encourage you to open those issues and discuss them!
- Issues and Pull Requests with enhancements or major changes will generally be frozen until we have the first stable release out. We will introduce a milestone to mark them as such more clearly.
- Once we make the alpha release available next week, the best way to help will be by test-driving that release and creating GitHub issues for any problems you find.
Please let us know if you have any feedback on what we could improve, either with these updates or more generally! We're available on Slack, via GitHub issues, or even in the pull request creating this very file.