mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2025-12-24 02:39:18 -05:00
22 lines
933 B
Plaintext
22 lines
933 B
Plaintext
---
|
|
title: Kubernetes (Advanced)
|
|
description: Install Jellyseerr in Kubernetes
|
|
sidebar_position: 5
|
|
---
|
|
# Kubernetes
|
|
:::info
|
|
This method is not recommended for most users. It is intended for advanced users who are using Kubernetes.
|
|
:::
|
|
|
|
## 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
|
|
```
|