You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Although it’s optional, we highly recommend verifying the signatures included with your downloaded Docker images to ensure that the images are valid.
31
+
Although it's optional, we highly recommend verifying the signatures included with your downloaded Docker images to ensure that the images are valid.
32
+
33
+
Elastic images are signed with [Cosign](https://docs.sigstore.dev/cosign/) which is part of the [Sigstore](https://www.sigstore.dev/) project.
34
+
Cosign supports container signing, verification, and storage in an OCI registry.
35
+
Install the appropriate Cosign application for your operating system.
24
36
25
-
Elastic images are signed with [Cosign](https://docs.sigstore.dev/quickstart/quickstart-cosign/) which is part of the [Sigstore](https://www.sigstore.dev/) project. Cosign supports container signing, verification, and storage in an OCI registry. Install the appropriate Cosign application for your operating system.
37
+
Run the following commands to verify the container image signature for {{ls}} v{{stack-version}}:
26
38
27
-
Run the following commands to verify the container image signature for {{ls}} v9.0.0-beta1:
You may need to install the `apt-transport-https` package on Debian before proceeding:
57
+
58
+
```
59
+
sudo apt-get install apt-transport-https
60
+
```
61
+
62
+
Save the repository definition to /etc/apt/sources.list.d/elastic-{{major-version}}.list:
63
+
64
+
```sh subs=true
65
+
echo"deb [signed-by=/usr/share/keyrings/elastic-keyring.gpg] https://artifacts.elastic.co/packages/{{major-version}}/apt stable main"| sudo tee -a /etc/apt/sources.list.d/elastic-{{major-version}}.list
66
+
```
67
+
68
+
::::{warning}
69
+
Use the `echo` method described above to add the Logstash repository.
70
+
Do not use `add-apt-repository` as it will add a `deb-src` entry as well, but we do not provide a source package.
71
+
If you have added the `deb-src` entry, you will see an error like the following:
72
+
73
+
```
74
+
Unable to find expected entry 'main/source/Sources' in Release file (Wrong sources.list entry or malformed file)
75
+
```
76
+
77
+
Just delete the `deb-src` entry from the `/etc/apt/sources.list` file and the
78
+
installation should work as expected.
79
+
::::
80
+
81
+
Run `sudo apt-get update` and the repository is ready for use. You can install
0 commit comments