Delete existing UDS file if exists

This commit is contained in:
Nils Hanke 2022-12-23 06:59:29 +01:00 committed by Nils Hanke
parent c4c1bd6bc5
commit cff735b0ee

View File

@ -61,6 +61,8 @@ func NewKonnectivityServerStaticPod() *KonnectivityServerStaticPod {
"--logtostderr=true", "--logtostderr=true",
// This needs to be consistent with the value set in egressSelectorConfiguration. // This needs to be consistent with the value set in egressSelectorConfiguration.
"--uds-name=/run/konnectivity-server/konnectivity-server.socket", "--uds-name=/run/konnectivity-server/konnectivity-server.socket",
// Clean up existing UDS file before starting the server in case the server crashed at some point.
"--delete-existing-uds-file=true",
// The following two lines assume the Konnectivity server is // The following two lines assume the Konnectivity server is
// deployed on the same machine as the apiserver, and the certs and // deployed on the same machine as the apiserver, and the certs and
// key of the API Server are at the specified location. // key of the API Server are at the specified location.