From b1bdb45ac5524d611828fc0d024e2ea3a62cf4fe Mon Sep 17 00:00:00 2001 From: Charlie Le Date: Sat, 26 Apr 2025 16:17:49 -0700 Subject: [PATCH 1/3] Setup blog with first post Signed-off-by: Charlie Le --- website/content/en/blog/_index.md | 4 +++ website/content/en/blog/news/_index.md | 4 +++ .../content/en/blog/news/first-post/index.md | 34 +++++++++++++++++++ 3 files changed, 42 insertions(+) create mode 100644 website/content/en/blog/_index.md create mode 100644 website/content/en/blog/news/_index.md create mode 100644 website/content/en/blog/news/first-post/index.md diff --git a/website/content/en/blog/_index.md b/website/content/en/blog/_index.md new file mode 100644 index 0000000000..b4ff77a17e --- /dev/null +++ b/website/content/en/blog/_index.md @@ -0,0 +1,4 @@ +--- +title: Blog +menu: {main: {weight: 30}} +--- diff --git a/website/content/en/blog/news/_index.md b/website/content/en/blog/news/_index.md new file mode 100644 index 0000000000..c609aa2543 --- /dev/null +++ b/website/content/en/blog/news/_index.md @@ -0,0 +1,4 @@ +--- +title: News +weight: 20 +--- diff --git a/website/content/en/blog/news/first-post/index.md b/website/content/en/blog/news/first-post/index.md new file mode 100644 index 0000000000..606b494861 --- /dev/null +++ b/website/content/en/blog/news/first-post/index.md @@ -0,0 +1,34 @@ +--- +date: 2025-04-26 +title: "Introducing the Cortex Blog: Sharing Our Journey" +linkTitle: Hello Cortex! +description: > + Welcome to the Cortex blog! We're excited to share updates, best practices, and community highlights around everything Cortex. Stay tuned for technical deep-dives, deployment strategies, and more. +author: Charlie Le ([@charlietle](https://twitter.com/charlietle)) +--- + +Welcome to the official Cortex blog! + +We’re kicking things off here to share updates, best practices, +technical deep-dives, and community highlights around everything Cortex. +Whether you're operating a Cortex cluster, integrating it into your observability platform, +or just starting to explore scalable time-series databases — you're in the right place. + +In the coming weeks, you can expect posts on: +- Real-world Cortex deployment strategies and lessons learned +- Tips for running Cortex efficiently at scale +- Deep dives into key Cortex concepts like blocks storage, ruler sharding, and query federation +- Guides to help new contributors get involved with the project +- Interviews with maintainers and users from across the community +- Roadmap insights and upcoming features we're excited about + +Cortex has grown a lot thanks to a vibrant community of operators, contributors, and partners. +This blog will be another space for us to connect, learn from each other, and push the project even further. + +Stay tuned — the first technical post is coming soon! + +If there's a topic you’d love to see covered, feel free to reach out or open a discussion in our [Cortex community forums](https://github.com/cortexproject/cortex/discussions). + +Thanks for being part of the journey! 🚀 + +— The Cortex Team From 2af62855363ea70d2a3a48bee3057451404590a0 Mon Sep 17 00:00:00 2001 From: Charlie Le Date: Sun, 27 Apr 2025 13:36:41 -0700 Subject: [PATCH 2/3] Enable blog tags, categories, and projects Signed-off-by: Charlie Le --- website/config.toml | 10 +++++++++- website/content/en/blog/news/first-post/index.md | 3 +++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/website/config.toml b/website/config.toml index cf33551a14..7c608f09f1 100644 --- a/website/config.toml +++ b/website/config.toml @@ -16,7 +16,15 @@ defaultContentLanguageInSubdir = false # Useful when translating. enableMissingTranslationPlaceholders = true -disableKinds = ["taxonomy", "taxonomyTerm"] +disableKinds = [] +[taxonomies] +tag = "tags" +category = "categories" +project = "projects" +[params.taxonomy] +taxonomyCloud = ["projects", "tags"] # set taxonomyCloud = [] to hide taxonomy clouds +taxonomyCloudTitle = ["Our Projects", "Tag Cloud"] # if used, must have same length as taxonomyCloud +taxonomyPageHeader = ["tags", "categories"] # set taxonomyPageHeader = [] to hide taxonomies on the page headers # Highlighting config pygmentsCodeFences = true diff --git a/website/content/en/blog/news/first-post/index.md b/website/content/en/blog/news/first-post/index.md index 606b494861..2fb0574267 100644 --- a/website/content/en/blog/news/first-post/index.md +++ b/website/content/en/blog/news/first-post/index.md @@ -2,6 +2,9 @@ date: 2025-04-26 title: "Introducing the Cortex Blog: Sharing Our Journey" linkTitle: Hello Cortex! +tags: [ "blog", "cortex", "community", "updates" ] +categories: [ "blog" ] +projects: [ "cortex" ] description: > Welcome to the Cortex blog! We're excited to share updates, best practices, and community highlights around everything Cortex. Stay tuned for technical deep-dives, deployment strategies, and more. author: Charlie Le ([@charlietle](https://twitter.com/charlietle)) From 503d22ef65b797d091df341b3751d3e11d10916e Mon Sep 17 00:00:00 2001 From: Charlie Le Date: Mon, 28 Apr 2025 08:51:12 -0700 Subject: [PATCH 3/3] Remove news section in favor of tags Signed-off-by: Charlie Le --- .../en/blog/{news/first-post/index.md => 2025/first-post.md} | 0 website/content/en/blog/news/_index.md | 4 ---- 2 files changed, 4 deletions(-) rename website/content/en/blog/{news/first-post/index.md => 2025/first-post.md} (100%) delete mode 100644 website/content/en/blog/news/_index.md diff --git a/website/content/en/blog/news/first-post/index.md b/website/content/en/blog/2025/first-post.md similarity index 100% rename from website/content/en/blog/news/first-post/index.md rename to website/content/en/blog/2025/first-post.md diff --git a/website/content/en/blog/news/_index.md b/website/content/en/blog/news/_index.md deleted file mode 100644 index c609aa2543..0000000000 --- a/website/content/en/blog/news/_index.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -title: News -weight: 20 ----