Since the official image for 1.11 has not been release, I just want to
post how to
build the image with provided Flink binary. I think many users are running
Flink
in container environment(e.g. docker, Kubernetes, etc.) and hope this could
help
them with the testing.



git clone 'https://github.com/apache/flink-docker.git'
cd flink-docker/ && git checkout dev-master

export image_name="flink:1.11.0-rc1-scala_2.11"
./add-custom.sh -u
https://dist.apache.org/repos/dist/dev/flink/flink-1.11.0-rc1/flink-1.11.0-bin-scala_2.11.tgz
-n ${image_name}
docker build --no-cache --network="host" -t ${image_name}
dev/${image_name}-debian

docker push ${image_name}



Best,
Yang

Zhijiang <wangzhijiang...@aliyun.com.invalid> 于2020年5月25日周一 下午12:09写道:

> Hi all,
>
> Apache Flink-1.11.0-RC1 has been created. It has all the artifacts that we
> would typically have for a release.
>
> This preview-only RC is created only to drive the current testing efforts,
> and no official vote will take place. It includes the following:
>
>    * The preview source release and binary convenience releases [1], which
> are signed with the key with fingerprint
> 2DA85B93244FDFA19A6244500653C0A2CEA00D0E [2],
>    * All artifacts that would normally be deployed to the Maven Central
> Repository [3]
>
> To test with these artifacts, you can create a settings.xml file with the
> content shown below [4]. This settings file can be referenced in your maven
> commands
> via --settings /path/to/settings.xml. This is useful for creating a
> quickstart project based on the staged release and also for building
> against the staged jars.
>
> Happy testing!
>
> Best,
> Zhijiang
>
> [1] https://dist.apache.org/repos/dist/dev/flink/flink-1.11.0-rc1/
> [2] https://dist.apache.org/repos/dist/release/flink/KEYS
> [3]
> https://repository.apache.org/content/repositories/orgapacheflink-1370/
> [4]
> <settings>
>     <activeProfiles>
>          <activeProfile>flink-1.11.0</activeProfile>
>     </activeProfiles>
>     <profiles>
>         <profile>
>             <id>flink-1.11.0</id>
>             <repositories>
>                   <repository>
>                         <id>flink-1.11.0</id>
>                         <url>
> https://repository.apache.org/content/repositories/orgapacheflink-1370/
> </url>
>                  </repository>
>                  <repository>
>                        <id>archetype</id>
>                        <url>
> https://repository.apache.org/content/repositories/orgapacheflink-1370/
> </url>
>                  </repository>
>              </repositories>
>         </profile>
>     </profiles>
> </settings>

Reply via email to