Skip to content
Snippets Groups Projects
Commit 90e8de9f authored by Benedikt Wetzel's avatar Benedikt Wetzel
Browse files

Merge branch 'master' of git.se.informatik.uni-kiel.de:she/theodolite into...

Merge branch 'master' of git.se.informatik.uni-kiel.de:she/theodolite into 249-make-analysis-flexible
parents 54239255 11fcf2b8
No related branches found
No related tags found
1 merge request!180Make the analysis of experiments more flexible
Showing
with 1044 additions and 7 deletions
...@@ -24,7 +24,7 @@ data: ...@@ -24,7 +24,7 @@ data:
"editable": true, "editable": true,
"gnetId": null, "gnetId": null,
"graphTooltip": 0, "graphTooltip": 0,
"id": 2, "id": 1,
"iteration": 1589140028684, "iteration": 1589140028684,
"links": [], "links": [],
"panels": [ "panels": [
......
This diff is collapsed.
...@@ -14,6 +14,7 @@ spec: ...@@ -14,6 +14,7 @@ spec:
app: flink app: flink
component: jobmanager component: jobmanager
spec: spec:
terminationGracePeriodSeconds: 0
containers: containers:
- name: jobmanager - name: jobmanager
image: ghcr.io/cau-se/theodolite-uc1-flink:latest image: ghcr.io/cau-se/theodolite-uc1-flink:latest
......
...@@ -14,6 +14,7 @@ spec: ...@@ -14,6 +14,7 @@ spec:
app: flink app: flink
component: taskmanager component: taskmanager
spec: spec:
terminationGracePeriodSeconds: 0
containers: containers:
- name: taskmanager - name: taskmanager
image: ghcr.io/cau-se/theodolite-uc1-flink:latest image: ghcr.io/cau-se/theodolite-uc1-flink:latest
......
...@@ -14,6 +14,7 @@ spec: ...@@ -14,6 +14,7 @@ spec:
app: flink app: flink
component: jobmanager component: jobmanager
spec: spec:
terminationGracePeriodSeconds: 0
containers: containers:
- name: jobmanager - name: jobmanager
image: ghcr.io/cau-se/theodolite-uc2-flink:latest image: ghcr.io/cau-se/theodolite-uc2-flink:latest
......
...@@ -14,6 +14,7 @@ spec: ...@@ -14,6 +14,7 @@ spec:
app: flink app: flink
component: taskmanager component: taskmanager
spec: spec:
terminationGracePeriodSeconds: 0
containers: containers:
- name: taskmanager - name: taskmanager
image: ghcr.io/cau-se/theodolite-uc2-flink:latest image: ghcr.io/cau-se/theodolite-uc2-flink:latest
......
...@@ -14,6 +14,7 @@ spec: ...@@ -14,6 +14,7 @@ spec:
app: flink app: flink
component: jobmanager component: jobmanager
spec: spec:
terminationGracePeriodSeconds: 0
containers: containers:
- name: jobmanager - name: jobmanager
image: ghcr.io/cau-se/theodolite-uc3-flink:latest image: ghcr.io/cau-se/theodolite-uc3-flink:latest
......
...@@ -14,6 +14,7 @@ spec: ...@@ -14,6 +14,7 @@ spec:
app: flink app: flink
component: taskmanager component: taskmanager
spec: spec:
terminationGracePeriodSeconds: 0
containers: containers:
- name: taskmanager - name: taskmanager
image: ghcr.io/cau-se/theodolite-uc3-flink:latest image: ghcr.io/cau-se/theodolite-uc3-flink:latest
......
...@@ -14,6 +14,7 @@ spec: ...@@ -14,6 +14,7 @@ spec:
app: flink app: flink
component: jobmanager component: jobmanager
spec: spec:
terminationGracePeriodSeconds: 0
containers: containers:
- name: jobmanager - name: jobmanager
image: ghcr.io/cau-se/theodolite-uc4-flink:latest image: ghcr.io/cau-se/theodolite-uc4-flink:latest
......
...@@ -14,6 +14,7 @@ spec: ...@@ -14,6 +14,7 @@ spec:
app: flink app: flink
component: taskmanager component: taskmanager
spec: spec:
terminationGracePeriodSeconds: 0
containers: containers:
- name: taskmanager - name: taskmanager
image: ghcr.io/cau-se/theodolite-uc4-flink:latest image: ghcr.io/cau-se/theodolite-uc4-flink:latest
......
...@@ -80,7 +80,7 @@ class ExecutionHandler( ...@@ -80,7 +80,7 @@ class ExecutionHandler(
override fun onDelete(execution: ExecutionCRD, b: Boolean) { override fun onDelete(execution: ExecutionCRD, b: Boolean) {
logger.info { "Delete execution ${execution.metadata.name}" } logger.info { "Delete execution ${execution.metadata.name}" }
if (execution.status.executionState == States.RUNNING.value if (execution.status.executionState == States.RUNNING.value
&& this.controller.isExecutionRunning(execution.spec.name) && this.controller.isExecutionRunning(execution.metadata.name)
) { ) {
this.controller.stop() this.controller.stop()
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment