mirror of
https://github.com/YunoHost-Apps/elasticsearch8_ynh.git
synced 2024-09-03 18:26:26 +02:00
commit
1b0d98adf4
9 changed files with 39 additions and 78 deletions
5
.github/workflows/updater.sh
vendored
5
.github/workflows/updater.sh
vendored
|
@ -17,7 +17,7 @@
|
||||||
current_version=$(cat manifest.json | jq -j '.version|split("~")[0]')
|
current_version=$(cat manifest.json | jq -j '.version|split("~")[0]')
|
||||||
repo=$(cat manifest.json | jq -j '.upstream.code|split("https://github.com/")[1]')
|
repo=$(cat manifest.json | jq -j '.upstream.code|split("https://github.com/")[1]')
|
||||||
# Some jq magic is needed, because the latest upstream release is not always the latest version (e.g. security patches for older versions)
|
# Some jq magic is needed, because the latest upstream release is not always the latest version (e.g. security patches for older versions)
|
||||||
version=$(curl --silent "https://api.github.com/repos/$repo/releases" | jq -r '.[] | select( .prerelease != true) | .tag_name | select( startswith("v7") )' | sort -V | tail -1)
|
version=$(curl --silent "https://api.github.com/repos/$repo/releases" | jq -r '.[] | select( .prerelease != true) | .tag_name | select( startswith("v8") )' | sort -V | tail -1)
|
||||||
|
|
||||||
# Later down the script, we assume the version has only digits and dots
|
# Later down the script, we assume the version has only digits and dots
|
||||||
# Sometimes the release name starts with a "v", so let's filter it out.
|
# Sometimes the release name starts with a "v", so let's filter it out.
|
||||||
|
@ -105,7 +105,8 @@ done
|
||||||
#=================================================
|
#=================================================
|
||||||
|
|
||||||
# Replace new version in manifest
|
# Replace new version in manifest
|
||||||
echo "$(jq -s --indent 4 ".[] | .version = \"$version~ynh1\"" manifest.json)" > manifest.json
|
admindoc="https://www.elastic.co/guide/en/elasticsearch/reference/$(echo $version | grep -Po "^\d+\.\d+")/elasticsearch-intro.html"
|
||||||
|
echo "$(jq -s --indent 4 ".[] | .version = \"$version~ynh1\" | .upstream.admindoc = \"$admindoc\"" manifest.json)" > manifest.json
|
||||||
|
|
||||||
# No need to update the README, yunohost-bot takes care of it
|
# No need to update the README, yunohost-bot takes care of it
|
||||||
|
|
||||||
|
|
10
LICENSE
10
LICENSE
|
@ -1,7 +1,7 @@
|
||||||
GNU AFFERO GENERAL PUBLIC LICENSE
|
GNU AFFERO GENERAL PUBLIC LICENSE
|
||||||
Version 3, 19 November 2007
|
Version 3, 19 November 2007
|
||||||
|
|
||||||
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
||||||
Everyone is permitted to copy and distribute verbatim copies
|
Everyone is permitted to copy and distribute verbatim copies
|
||||||
of this license document, but changing it is not allowed.
|
of this license document, but changing it is not allowed.
|
||||||
|
|
||||||
|
@ -643,11 +643,7 @@ the "copyright" line and a pointer to where the full notice is found.
|
||||||
GNU Affero General Public License for more details.
|
GNU Affero General Public License for more details.
|
||||||
|
|
||||||
You should have received a copy of the GNU Affero General Public License
|
You should have received a copy of the GNU Affero General Public License
|
||||||
<<<<<<< HEAD
|
|
||||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
=======
|
|
||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
>>>>>>> 6337cd6 (First commit (based on elasticsearch7_ynh))
|
|
||||||
|
|
||||||
Also add information on how to contact you by electronic and paper mail.
|
Also add information on how to contact you by electronic and paper mail.
|
||||||
|
|
||||||
|
@ -662,9 +658,5 @@ specific requirements.
|
||||||
You should also get your employer (if you work as a programmer) or school,
|
You should also get your employer (if you work as a programmer) or school,
|
||||||
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||||
For more information on this, and how to apply and follow the GNU AGPL, see
|
For more information on this, and how to apply and follow the GNU AGPL, see
|
||||||
<<<<<<< HEAD
|
|
||||||
<https://www.gnu.org/licenses/>.
|
|
||||||
=======
|
|
||||||
<http://www.gnu.org/licenses/>.
|
<http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
>>>>>>> 6337cd6 (First commit (based on elasticsearch7_ynh))
|
|
||||||
|
|
36
README.md
36
README.md
|
@ -3,31 +3,23 @@ N.B.: This README was automatically generated by https://github.com/YunoHost/app
|
||||||
It shall NOT be edited by hand.
|
It shall NOT be edited by hand.
|
||||||
-->
|
-->
|
||||||
|
|
||||||
# ElasticSearch 7 for YunoHost
|
# ElasticSearch 8 for YunoHost
|
||||||
|
|
||||||
[](https://dash.yunohost.org/appci/app/elasticsearch7)  
|
[](https://dash.yunohost.org/appci/app/elasticsearch8)  
|
||||||
[](https://install-app.yunohost.org/?app=elasticsearch7)
|
[](https://install-app.yunohost.org/?app=elasticsearch8)
|
||||||
|
|
||||||
*[Lire ce readme en français.](./README_fr.md)*
|
*[Lire ce readme en français.](./README_fr.md)*
|
||||||
|
|
||||||
> *This package allows you to install ElasticSearch 7 quickly and simply on a YunoHost server.
|
> *This package allows you to install ElasticSearch 8 quickly and simply on a YunoHost server.
|
||||||
If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/install) to learn how to install it.*
|
If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/install) to learn how to install it.*
|
||||||
|
|
||||||
## Overview
|
## Overview
|
||||||
|
|
||||||
Elasticsearch is the distributed, RESTful search and analytics engine at the heart of the [Elastic Stack](https://www.elastic.co/products). You can use Elasticsearch to store, search, and manage data for:
|
Elasticsearch is the distributed, RESTful search and analytics engine at the heart of the [Elastic Stack](https://www.elastic.co/products). You can use Elasticsearch to store, search, and manage data for logs, metrics, search backend, application monitoring, Endpoint security.
|
||||||
- Logs
|
|
||||||
- Metrics
|
|
||||||
- A search backend
|
|
||||||
- Application monitoring
|
|
||||||
- Endpoint security
|
|
||||||
|
|
||||||
... and more!
|
|
||||||
|
|
||||||
To learn more about Elasticsearch’s features and capabilities, see the [product page](https://www.elastic.co/products/elasticsearch).
|
To learn more about Elasticsearch’s features and capabilities, see the [product page](https://www.elastic.co/products/elasticsearch).
|
||||||
|
|
||||||
|
|
||||||
**Shipped version:** 7.17.8~ynh3
|
**Shipped version:** 8.6.0~ynh1
|
||||||
|
|
||||||
**Demo:** https://www.elastic.co/demos
|
**Demo:** https://www.elastic.co/demos
|
||||||
## Disclaimers / important information
|
## Disclaimers / important information
|
||||||
|
@ -38,28 +30,24 @@ To learn more about Elasticsearch’s features and capabilities, see the [produc
|
||||||
- Therefore, the package is configured to remain not public for now (i.e. not accessible through the web, the apps depending on it should be installed on the same server)
|
- Therefore, the package is configured to remain not public for now (i.e. not accessible through the web, the apps depending on it should be installed on the same server)
|
||||||
- Not scalable for now
|
- Not scalable for now
|
||||||
|
|
||||||
## :red_circle: Antifeatures
|
|
||||||
|
|
||||||
- **Not totally free upstream**: The packaged app is under an overall free licence, but with clauses that restrict its use.
|
|
||||||
|
|
||||||
## Documentation and resources
|
## Documentation and resources
|
||||||
|
|
||||||
* Official app website: <https://elastic.co>
|
* Official app website: <https://elastic.co>
|
||||||
* Official admin documentation: <https://www.elastic.co/guide/en/elasticsearch/reference/7.17/elasticsearch-intro.html>
|
* Official admin documentation: <https://www.elastic.co/guide/en/elasticsearch/reference/8.6/elasticsearch-intro.html>
|
||||||
* Upstream app code repository: <https://github.com/elastic/elasticsearch>
|
* Upstream app code repository: <https://github.com/elastic/elasticsearch>
|
||||||
* YunoHost documentation for this app: <https://yunohost.org/app_elasticsearch7>
|
* YunoHost documentation for this app: <https://yunohost.org/app_elasticsearch8>
|
||||||
* Report a bug: <https://github.com/YunoHost-Apps/elasticsearch7_ynh/issues>
|
* Report a bug: <https://github.com/YunoHost-Apps/elasticsearch8_ynh/issues>
|
||||||
|
|
||||||
## Developer info
|
## Developer info
|
||||||
|
|
||||||
Please send your pull request to the [testing branch](https://github.com/YunoHost-Apps/elasticsearch7_ynh/tree/testing).
|
Please send your pull request to the [testing branch](https://github.com/YunoHost-Apps/elasticsearch8_ynh/tree/testing).
|
||||||
|
|
||||||
To try the testing branch, please proceed like that.
|
To try the testing branch, please proceed like that.
|
||||||
|
|
||||||
``` bash
|
``` bash
|
||||||
sudo yunohost app install https://github.com/YunoHost-Apps/elasticsearch7_ynh/tree/testing --debug
|
sudo yunohost app install https://github.com/YunoHost-Apps/elasticsearch8_ynh/tree/testing --debug
|
||||||
or
|
or
|
||||||
sudo yunohost app upgrade elasticsearch7 -u https://github.com/YunoHost-Apps/elasticsearch7_ynh/tree/testing --debug
|
sudo yunohost app upgrade elasticsearch8 -u https://github.com/YunoHost-Apps/elasticsearch8_ynh/tree/testing --debug
|
||||||
```
|
```
|
||||||
|
|
||||||
**More info regarding app packaging:** <https://yunohost.org/packaging_apps>
|
**More info regarding app packaging:** <https://yunohost.org/packaging_apps>
|
||||||
|
|
36
README_fr.md
36
README_fr.md
|
@ -3,31 +3,23 @@ N.B.: This README was automatically generated by https://github.com/YunoHost/app
|
||||||
It shall NOT be edited by hand.
|
It shall NOT be edited by hand.
|
||||||
-->
|
-->
|
||||||
|
|
||||||
# ElasticSearch 7 pour YunoHost
|
# ElasticSearch 8 pour YunoHost
|
||||||
|
|
||||||
[](https://dash.yunohost.org/appci/app/elasticsearch7)  
|
[](https://dash.yunohost.org/appci/app/elasticsearch8)  
|
||||||
[](https://install-app.yunohost.org/?app=elasticsearch7)
|
[](https://install-app.yunohost.org/?app=elasticsearch8)
|
||||||
|
|
||||||
*[Read this readme in english.](./README.md)*
|
*[Read this readme in english.](./README.md)*
|
||||||
|
|
||||||
> *Ce package vous permet d'installer ElasticSearch 7 rapidement et simplement sur un serveur YunoHost.
|
> *Ce package vous permet d'installer ElasticSearch 8 rapidement et simplement sur un serveur YunoHost.
|
||||||
Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour savoir comment l'installer et en profiter.*
|
Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour savoir comment l'installer et en profiter.*
|
||||||
|
|
||||||
## Vue d'ensemble
|
## Vue d'ensemble
|
||||||
|
|
||||||
Elasticsearch is the distributed, RESTful search and analytics engine at the heart of the [Elastic Stack](https://www.elastic.co/products). You can use Elasticsearch to store, search, and manage data for:
|
Elasticsearch is the distributed, RESTful search and analytics engine at the heart of the [Elastic Stack](https://www.elastic.co/products). You can use Elasticsearch to store, search, and manage data for logs, metrics, search backend, application monitoring, Endpoint security.
|
||||||
- Logs
|
|
||||||
- Metrics
|
|
||||||
- A search backend
|
|
||||||
- Application monitoring
|
|
||||||
- Endpoint security
|
|
||||||
|
|
||||||
... and more!
|
|
||||||
|
|
||||||
To learn more about Elasticsearch’s features and capabilities, see the [product page](https://www.elastic.co/products/elasticsearch).
|
To learn more about Elasticsearch’s features and capabilities, see the [product page](https://www.elastic.co/products/elasticsearch).
|
||||||
|
|
||||||
|
|
||||||
**Version incluse :** 7.17.8~ynh3
|
**Version incluse :** 8.6.0~ynh1
|
||||||
|
|
||||||
**Démo :** https://www.elastic.co/demos
|
**Démo :** https://www.elastic.co/demos
|
||||||
## Avertissements / informations importantes
|
## Avertissements / informations importantes
|
||||||
|
@ -38,28 +30,24 @@ To learn more about Elasticsearch’s features and capabilities, see the [produc
|
||||||
- Therefore, the package is configured to remain not public for now (i.e. not accessible through the web, the apps depending on it should be installed on the same server)
|
- Therefore, the package is configured to remain not public for now (i.e. not accessible through the web, the apps depending on it should be installed on the same server)
|
||||||
- Not scalable for now
|
- Not scalable for now
|
||||||
|
|
||||||
## :red_circle: Fonctions indésirables
|
|
||||||
|
|
||||||
- **Not totally free upstream**: The packaged app is under an overall free licence, but with clauses that restrict its use.
|
|
||||||
|
|
||||||
## Documentations et ressources
|
## Documentations et ressources
|
||||||
|
|
||||||
* Site officiel de l'app : <https://elastic.co>
|
* Site officiel de l'app : <https://elastic.co>
|
||||||
* Documentation officielle de l'admin : <https://www.elastic.co/guide/en/elasticsearch/reference/7.17/elasticsearch-intro.html>
|
* Documentation officielle de l'admin : <https://www.elastic.co/guide/en/elasticsearch/reference/8.6/elasticsearch-intro.html>
|
||||||
* Dépôt de code officiel de l'app : <https://github.com/elastic/elasticsearch>
|
* Dépôt de code officiel de l'app : <https://github.com/elastic/elasticsearch>
|
||||||
* Documentation YunoHost pour cette app : <https://yunohost.org/app_elasticsearch7>
|
* Documentation YunoHost pour cette app : <https://yunohost.org/app_elasticsearch8>
|
||||||
* Signaler un bug : <https://github.com/YunoHost-Apps/elasticsearch7_ynh/issues>
|
* Signaler un bug : <https://github.com/YunoHost-Apps/elasticsearch8_ynh/issues>
|
||||||
|
|
||||||
## Informations pour les développeurs
|
## Informations pour les développeurs
|
||||||
|
|
||||||
Merci de faire vos pull request sur la [branche testing](https://github.com/YunoHost-Apps/elasticsearch7_ynh/tree/testing).
|
Merci de faire vos pull request sur la [branche testing](https://github.com/YunoHost-Apps/elasticsearch8_ynh/tree/testing).
|
||||||
|
|
||||||
Pour essayer la branche testing, procédez comme suit.
|
Pour essayer la branche testing, procédez comme suit.
|
||||||
|
|
||||||
``` bash
|
``` bash
|
||||||
sudo yunohost app install https://github.com/YunoHost-Apps/elasticsearch7_ynh/tree/testing --debug
|
sudo yunohost app install https://github.com/YunoHost-Apps/elasticsearch8_ynh/tree/testing --debug
|
||||||
ou
|
ou
|
||||||
sudo yunohost app upgrade elasticsearch7 -u https://github.com/YunoHost-Apps/elasticsearch7_ynh/tree/testing --debug
|
sudo yunohost app upgrade elasticsearch8 -u https://github.com/YunoHost-Apps/elasticsearch8_ynh/tree/testing --debug
|
||||||
```
|
```
|
||||||
|
|
||||||
**Plus d'infos sur le packaging d'applications :** <https://yunohost.org/packaging_apps>
|
**Plus d'infos sur le packaging d'applications :** <https://yunohost.org/packaging_apps>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
SOURCE_URL=https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.17.8-linux-x86_64.tar.gz
|
SOURCE_URL=https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-8.6.0-linux-x86_64.tar.gz
|
||||||
SOURCE_SUM=1c40ba4e0912da1432cb85c0d246f68e14a7da249feea91752c8eaeb28adf0ac
|
SOURCE_SUM=afc24fe42bc60318dac6067831dcfe1495276a99dbf87ff52d09b4af722eb96c
|
||||||
SOURCE_SUM_PRG=sha256sum
|
SOURCE_SUM_PRG=sha256sum
|
||||||
SOURCE_FORMAT=tar.gz
|
SOURCE_FORMAT=tar.gz
|
||||||
SOURCE_IN_SUBDIR=true
|
SOURCE_IN_SUBDIR=true
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
SOURCE_URL=https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.17.8-linux-aarch64.tar.gz
|
SOURCE_URL=https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-8.6.0-linux-aarch64.tar.gz
|
||||||
SOURCE_SUM=47d6532a16e02b92208a0d71289a6fb021542c925ed868e49237032bc3ab5c6a
|
SOURCE_SUM=18d3ad5f7e97b23ddb783ba7c2a9f06bbc8a86a749a0b5278a73f6a887eaeab7
|
||||||
SOURCE_SUM_PRG=sha256sum
|
SOURCE_SUM_PRG=sha256sum
|
||||||
SOURCE_FORMAT=tar.gz
|
SOURCE_FORMAT=tar.gz
|
||||||
SOURCE_IN_SUBDIR=true
|
SOURCE_IN_SUBDIR=true
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
## -Xms4g
|
## -Xms4g
|
||||||
## -Xmx4g
|
## -Xmx4g
|
||||||
##
|
##
|
||||||
## See https://www.elastic.co/guide/en/elasticsearch/reference/7.17/advanced-configuration.html
|
## See https://www.elastic.co/guide/en/elasticsearch/reference/8.6/advanced-configuration.html
|
||||||
## for more information
|
## for more information
|
||||||
##
|
##
|
||||||
################################################################
|
################################################################
|
||||||
|
|
|
@ -1,10 +1,2 @@
|
||||||
Elasticsearch is the distributed, RESTful search and analytics engine at the heart of the [Elastic Stack](https://www.elastic.co/products). You can use Elasticsearch to store, search, and manage data for:
|
Elasticsearch is the distributed, RESTful search and analytics engine at the heart of the [Elastic Stack](https://www.elastic.co/products). You can use Elasticsearch to store, search, and manage data for logs, metrics, search backend, application monitoring, Endpoint security.
|
||||||
- Logs
|
|
||||||
- Metrics
|
|
||||||
- A search backend
|
|
||||||
- Application monitoring
|
|
||||||
- Endpoint security
|
|
||||||
|
|
||||||
... and more!
|
|
||||||
|
|
||||||
To learn more about Elasticsearch’s features and capabilities, see the [product page](https://www.elastic.co/products/elasticsearch).
|
To learn more about Elasticsearch’s features and capabilities, see the [product page](https://www.elastic.co/products/elasticsearch).
|
||||||
|
|
|
@ -1,21 +1,21 @@
|
||||||
{
|
{
|
||||||
"name": "ElasticSearch 7",
|
"name": "ElasticSearch 8",
|
||||||
"id": "elasticsearch7",
|
"id": "elasticsearch8",
|
||||||
"packaging_format": 1,
|
"packaging_format": 1,
|
||||||
"description": {
|
"description": {
|
||||||
"en": "Distributed and RESTful search engine.",
|
"en": "Distributed and RESTful search engine.",
|
||||||
"fr": "Moteur de recherche RESTful."
|
"fr": "Moteur de recherche RESTful."
|
||||||
},
|
},
|
||||||
"version": "7.17.8~ynh3",
|
"version": "8.6.0~ynh1",
|
||||||
"url": "https://github.com/elastic/elasticsearch",
|
"url": "https://github.com/elastic/elasticsearch",
|
||||||
"upstream": {
|
"upstream": {
|
||||||
"license": "SSPL-1.0",
|
"license": "SSPL-1.0",
|
||||||
"website": "https://elastic.co",
|
"website": "https://elastic.co",
|
||||||
"demo": "https://www.elastic.co/demos",
|
"demo": "https://www.elastic.co/demos",
|
||||||
"admindoc": "https://www.elastic.co/guide/en/elasticsearch/reference/7.17/elasticsearch-intro.html",
|
"admindoc": "https://www.elastic.co/guide/en/elasticsearch/reference/8.6/elasticsearch-intro.html",
|
||||||
"code": "https://github.com/elastic/elasticsearch"
|
"code": "https://github.com/elastic/elasticsearch"
|
||||||
},
|
},
|
||||||
"license": "AGPL-3.0-or-later",
|
"license": "SSPL-1.0",
|
||||||
"maintainer": {
|
"maintainer": {
|
||||||
"name": "fflorent",
|
"name": "fflorent",
|
||||||
"email": "florent.git@zeteo.me"
|
"email": "florent.git@zeteo.me"
|
||||||
|
|
Loading…
Add table
Reference in a new issue