Skip to content

Commit

Permalink
Add resources page
Browse files Browse the repository at this point in the history
  • Loading branch information
phillebaba committed Feb 23, 2025
1 parent 7fb4708 commit e191fba
Show file tree
Hide file tree
Showing 2 changed files with 64 additions and 0 deletions.
36 changes: 36 additions & 0 deletions content/project/resources.md
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 %}}
28 changes: 28 additions & 0 deletions data/resources.yaml
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"

0 comments on commit e191fba

Please sign in to comment.