Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • she/theodolite
1 result
Show changes
Commits on Source (7)
Showing
with 1044 additions and 7 deletions
......@@ -24,7 +24,7 @@ data:
"editable": true,
"gnetId": null,
"graphTooltip": 0,
"id": 2,
"id": 1,
"iteration": 1589140028684,
"links": [],
"panels": [
......@@ -1004,4 +1004,4 @@ data:
"uid": "dad0CNlZz",
"version": 25
}`}}
{{- end }}
\ No newline at end of file
{{- end }}
This diff is collapsed.
......@@ -14,6 +14,7 @@ spec:
app: flink
component: jobmanager
spec:
terminationGracePeriodSeconds: 0
containers:
- name: jobmanager
image: ghcr.io/cau-se/theodolite-uc1-flink:latest
......@@ -90,4 +91,4 @@ spec:
emptyDir: {}
# - name: job-artifacts-volume
# hostPath:
# path: /host/path/to/job/artifacts
\ No newline at end of file
# path: /host/path/to/job/artifacts
......@@ -14,6 +14,7 @@ spec:
app: flink
component: taskmanager
spec:
terminationGracePeriodSeconds: 0
containers:
- name: taskmanager
image: ghcr.io/cau-se/theodolite-uc1-flink:latest
......
......@@ -14,6 +14,7 @@ spec:
app: flink
component: jobmanager
spec:
terminationGracePeriodSeconds: 0
containers:
- name: jobmanager
image: ghcr.io/cau-se/theodolite-uc2-flink:latest
......@@ -90,4 +91,4 @@ spec:
emptyDir: {}
# - name: job-artifacts-volume
# hostPath:
# path: /host/path/to/job/artifacts
\ No newline at end of file
# path: /host/path/to/job/artifacts
......@@ -14,6 +14,7 @@ spec:
app: flink
component: taskmanager
spec:
terminationGracePeriodSeconds: 0
containers:
- name: taskmanager
image: ghcr.io/cau-se/theodolite-uc2-flink:latest
......
......@@ -14,6 +14,7 @@ spec:
app: flink
component: jobmanager
spec:
terminationGracePeriodSeconds: 0
containers:
- name: jobmanager
image: ghcr.io/cau-se/theodolite-uc3-flink:latest
......@@ -90,4 +91,4 @@ spec:
emptyDir: {}
# - name: job-artifacts-volume
# hostPath:
# path: /host/path/to/job/artifacts
\ No newline at end of file
# path: /host/path/to/job/artifacts
......@@ -14,6 +14,7 @@ spec:
app: flink
component: taskmanager
spec:
terminationGracePeriodSeconds: 0
containers:
- name: taskmanager
image: ghcr.io/cau-se/theodolite-uc3-flink:latest
......
......@@ -14,6 +14,7 @@ spec:
app: flink
component: jobmanager
spec:
terminationGracePeriodSeconds: 0
containers:
- name: jobmanager
image: ghcr.io/cau-se/theodolite-uc4-flink:latest
......@@ -90,4 +91,4 @@ spec:
emptyDir: {}
# - name: job-artifacts-volume
# hostPath:
# path: /host/path/to/job/artifacts
\ No newline at end of file
# path: /host/path/to/job/artifacts
......@@ -14,6 +14,7 @@ spec:
app: flink
component: taskmanager
spec:
terminationGracePeriodSeconds: 0
containers:
- name: taskmanager
image: ghcr.io/cau-se/theodolite-uc4-flink:latest
......
......@@ -80,7 +80,7 @@ class ExecutionHandler(
override fun onDelete(execution: ExecutionCRD, b: Boolean) {
logger.info { "Delete execution ${execution.metadata.name}" }
if (execution.status.executionState == States.RUNNING.value
&& this.controller.isExecutionRunning(execution.spec.name)
&& this.controller.isExecutionRunning(execution.metadata.name)
) {
this.controller.stop()
}
......