Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions aspell_custom.txt
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,4 @@ destructuring
yaml
ttl
pkce
tolerations
2 changes: 1 addition & 1 deletion rancher2/structure_agent_deployment_customization.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ func expandAgentDeploymentCustomization(p []interface{}) (*managementClient.Agen

in := p[0].(map[string]interface{})

if v, ok := in["append_tolerations"].([]interface{}); ok && len(v) > 0 {
if v, ok := in["append_tolerations"].([]interface{}); ok {
obj.AppendTolerations = expandTolerations(v)
}

Expand Down
Loading