i've delopped spoa program that work fine on docker/podman use case.
i've deployed in kubernetes environement, and now each 10s i receive this error : "error: handle worker: error read frame: unexpected frame type 47"
i've try to add http port to implement liveness/readyness and configured deploymentset to use this port...
and continue de send error message...
when i remove the kubernetes services no more error.
i think that kubernetes services try to connect every 10s event if no liveness are configured.
there is possibility to simply ignore tcp connect check ?
i think is her:
|
return fmt.Errorf("unexpected frame type %d", f.Type) |
i've delopped spoa program that work fine on docker/podman use case.
i've deployed in kubernetes environement, and now each 10s i receive this error : "error: handle worker: error read frame: unexpected frame type 47"
i've try to add http port to implement liveness/readyness and configured deploymentset to use this port...
and continue de send error message...
when i remove the kubernetes services no more error.
i think that kubernetes services try to connect every 10s event if no liveness are configured.
there is possibility to simply ignore tcp connect check ?
i think is her:
haproxy-spoe-go/frame/read.go
Line 32 in 042087d