Skip to content

Commit

Permalink
fix(kuma-dp): advise user to check pod events when data plane rejecte…
Browse files Browse the repository at this point in the history
…d by webhooks (#8257)

Signed-off-by: Jay Chen <jay.chen@konghq.com>
  • Loading branch information
jijiechen authored Nov 6, 2023
1 parent 51e90c3 commit 64f664f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/kuma-dp/pkg/dataplane/envoy/remote_bootstrap.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ func (b *remoteBootstrap) Generate(ctx context.Context, url string, cfg kuma_dp.

switch err {
case DpNotFoundErr:
log.Info("Dataplane entity is not yet found in the Control Plane. If you are running on Kubernetes, CP is most likely still in the process of converting Pod to Dataplane. If it takes too long, check kuma-cp logs. Retrying.", "backoff", cfg.ControlPlane.Retry.Backoff)
log.Info("Dataplane entity is not yet found in the Control Plane. If you are running on Kubernetes, the control plane is most likely still in the process of converting Pod to Dataplane. If it takes too long, check pod events and control plane logs to see possible cause. Retrying.", "backoff", cfg.ControlPlane.Retry.Backoff)
default:
log.Info("could not fetch bootstrap configuration, make sure you are not trying to connect to global-cp. retrying (this could help only if you're connecting to zone-cp or standalone).", "backoff", cfg.ControlPlane.Retry.Backoff, "err", err.Error())
}
Expand Down

0 comments on commit 64f664f

Please sign in to comment.