Skip to content

Commit

Permalink
Remove references to "release" in tips docs (#4404)
Browse files Browse the repository at this point in the history
  • Loading branch information
matschaffer committed Oct 6, 2022
1 parent 44ad611 commit 1962e5b
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions docs/tips_for_building_integrations.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,23 +27,18 @@ $ ./elastic-package help
Tagging the integration with a lower version, like `0.0.1`, means that it's at very early stage and most likely
it doesn't work at all. It might be partially developed.

2. Set the initial release to `beta`.

If you working on the new integration that will be release in the next release cycle, you can tag it with `beta`.
Otherwise, feel free to stick with the `experimental` tag.

3. Select one or two categories for the integration.
2. Select one or two categories for the integration.

The list of available categories is present in the Package Registry source: https://github.com/elastic/package-registry/blob/79e456c86a7a83b1da1f3f5b15d0ca59fdb48337/packages/package.go#L29-L54

4. Make sure that the version condition for Kibana is set to `^7.10.0` and not `>=7.10.0`. Otherwise the package is also in 8.0.0 but we do not know today if it will actually be compatible with >= 8.0.0.
3. Make sure that the version condition for Kibana is set to `^7.10.0` and not `>=7.10.0`. Otherwise the package is also in 8.0.0 but we do not know today if it will actually be compatible with >= 8.0.0.

```yaml
conditions:
kibana.version: '^7.10.0'
```

5. Set the proper package owner (either Github team or personal account)
4. Set the proper package owner (either Github team or personal account)

Good candidates for a team: `elastic/integrations`, `elastic/security-external-integrations`

Expand Down Expand Up @@ -134,5 +129,4 @@ $ ./elastic-package help
```yaml
- name: mypackage.mydataset
type: group
release: experimental
```

0 comments on commit 1962e5b

Please sign in to comment.