You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by sj...@apache.org on 2020/05/29 12:17:38 UTC

[flink-statefun] branch release-2.1 updated: [hotfix][docs] Document temporary image registry

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

sjwiesman pushed a commit to branch release-2.1
in repository https://gitbox.apache.org/repos/asf/flink-statefun.git


The following commit(s) were added to refs/heads/release-2.1 by this push:
     new 45094a0  [hotfix][docs] Document temporary image registry
45094a0 is described below

commit 45094a0fc08e3e0e408c88982aa9e52b0403fa75
Author: Seth Wiesman <sj...@gmail.com>
AuthorDate: Thu May 28 16:37:13 2020 -0500

    [hotfix][docs] Document temporary image registry
---
 docs/deployment-and-operations/packaging.md | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/docs/deployment-and-operations/packaging.md b/docs/deployment-and-operations/packaging.md
index 7af18f1..6e34f1d 100644
--- a/docs/deployment-and-operations/packaging.md
+++ b/docs/deployment-and-operations/packaging.md
@@ -47,6 +47,29 @@ COPY target/statefun-example*jar /opt/statefun/modules/statefun-example/
 COPY module.yaml /opt/statefun/modules/remote/module.yaml
 {% endhighlight %}
 
+{% if site.is_stable %}
+<div class="alert alert-info">
+	The Flink community is currently waiting for the official Docker images to be published to Docker Hub.
+	In the meantime, Ververica has volunteered to make Stateful Function's images available via their public registry: 
+
+	<code class="language-dockerfile" data-lang="dockerfile">
+		<span class="k">FROM</span><span class="s"> ververica/flink-statefun:{{ site.version }}</span>
+	</code>
+
+	You can follow the status of Docker Hub contribution <a href="https://github.com/docker-library/official-images/pull/7749">here</a>.
+</div>
+{% else %}
+<div class="alert alert-info">
+	<strong>Attention:</strong> The Flink community does not publish images for snapshot versions.
+	You can build this version locally by cloning the <a hre="https://github.com/apache/flink-statefun">repo</a> and following
+	the instructions in 
+	
+	<code class="language-dockerfile" data-lang="dockerfile">
+		<span class="s">tools/docker/README.md</span>
+	</code>
+</div>
+{% endif %}
+
 ## Flink Jar
 
 If you prefer to package your job to submit to an existing Flink cluster, simply include ``statefun-flink-distribution`` as a dependency to your application.