Skip to content

Commit 72a007e

Browse files
authored
Add k0rdent, sorts participants, and aligns language (#304)
### Description This PR accomplishes three things: 1) It sorts the participants page by name instead of order in the YAML data file 2) It changes "About the company" to "About the organization" since the header says "The Valkey project participants are a diverse group of _organizations_" and k0rdent isn't a company. 3) it adds k0rdent. <img width="1430" height="297" alt="Screenshot 2025-07-11 at 9 03 19 AM" src="https://github.com/user-attachments/assets/1492b6be-ce88-436f-8694-e66f6d7b1c30" /> On #288, the description was more than 2x the length, so I edited down the description, so this needs to be validated before merging. ### Issues Resolved #288 ### Check List - [x] Commits are signed per the DCO using `--signoff` By submitting this pull request, I confirm that my contribution is made under the terms of the BSD-3-Clause License. --------- Signed-off-by: Kyle J. Davis <[email protected]>
1 parent 9aaa50d commit 72a007e

File tree

3 files changed

+49
-2
lines changed

3 files changed

+49
-2
lines changed

_data/participants.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,3 +97,16 @@
9797
alt: ByteDance logo
9898
company: >
9999
Founded in 2012, ByteDance's mission is to inspire creativity and enrich life. With a suite of more than a dozen products, including TikTok, CapCut, Lark, and Pico, as well as platforms specific to the China market, including Toutiao, Douyin, Fanqie Novel and Xigua Video, ByteDance has made it easier and more fun for people to connect with, consume, and create content.
100+
101+
- name: k0rdent
102+
link: https://k0rdent.io
103+
company: >
104+
k0rdent provides a way to manage distributed infrastructure at massive scale leveraging kubernetes.
105+
The goal of the k0rdent project is to provide platform engineers with the means to deliver a distributed container management environment (DCME) and enable them to compose unique internal developer platforms (IDP) to support a diverse range of complex modern application workloads.
106+
offering: >
107+
Valkey is now available as a [service template on the k0rdent application catalog](https://catalog.k0rdent.io/latest/apps/valkey/).
108+
The application catalog features a selection of best-in-class solutions designed to enhance k0rdent managed clusters.
109+
These services have been validated on k0rdents clusters and have existing templates for easy deployment.
110+
image:
111+
path: /img/k0rdent.svg
112+
alt: K0rdent Logo

static/img/k0rdent.svg

Lines changed: 34 additions & 0 deletions
Loading

templates/participants.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
{% block main_content %}
99

10-
{% set participants = load_data(path="/_data/participants.yml") %}
10+
{% set participants = load_data(path="/_data/participants.yml") | sort(attribute="name" ) %}
1111
<div class="participant-list">
1212
{% for participant in participants %}
1313
<div class="participant-{{participant.name | lower() }}">
@@ -19,7 +19,7 @@
1919
<h3>Valkey offering:</h3>
2020
{{ participant.offering | markdown | safe }}
2121
{% endif %}
22-
<h3>About the company:</h3>
22+
<h3>About the organization:</h3>
2323
{{ participant.company | markdown | safe }}
2424
</div>
2525
</div>

0 commit comments

Comments
 (0)