mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2025-12-24 02:39:18 -05:00
27 lines
1.2 KiB
Plaintext
27 lines
1.2 KiB
Plaintext
---
|
|
title: Kubernetes (Advanced)
|
|
description: Install Seerr 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-seerr/advanced/verifying-signed-artifacts#verifying-signed-helm-charts) guide.
|
|
:::
|
|
|
|
## Installation
|
|
```console
|
|
helm install seerr oci://ghcr.io/seerr-team/seerr/seerr-chart
|
|
```
|
|
Helm values can be found in the Seerr repository under [charts/seerr-chart/README.md](https://github.com/seerr-team/seerr/tree/develop/charts/seerr-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/seerr-team/seerr/seerr-chart:[tag] --certificate-identity=https://github.com/seerr-team/seerr/.github/workflows/helm.yml@refs/heads/main --certificate-oidc-issuer=https://token.actions.githubusercontent.com
|
|
```
|