-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7fb4708
commit e191fba
Showing
2 changed files
with
64 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
--- | ||
title: Resources | ||
type: docs | ||
weight: 2 | ||
--- | ||
|
||
We’re happy to share resources contributed by the community. We hope you find them useful! | ||
|
||
{{% resources.inline %}} | ||
|
||
{{ $resources := .Site.Data.resources }} | ||
|
||
{{ range $year := seq (now.Format "2006") -1 2023 }} | ||
## {{ $year }} | ||
|
||
<ul> | ||
{{ range $i, $v := $resources }} | ||
{{ $itemYear := (time.AsTime $v.date).Format "2006" }} | ||
|
||
{{ if eq $itemYear (printf "%d" $year) }} | ||
|
||
<li> | ||
<a target="_blank" href="{{ $v.url }}"> | ||
{{ $v.title }} | ||
</a> | ||
</li> | ||
|
||
{{ end }} | ||
|
||
{{ end }} | ||
</ul> | ||
|
||
{{ end }} | ||
|
||
|
||
{{% /resources.inline %}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
- title: "Bypass Docker Hub Rate Limits With This Stateless Image Cache" | ||
date: "2025-02-21" | ||
url: "https://thenewstack.io/bypass-docker-hub-rate-limits-with-this-stateless-image-cache/" | ||
type: "article" | ||
- title: "Cache me if you can: P2P Image Sharing in Kubernetes with Spegel - Philip Laine" | ||
date: "2025-01-01" | ||
url: "https://fosdem.org/2025/schedule/event/fosdem-2025-4934-cache-me-if-you-can-p2p-image-sharing-in-kubernetes-with-spegel/" | ||
type: "video" | ||
- title: "Spegel - Project Overview" | ||
date: "2024-11-04" | ||
url: "https://www.youtube.com/watch?v=68cpZ3FP4R8" | ||
type: "video" | ||
- title: "Spegel - Stateless Local OCI Mirror" | ||
date: "2024-11-03" | ||
url: "https://ahmedtremo.com/posts/Spegel-stateless-local-OCI-mirror/" | ||
type: "article" | ||
- title: "大規模Kubernetesクラスタにおけるコンテナレジストリの高速化" | ||
date: "2023-09-21" | ||
url: "https://blog.cybozu.io/entry/2023/09/21/161930" | ||
type: "article" | ||
- title: "Speed up pod startup by re-using image layers from other nodes with Spegel" | ||
date: "2023-08-21" | ||
url: "https://medium.com/linux-shots/speed-up-pod-startup-by-re-using-image-layers-from-other-nodes-with-spegel-817f88d40a92" | ||
type: "article" | ||
- title: "spegel: stateless cluster local OCI registry mirror walk through" | ||
date: "2023-03-10" | ||
url: "https://www.youtube.com/watch?v=O3i8gEY07rk" | ||
type: "video" |