Skip to content

Commit

Permalink
Docs: Add note about oss repositories for deb/rpm (elastic#26475)
Browse files Browse the repository at this point in the history
* Docs: Add note about oss repositories for deb/rpm

Add documentation on the `oss-*` yum and apt repositories.

* Specify kibana-oss package name
  • Loading branch information
Chris Koehnke authored and Conky5 committed Dec 5, 2018
1 parent 4cd2360 commit d3b88c2
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 0 deletions.
29 changes: 29 additions & 0 deletions docs/setup/install/deb.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,35 @@ Examine +/etc/apt/sources.list.d/kibana-{major-version}.list+ for the duplicate

endif::[]

ifeval::["{release-state}"!="unreleased"]

[NOTE]
==================================================
An alternative package, `kibana-oss`, which contains only features that are available under the
Apache 2.0 license is also available. To install it, use the following sources list:
ifeval::["{release-state}"=="prerelease"]
["source","sh",subs="attributes,callouts"]
--------------------------------------------------
echo "deb https://artifacts.elastic.co/packages/oss-{major-version}-prerelease/apt stable main" | sudo tee -a /etc/apt/sources.list.d/elastic-{major-version}.list
--------------------------------------------------
endif::[]
ifeval::["{release-state}"!="prerelease"]
["source","sh",subs="attributes,callouts"]
--------------------------------------------------
echo "deb https://artifacts.elastic.co/packages/oss-{major-version}/apt stable main" | sudo tee -a /etc/apt/sources.list.d/elastic-{major-version}.list
--------------------------------------------------
endif::[]
==================================================

endif::[]

[[install-deb]]
==== Download and install the Debian package manually
Expand Down
30 changes: 30 additions & 0 deletions docs/setup/install/rpm.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,36 @@ sudo zypper install kibana <3>

endif::[]

ifeval::["{release-state}"!="unreleased"]

[NOTE]
==================================================
An alternative package, `kibana-oss`, which contains only features that are available under the
Apache 2.0 license is also available. To install it, use the following `baseurl` in your `kibana.repo` file:
ifeval::["{release-state}"=="prerelease"]
["source","sh",subs="attributes,callouts"]
--------------------------------------------------
baseurl=https://artifacts.elastic.co/packages/oss-{major-version}-prerelease/yum
--------------------------------------------------
endif::[]
ifeval::["{release-state}"!="prerelease"]
["source","sh",subs="attributes,callouts"]
--------------------------------------------------
baseurl=https://artifacts.elastic.co/packages/oss-{major-version}/yum
--------------------------------------------------
endif::[]
==================================================

endif::[]

[[install-rpm]]
==== Download and install the RPM manually

Expand Down

0 comments on commit d3b88c2

Please sign in to comment.