Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 24 additions & 10 deletions charts/fleet-crd/templates/crds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -505,8 +505,10 @@ spec:
nullable: true
type: object
timeoutSeconds:
description: TimeoutSeconds is the time to wait for Helm
operations.
description: TimeoutSeconds is the number of seconds Fleet
passes to Helm operations. Omitted or zero values disable
Helm status waiting; positive values enable Helm status
waiting up to the configured timeout.
Comment thread
puneetdixit200 marked this conversation as resolved.
Outdated
type: integer
values:
description: 'Values passed to Helm. It is possible to specify
Expand Down Expand Up @@ -971,8 +973,10 @@ spec:
nullable: true
type: object
timeoutSeconds:
description: TimeoutSeconds is the time to wait for Helm
operations.
description: TimeoutSeconds is the number of seconds Fleet
passes to Helm operations. Omitted or zero values disable
Helm status waiting; positive values enable Helm status
waiting up to the configured timeout.
type: integer
values:
description: 'Values passed to Helm. It is possible to specify
Expand Down Expand Up @@ -2010,7 +2014,10 @@ spec:
nullable: true
type: object
timeoutSeconds:
description: TimeoutSeconds is the time to wait for Helm operations.
description: TimeoutSeconds is the number of seconds Fleet
passes to Helm operations. Omitted or zero values disable
Helm status waiting; positive values enable Helm status waiting
up to the configured timeout.
type: integer
values:
description: 'Values passed to Helm. It is possible to specify
Expand Down Expand Up @@ -3036,8 +3043,10 @@ spec:
nullable: true
type: object
timeoutSeconds:
description: TimeoutSeconds is the time to wait for Helm
operations.
description: TimeoutSeconds is the number of seconds Fleet
passes to Helm operations. Omitted or zero values disable
Helm status waiting; positive values enable Helm status
waiting up to the configured timeout.
type: integer
values:
description: 'Values passed to Helm. It is possible to
Expand Down Expand Up @@ -8233,7 +8242,10 @@ spec:
nullable: true
type: object
timeoutSeconds:
description: TimeoutSeconds is the time to wait for Helm operations.
description: TimeoutSeconds is the number of seconds Fleet
passes to Helm operations. Omitted or zero values disable
Helm status waiting; positive values enable Helm status waiting
up to the configured timeout.
type: integer
values:
description: 'Values passed to Helm. It is possible to specify
Expand Down Expand Up @@ -9283,8 +9295,10 @@ spec:
nullable: true
type: object
timeoutSeconds:
description: TimeoutSeconds is the time to wait for Helm
operations.
description: TimeoutSeconds is the number of seconds Fleet
passes to Helm operations. Omitted or zero values disable
Helm status waiting; positive values enable Helm status
waiting up to the configured timeout.
type: integer
values:
description: 'Values passed to Helm. It is possible to
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,9 @@ type HelmOptions struct {
// Version of the chart to download
Version string `json:"version,omitempty"`

// TimeoutSeconds is the time to wait for Helm operations.
// TimeoutSeconds is the number of seconds Fleet passes to Helm operations.
// Omitted or zero values disable Helm status waiting; positive values enable
// Helm status waiting up to the configured timeout.
Comment thread
puneetdixit200 marked this conversation as resolved.
Outdated
TimeoutSeconds int `json:"timeoutSeconds,omitempty"`

// Values passed to Helm. It is possible to specify the keys and values
Expand Down
Loading