mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2025-12-23 18:29:19 -05:00
* docs: migrate third party documentation to a dedidcated folders --------- Signed-off-by: Ludovic Ortega <ludovic.ortega@adminafk.fr>
28 lines
1.3 KiB
Plaintext
28 lines
1.3 KiB
Plaintext
---
|
|
title: Kubernetes (Advanced)
|
|
description: Install Jellyseerr in Kubernetes
|
|
sidebar_position: 3
|
|
---
|
|
# Kubernetes
|
|
:::warning
|
|
This method is not recommended for most users. It is intended for advanced users who are using Kubernetes.
|
|
:::
|
|
|
|
:::info
|
|
All official Seerr charts are cryptographically signed and include a verified [Software Bill of Materials (SBOM)](https://cyclonedx.org/).
|
|
|
|
To confirm that the chart you are using is authentic and unmodified, please refer to the [Verifying Signed Artifacts](/using-jellyseerr/advanced/verifying-signed-artifacts#verifying-signed-helm-charts) guide.
|
|
:::
|
|
|
|
## Installation
|
|
```console
|
|
helm install jellyseerr oci://ghcr.io/fallenbagel/jellyseerr/jellyseerr-chart
|
|
```
|
|
Helm values can be found in the Jellyseerr repository under [charts/jellyseerr-chart/README.md](https://github.com/fallenbagel/jellyseerr/tree/develop/charts/jellyseerr-chart).
|
|
|
|
Verify the signature with [cosign](https://docs.sigstore.dev/cosign/system_config/installation/) (replace [tag], with the TAG you want to verify) :
|
|
```console
|
|
cosign verify ghcr.io/fallenbagel/jellyseerr/jellyseerr-chart:[tag] --certificate-identity=https://github.com/fallenbagel/jellyseerr/.github/workflows/helm.yml@refs/heads/main --certificate-oidc-issuer=https://token.ac
|
|
tions.githubusercontent.com
|
|
```
|