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
{{ message }}
This repository was archived by the owner on Nov 24, 2025. It is now read-only.
while testing the runtime-operator I think I found a bug.
It seems that when deleting a workload, you still can call the component in that workload via the http-server.
Steps to reproduce:
Run the runtime-operator
a. make kind-setup
b. make helm-install
Applied a workload: kubectl apply -f workload.yaml
Performed a curl request: curl -v -H "Host: localhost" http://localhost:8888/
Got the expected response
Deleted the workload: kubectl delete -f workload.yaml
Verified it by: kubectl get workloads
Performed the same curl request: curl -v -H "Host: localhost" http://localhost:8888/
Got the same response as in 4, I would expect that it doesn't resolve anymore
I am not sure how a runtime-operator works, but I would expect that the component was deleted and the http-server config host will be removed.