You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by mx...@apache.org on 2019/10/09 08:44:40 UTC

[flink-web] branch asf-site updated: Add FlinkK8sOperator to ecosystem page, link page from navbar

This is an automated email from the ASF dual-hosted git repository.

mxm pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/flink-web.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new 19d9140  Add FlinkK8sOperator to ecosystem page, link page from navbar
19d9140 is described below

commit 19d9140dfd86a3c21f13ca70d60db09589744f35
Author: Thomas Weise <th...@apache.org>
AuthorDate: Mon Oct 7 10:52:49 2019 -0700

    Add FlinkK8sOperator to ecosystem page, link page from navbar
---
 _data/i18n.yml        | 2 ++
 _includes/navbar.html | 3 +++
 ecosystem.md          | 4 ++++
 3 files changed, 9 insertions(+)

diff --git a/_data/i18n.yml b/_data/i18n.yml
index c6365c6..9db8599 100644
--- a/_data/i18n.yml
+++ b/_data/i18n.yml
@@ -10,6 +10,7 @@ en:
     tutorials: Tutorials
     documentation: Documentation
     getting_help: Getting Help
+    ecosystem: Ecosystem
     flink_blog: Flink Blog
     community_project: Community &amp; Project Info
     how_to_contribute: How to Contribute
@@ -32,6 +33,7 @@ zh:
     tutorials: 教程
     documentation: 文档
     getting_help: 获取帮助
+    ecosystem: Ecosystem
     flink_blog: Flink 博客
     community_project: 社区 &amp; 项目信息
     how_to_contribute: 如何参与贡献
diff --git a/_includes/navbar.html b/_includes/navbar.html
index 148332a..71539bd 100755
--- a/_includes/navbar.html
+++ b/_includes/navbar.html
@@ -83,6 +83,9 @@
             <!-- Blog -->
             <li{% if page.url contains '/blog/' or page.url contains '/news/' or page.url contains '/features/' %} class="active"{% endif %}><a href="{{ site.baseurl }}/blog/"><b>{{ site.data.i18n[page.language].flink_blog }}</b></a></li>
 
+            <!-- Ecosystem -->
+            <li{% if page.url contains '/ecosystem.html' %} class="active"{% endif %}><a href="{{ baseurl_i18n }}/ecosystem.html">{{ site.data.i18n[page.language].ecosystem }}</a></li>
+
             &nbsp;
 
             <!-- Third menu section aim to support community and contributors -->
diff --git a/ecosystem.md b/ecosystem.md
index fa2a362..96ef61c 100644
--- a/ecosystem.md
+++ b/ecosystem.md
@@ -100,3 +100,7 @@ A small [WordCount example](https://github.com/mjsax/flink-external/tree/master/
 **Tink temporal graph library**
 
 [Tink](https://github.com/otherwise777/Temporal_Graph_library) is a temporal graph library built on top of Flink. It allows for temporal graph analytics like different interpretations of the shortest temporal path algorithm and metrics like temporal betweenness and temporal closeness. This library was the result of the [Thesis](http://www.win.tue.nl/~gfletche/ligtenberg2017.pdf) of Wouter Ligtenberg.
+
+**FlinkK8sOperator**
+
+[FlinkK8sOperator](https://github.com/lyft/flinkk8soperator) is a Kubernetes operator that manages Flink applications on Kubernetes. The operator acts as control plane to manage the complete deployment lifecycle of the application.