-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Allow for whitespaces in secret variables regex (#22) * k8s operator - deployment * refactor * change api to rest * fix tests * update changelog * fix pre-commit hooks * add tests * update pyyaml * STREAM-381 fixed version of python-dateutil (#27) * STREAM-381 fixed version of python-dateutil (required by flink 1.16.0) * STREAM-384 (#29) * jupyter convert cmd * STREAM-386 deployment mode (#31) * flink_execute (#33) * flink_execute * pre commit hooks - black * fix imports in template --------- Co-authored-by: Anna Urbala <[email protected]> * don't add shell commands to the converted notebook (#34) * don't add shell commands to the converted notebook * changelog --------- Co-authored-by: Anna Urbala <[email protected]> * Create and publish public scli docker image with git and docker * Create and publish public scli docker image with git and docker * FIX #37 - Bump version and CHANGELOG for release 1.9.1 --------- Co-authored-by: Andrzej Swatowski <[email protected]> Co-authored-by: Anna Urbala <[email protected]> Co-authored-by: niladrem <[email protected]> Co-authored-by: Maciej Maciejko <[email protected]> Co-authored-by: Anna Naroska <[email protected]> Co-authored-by: Maciej Maciejko <[email protected]> Co-authored-by: Maciej Maciejko <[email protected]> Co-authored-by: MarekMaj <[email protected]> Co-authored-by: github-actions <[email protected]>
- Loading branch information
1 parent
c15ef00
commit 9d486bf
Showing
6 changed files
with
51 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,4 +38,3 @@ jobs: | |
- name: Wheel | ||
run: | | ||
python setup.py sdist | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# syntax=docker/dockerfile:1 | ||
FROM context | ||
|
||
ARG PYTHON_VERSION | ||
ARG STREAMING_CLI_VERSION | ||
|
||
RUN apk add --no-cache build-base python3>=${PYTHON_VERSION} python3-dev>=${PYTHON_VERSION} py3-pip | ||
RUN python3 -m pip install --no-cache wheel | ||
RUN python3 -m pip install --no-cache streamingcli==${STREAMING_CLI_VERSION} --ignore-installed six | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters