Skip to content

Commit

Permalink
Merge pull request #29 from robobario/use-hard-flink-sql-version
Browse files Browse the repository at this point in the history
Use fixed 1.19 sql runner image
  • Loading branch information
robobario authored Oct 31, 2024
2 parents 81b07e5 + 88f67ba commit bd92aec
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion interactive-etl/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ The interactive SQL client also need access to these plugin libraries, you could
However, you can run the Flink SQL Runner container locally using the command below (make sure to add the `--net=host` flag so the container can see the forwarded job-manager port):
```shell
podman run -it --rm --net=host quay.io/streamshub/flink-sql-runner:latest /opt/flink/bin/sql-client.sh embedded
podman run -it --rm --net=host quay.io/streamshub/flink-sql-runner:v0.0.1 /opt/flink/bin/sql-client.sh embedded
```
If you use docker, you should be able to replace `podman` with `docker` in the command above.
Expand Down
2 changes: 1 addition & 1 deletion interactive-etl/flink-session.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ kind: FlinkDeployment
metadata:
name: session-cluster
spec:
image: quay.io/streamshub/flink-sql-runner:latest
image: quay.io/streamshub/flink-sql-runner:v0.0.1
flinkVersion: v1_19
flinkConfiguration:
taskmanager.numberOfTaskSlots: "2"
Expand Down
2 changes: 1 addition & 1 deletion interactive-etl/standalone-etl-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ kind: FlinkDeployment
metadata:
name: standalone-etl
spec:
image: quay.io/streamshub/flink-sql-runner:latest
image: quay.io/streamshub/flink-sql-runner:v0.0.1
flinkVersion: v1_19
flinkConfiguration:
taskmanager.numberOfTaskSlots: "1"
Expand Down
2 changes: 1 addition & 1 deletion recommendation-app/flink-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ kind: FlinkDeployment
metadata:
name: recommendation-app
spec:
image: quay.io/streamshub/flink-sql-runner:latest
image: quay.io/streamshub/flink-sql-runner:v0.0.1
flinkVersion: v1_19
flinkConfiguration:
taskmanager.numberOfTaskSlots: "1"
Expand Down

0 comments on commit bd92aec

Please sign in to comment.