Skip to content
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

[DOCS] Update install instructions for Debian/Ubuntu #84645

Merged
merged 1 commit into from
Mar 7, 2022

Conversation

er0k
Copy link
Contributor

@er0k er0k commented Mar 3, 2022

The use of apt-key is deprecated and will no longer be available
after Debian 11 and Ubuntu 22.04. This updates the installation
instructions for Debian-based distributions.

Closes #84644

The use of `apt-key` is deprecated and will no longer be available
after Debian 11 and Ubuntu 22.04. This updates the installation
instructions for Debian-based distributions.
@elasticsearchmachine elasticsearchmachine added v8.2.0 external-contributor Pull request authored by a developer outside the Elasticsearch team labels Mar 3, 2022
Copy link
Member

@nik9000 nik9000 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Confirmed with:

docker pull debian
docker run -it debian:latest /bin/bash
apt update
apt install -y gpg wget sudo
wget -qO - https://artifacts.elastic.co/GPG-KEY-elasticsearch | sudo gpg --dearmor -o /usr/share/keyrings/elasticsearch-keyring.gpg
echo "deb [signed-by=/usr/share/keyrings/elasticsearch-keyring.gpg] https://artifacts.elastic.co/packages/8.x/apt stable main" | sudo tee /etc/apt/sources.list.d/elastic-8.x.list
apt update
apt install elasticsearch

@nik9000 nik9000 added auto-backport-and-merge auto-merge-without-approval Automatically merge pull request when CI checks pass (NB doesn't wait for reviews!) v7.16.4 v8.0.2 v8.1.1 >docs General docs changes labels Mar 7, 2022
@elasticmachine elasticmachine added the Team:Docs Meta label for docs team label Mar 7, 2022
@elasticmachine
Copy link
Collaborator

Pinging @elastic/es-docs (Team:Docs)

@nik9000 nik9000 added the :Delivery/Packaging RPM and deb packaging, tar and zip archives, shell and batch scripts label Mar 7, 2022
@elasticmachine elasticmachine added the Team:Delivery Meta label for Delivery team label Mar 7, 2022
@elasticmachine
Copy link
Collaborator

Pinging @elastic/es-delivery (Team:Delivery)

@nik9000
Copy link
Member

nik9000 commented Mar 7, 2022

@elasticmachine ok to test

@nik9000 nik9000 self-assigned this Mar 7, 2022
@elasticsearchmachine elasticsearchmachine merged commit 26307bb into elastic:master Mar 7, 2022
nik9000 pushed a commit to nik9000/elasticsearch that referenced this pull request Mar 7, 2022
The use of `apt-key` is deprecated and will no longer be available after
Debian 11 and Ubuntu 22.04. This updates the installation instructions
for Debian-based distributions.

Closes elastic#84644
nik9000 pushed a commit to nik9000/elasticsearch that referenced this pull request Mar 7, 2022
The use of `apt-key` is deprecated and will no longer be available after
Debian 11 and Ubuntu 22.04. This updates the installation instructions
for Debian-based distributions.

Closes elastic#84644
nik9000 pushed a commit to nik9000/elasticsearch that referenced this pull request Mar 7, 2022
The use of `apt-key` is deprecated and will no longer be available after
Debian 11 and Ubuntu 22.04. This updates the installation instructions
for Debian-based distributions.

Closes elastic#84644
@elasticsearchmachine
Copy link
Collaborator

💚 Backport successful

Status Branch Result
7.16
8.1
8.0

elasticsearchmachine pushed a commit that referenced this pull request Mar 7, 2022
The use of `apt-key` is deprecated and will no longer be available after
Debian 11 and Ubuntu 22.04. This updates the installation instructions
for Debian-based distributions.

Closes #84644

Co-authored-by: er0k <[email protected]>
elasticsearchmachine pushed a commit that referenced this pull request Mar 7, 2022
The use of `apt-key` is deprecated and will no longer be available after
Debian 11 and Ubuntu 22.04. This updates the installation instructions
for Debian-based distributions.

Closes #84644

Co-authored-by: er0k <[email protected]>
elasticsearchmachine pushed a commit that referenced this pull request Mar 7, 2022
The use of `apt-key` is deprecated and will no longer be available after
Debian 11 and Ubuntu 22.04. This updates the installation instructions
for Debian-based distributions.

Closes #84644

Co-authored-by: er0k <[email protected]>
@nik9000
Copy link
Member

nik9000 commented Mar 7, 2022

Thanks @er0k! I've merged and the machinery will backport to 7.16.

nik9000 added a commit to nik9000/elasticsearch that referenced this pull request Mar 7, 2022
…lastic#84714)

The use of `apt-key` is deprecated and will no longer be available after
Debian 11 and Ubuntu 22.04. This updates the installation instructions
for Debian-based distributions.

Closes elastic#84644

Co-authored-by: er0k <[email protected]>
nik9000 added a commit that referenced this pull request Mar 7, 2022
* Update painless-reindex-context.asciidoc (#84444) (#84712)

ctx['op'] should be set to 'noop', not 'none' when specifying no
operation.

Elasticsearch error when using 'none':

```json
{
  "error" : {
    "root_cause" : [
      {
        "type" : "illegal_argument_exception",
        "reason" : "Operation type [none] not allowed, only [noop, index, delete] are allowed"
      }
    ],
    "type" : "illegal_argument_exception",
    "reason" : "Operation type [none] not allowed, only [noop, index, delete] are allowed"
  },
  "status" : 400
}
```

Co-authored-by: jalvar08 <[email protected]>

* [DOCS] Update install instructions for Debian/Ubuntu (#84645) (#84714)

The use of `apt-key` is deprecated and will no longer be available after
Debian 11 and Ubuntu 22.04. This updates the installation instructions
for Debian-based distributions.

Closes #84644

Co-authored-by: er0k <[email protected]>

* Fix some typos in plugins & reference docs (#84667) (#84717)

This pull request removes a few instances of duplicate words or
punctuation and erroneous spelling from the docs.

Co-authored-by: Abele Mălan <[email protected]>

Co-authored-by: jalvar08 <[email protected]>
Co-authored-by: er0k <[email protected]>
Co-authored-by: Abele Mălan <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
auto-merge-without-approval Automatically merge pull request when CI checks pass (NB doesn't wait for reviews!) :Delivery/Packaging RPM and deb packaging, tar and zip archives, shell and batch scripts >docs General docs changes external-contributor Pull request authored by a developer outside the Elasticsearch team Team:Delivery Meta label for Delivery team Team:Docs Meta label for docs team v7.16.4 v8.0.2 v8.1.1 v8.2.0
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[DOCS] Use of apt-key is deprecated. Install instructions should be updated
4 participants