Skip to content

Add k0rdent, sorts participants, and aligns language #304

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions _data/participants.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,3 +97,16 @@
alt: ByteDance logo
company: >
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.

- name: k0rdent
link: https://k0rdent.io
company: >
k0rdent provides a way to manage distributed infrastructure at massive scale leveraging kubernetes.
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.
offering: >
Valkey is now available as a [service template on the k0rdent application catalog](https://catalog.k0rdent.io/latest/apps/valkey/).
The application catalog features a selection of best-in-class solutions designed to enhance k0rdent managed clusters.
These services have been validated on k0rdents clusters and have existing templates for easy deployment.
image:
path: /img/k0rdent.svg
alt: K0rdent Logo
34 changes: 34 additions & 0 deletions static/img/k0rdent.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions templates/participants.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

{% block main_content %}

{% set participants = load_data(path="/_data/participants.yml") %}
{% set participants = load_data(path="/_data/participants.yml") | sort(attribute="name" ) %}
<div class="participant-list">
{% for participant in participants %}
<div class="participant-{{participant.name | lower() }}">
Expand All @@ -19,7 +19,7 @@
<h3>Valkey offering:</h3>
{{ participant.offering | markdown | safe }}
{% endif %}
<h3>About the company:</h3>
<h3>About the organization:</h3>
{{ participant.company | markdown | safe }}
</div>
</div>
Expand Down