damp-table-85095
11/05/2024, 8:58 PM- name: web-dashboard
nodePort: 31915
port: 81
protocol: TCP
targetPort: web-dashboard
And then I add a similar entry to its associated `EndpointSlice`:
- name: web-dashboard,
port: 8001,
protocol: TCP
But the `endpointslice-controller`keeps on nuking the new entry in EndpointSlice
. Am I missing something? Why would the new port get garbage-collected by the controller? Does anyone have any ideas?damp-table-85095
11/06/2024, 4:11 AMEndpointSlice
references a port that does not match any pod's containerPod
. Investigating...