Skip to content

Commit

Permalink
Change rollout settings for Fluentd to speed up rollout.
Browse files Browse the repository at this point in the history
  • Loading branch information
rene-dekker committed Dec 1, 2023
1 parent b50cc09 commit 1ab0cac
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/render/fluentd.go
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,8 @@ func (c *fluentdComponent) packetCaptureApiRoleBinding() *rbacv1.RoleBinding {
// managerDeployment creates a deployment for the Tigera Secure manager component.
func (c *fluentdComponent) daemonset() *appsv1.DaemonSet {
var terminationGracePeriod int64 = 0
maxUnavailable := intstr.FromInt(1)
// It is not required that Fluentd runs at all times. It is able to catch up from temporary downtime.
maxUnavailable := intstr.FromString("100%")

annots := c.cfg.TrustedBundle.HashAnnotations()

Expand Down

0 comments on commit 1ab0cac

Please sign in to comment.