You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+70-2
Original file line number
Diff line number
Diff line change
@@ -41,14 +41,82 @@ Build the Docker container:
41
41
42
42
`go test`
43
43
44
-
### Test with coverage
44
+
Or with coverage:
45
45
46
46
`go test -coverprofile=cover.out && go tool cover`
47
47
48
-
# Docker image
48
+
# Docker
49
49
50
50
A docker image for this repo is available from the docker hub: `nielsdenissen/flink-deployer`
51
51
52
+
# Kubernetes
53
+
54
+
When running in Kubernetes (or Openshift), you'll have to deploy the container to the cluster. A reason for this is Flink will try to reroute you to the internal Kubernetes address of the cluster, which doesn't resolve from outside. Besides that it'll give you the necessary access to the stored savepoints when you're using persistent volumes to store those.
55
+
56
+
Here's an example of how such a kubernetes yaml could look like:
0 commit comments