Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8631c39979 | |||
| f7ea7675cb | |||
| 2924cbb63d |
@@ -5,7 +5,7 @@ steps:
|
|||||||
# Clone the pinned upstream jellyfin-ha source and publish the .NET server
|
# Clone the pinned upstream jellyfin-ha source and publish the .NET server
|
||||||
# into ./publish-output (consumed by Dockerfile.runtime).
|
# into ./publish-output (consumed by Dockerfile.runtime).
|
||||||
- name: publish
|
- name: publish
|
||||||
image: mcr.microsoft.com/dotnet/sdk:9.0
|
image: mcr.microsoft.com/dotnet/sdk:10.0
|
||||||
commands:
|
commands:
|
||||||
- |
|
- |
|
||||||
REF=$$(cat UPSTREAM_REF)
|
REF=$$(cat UPSTREAM_REF)
|
||||||
@@ -26,7 +26,7 @@ steps:
|
|||||||
|
|
||||||
# Validate the runtime image builds (no push on PRs).
|
# Validate the runtime image builds (no push on PRs).
|
||||||
- name: docker-build
|
- name: docker-build
|
||||||
image: woodpeckerci/plugin-docker-buildx
|
image: artifactapi.k8s.syd1.au.unkin.net/docker-internal/plugin-docker-buildx:latest
|
||||||
settings:
|
settings:
|
||||||
repo: artifactapi.k8s.syd1.au.unkin.net/docker-internal/jellyfin-ha
|
repo: artifactapi.k8s.syd1.au.unkin.net/docker-internal/jellyfin-ha
|
||||||
dockerfile: Dockerfile.runtime
|
dockerfile: Dockerfile.runtime
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ when:
|
|||||||
steps:
|
steps:
|
||||||
# Same publish step as the PR pipeline: clone pinned upstream + dotnet publish.
|
# Same publish step as the PR pipeline: clone pinned upstream + dotnet publish.
|
||||||
- name: publish
|
- name: publish
|
||||||
image: mcr.microsoft.com/dotnet/sdk:9.0
|
image: mcr.microsoft.com/dotnet/sdk:10.0
|
||||||
commands:
|
commands:
|
||||||
- |
|
- |
|
||||||
REF=$$(cat UPSTREAM_REF)
|
REF=$$(cat UPSTREAM_REF)
|
||||||
|
|||||||
+13
-14
@@ -18,28 +18,27 @@ RUN apt-get update \
|
|||||||
&& echo "deb [arch=amd64 signed-by=/usr/share/keyrings/jellyfin.gpg] https://repo.jellyfin.org/debian bookworm main" \
|
&& echo "deb [arch=amd64 signed-by=/usr/share/keyrings/jellyfin.gpg] https://repo.jellyfin.org/debian bookworm main" \
|
||||||
> /etc/apt/sources.list.d/jellyfin.list \
|
> /etc/apt/sources.list.d/jellyfin.list \
|
||||||
&& apt-get update \
|
&& apt-get update \
|
||||||
&& apt-get install -y --no-install-recommends "jellyfin-web=10.11.6+deb12" \
|
&& apt-get install -y --no-install-recommends "jellyfin-web=12.0+deb12" \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
# ── Plugin stage ──────────────────────────────────────────────────────────────
|
# ── Plugin stage ──────────────────────────────────────────────────────────────
|
||||||
# Download and verify the auth plugins, unpacked into versioned dirs baked into
|
# Download and verify the auth plugins, unpacked into versioned dirs baked into
|
||||||
# the image and synced into /config/plugins at start (docker-entrypoint.sh).
|
# the image and synced into /config/plugins at start (docker-entrypoint.sh).
|
||||||
# Versions are the newest each plugin publishes whose targetAbi <= the pinned
|
# Versions are the newest each plugin publishes whose targetAbi <= the pinned
|
||||||
# Jellyfin server version (10.11.6):
|
# Jellyfin server version (12.0.0):
|
||||||
# LDAP Authentication 22.0.0.0 targetAbi 10.11.2.0 (v23 needs 10.11.9)
|
# LDAP Authentication 24.0.0.0 targetAbi 12.0.0.0
|
||||||
# SSO Authentication 4.0.0.4 targetAbi 10.11.0.0
|
# SSO Authentication 4.0.0.4 targetAbi 10.11.0.0 (newest release; loads on 12.0)
|
||||||
# sha256 pins match each release's published .sha256 asset for reproducibility.
|
# sha256 pins make each fetch reproducible.
|
||||||
FROM --platform=linux/amd64 debian:bookworm-slim AS plugins
|
FROM --platform=linux/amd64 debian:bookworm-slim AS plugins
|
||||||
|
|
||||||
RUN apt-get update \
|
RUN apt-get update \
|
||||||
&& apt-get install -y --no-install-recommends curl ca-certificates unzip \
|
&& apt-get install -y --no-install-recommends curl ca-certificates unzip \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
ARG LDAP_URL=http://artifactapi.k8s.syd1.au.unkin.net/api/v1/remote/jellyfin/files/plugin/ldap-authentication/ldap-authentication_22.0.0.0.zip
|
ARG LDAP_URL=http://artifactapi.k8s.syd1.au.unkin.net/api/v1/remote/jellyfin/files/plugin/ldap-authentication/ldap-authentication_24.0.0.0.zip
|
||||||
ARG LDAP_SHA256=c2386c001be439c9946280a02d62610f29e325d4094e83bd31221de3f7aa20ae
|
ARG LDAP_SHA256=3be1f9d6a6ce9ea375e556dd30136d178a8dbe35cbe866d30d3451dc3ff7e804
|
||||||
# LDAP is served through artifactapi remote. SSO is served through the artifactapi
|
# LDAP is served through artifactapi remote. SSO is served through the artifactapi
|
||||||
# github proxy, which the CI build network can reach (github is not directly reachable).
|
# github proxy, which the CI build network can reach (github is not directly reachable).
|
||||||
# SHA256 pins match each release's published asset for reproducibility and integrity.
|
|
||||||
ARG SSO_URL=http://artifactapi.k8s.syd1.au.unkin.net/api/v1/remote/github/9p4/jellyfin-plugin-sso/releases/download/v4.0.0.4/sso-authentication_4.0.0.4.zip
|
ARG SSO_URL=http://artifactapi.k8s.syd1.au.unkin.net/api/v1/remote/github/9p4/jellyfin-plugin-sso/releases/download/v4.0.0.4/sso-authentication_4.0.0.4.zip
|
||||||
ARG SSO_SHA256=c09f16ba31059a434ddd7f811e4f9608d4b4c4514cc80a5bf1ca33bee61e1107
|
ARG SSO_SHA256=c09f16ba31059a434ddd7f811e4f9608d4b4c4514cc80a5bf1ca33bee61e1107
|
||||||
|
|
||||||
@@ -47,8 +46,8 @@ WORKDIR /plugins
|
|||||||
RUN set -eu; \
|
RUN set -eu; \
|
||||||
curl -fsSL "$LDAP_URL" -o ldap.zip; \
|
curl -fsSL "$LDAP_URL" -o ldap.zip; \
|
||||||
echo "$LDAP_SHA256 ldap.zip" | sha256sum -c -; \
|
echo "$LDAP_SHA256 ldap.zip" | sha256sum -c -; \
|
||||||
mkdir -p "LDAP Authentication_22.0.0.0"; \
|
mkdir -p "LDAP Authentication_24.0.0.0"; \
|
||||||
unzip -oq ldap.zip -d "LDAP Authentication_22.0.0.0"; \
|
unzip -oq ldap.zip -d "LDAP Authentication_24.0.0.0"; \
|
||||||
curl -fsSL "$SSO_URL" -o sso.zip; \
|
curl -fsSL "$SSO_URL" -o sso.zip; \
|
||||||
echo "$SSO_SHA256 sso.zip" | sha256sum -c -; \
|
echo "$SSO_SHA256 sso.zip" | sha256sum -c -; \
|
||||||
mkdir -p "SSO Authentication_4.0.0.4"; \
|
mkdir -p "SSO Authentication_4.0.0.4"; \
|
||||||
@@ -56,10 +55,10 @@ RUN set -eu; \
|
|||||||
rm -f ldap.zip sso.zip
|
rm -f ldap.zip sso.zip
|
||||||
|
|
||||||
# ── Runtime stage ─────────────────────────────────────────────────────────────
|
# ── Runtime stage ─────────────────────────────────────────────────────────────
|
||||||
# .NET 9 runtime: matches the SDK 9.0 publish step (framework-dependent), so the
|
# .NET 10 runtime: matches the SDK 10.0 publish step (framework-dependent) and the
|
||||||
# app's required Microsoft.NETCore.App 9.0 is present. Keep in lockstep with the
|
# fork's net10.0 TFM, so the app's required Microsoft.NETCore.App 10.0 is present.
|
||||||
# `mcr.microsoft.com/dotnet/sdk` major in .woodpecker/*.yaml and the Makefile.
|
# Keep in lockstep with the `mcr.microsoft.com/dotnet/sdk` major in .woodpecker/*.yaml.
|
||||||
FROM --platform=linux/amd64 mcr.microsoft.com/dotnet/aspnet:9.0
|
FROM --platform=linux/amd64 mcr.microsoft.com/dotnet/aspnet:10.0
|
||||||
|
|
||||||
# FFmpeg and the native deps required by SkiaSharp and fontconfig.
|
# FFmpeg and the native deps required by SkiaSharp and fontconfig.
|
||||||
RUN apt-get update \
|
RUN apt-get update \
|
||||||
|
|||||||
@@ -4,12 +4,12 @@ Build-orchestration repo for [ZoltyMat/jellyfin-ha](https://github.com/ZoltyMat/
|
|||||||
that adds distributed, Redis-backed transcoding for multi-pod Kubernetes (lease-aware cleanup, HA session
|
that adds distributed, Redis-backed transcoding for multi-pod Kubernetes (lease-aware cleanup, HA session
|
||||||
takeover, optional PostgreSQL).
|
takeover, optional PostgreSQL).
|
||||||
|
|
||||||
This repo does **not** vendor the fork's source. It pins an upstream commit, builds the .NET 9 server, and
|
This repo does **not** vendor the fork's source. It pins an upstream commit, builds the .NET 10 server, and
|
||||||
produces a runtime container image pushed to the Gitea registry.
|
produces a runtime container image pushed to the Gitea registry.
|
||||||
|
|
||||||
## What it produces
|
## What it produces
|
||||||
|
|
||||||
`artifactapi.k8s.syd1.au.unkin.net/docker-internal/jellyfin-ha:<tag>` — an `mcr.microsoft.com/dotnet/aspnet:9.0` based image with ffmpeg and
|
`artifactapi.k8s.syd1.au.unkin.net/docker-internal/jellyfin-ha:<tag>` — an `mcr.microsoft.com/dotnet/aspnet:10.0` based image with ffmpeg and
|
||||||
the prebuilt `jellyfin-web` client, running the published `jellyfin-ha` server.
|
the prebuilt `jellyfin-web` client, running the published `jellyfin-ha` server.
|
||||||
|
|
||||||
## Layout
|
## Layout
|
||||||
@@ -34,7 +34,7 @@ the prebuilt `jellyfin-web` client, running the published `jellyfin-ha` server.
|
|||||||
make build # clones pinned upstream, dotnet publish, docker build
|
make build # clones pinned upstream, dotnet publish, docker build
|
||||||
```
|
```
|
||||||
|
|
||||||
Requires the .NET 9 SDK and Docker. `make publish` runs just the clone + publish into `./publish-output`.
|
Requires the .NET 10 SDK and Docker. `make publish` runs just the clone + publish into `./publish-output`.
|
||||||
|
|
||||||
## Deployment
|
## Deployment
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -1 +1 @@
|
|||||||
2e1e445e470c2f2c1520f66678a73faa226c2058
|
dcb6ae396cc43ffc080bca6405cb95e7abc4445f
|
||||||
|
|||||||
Reference in New Issue
Block a user