Skip to content

Commit

Permalink
Merge pull request #6347 from LucaLanziani/fix/describe-param-behavior
Browse files Browse the repository at this point in the history
🐛 skip templating step if `describe` flag is used
  • Loading branch information
k8s-ci-robot authored May 22, 2022
2 parents 15e172c + 8218e30 commit 11315e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/clusterctl/cmd/generate_provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ func runGenerateProviderComponents() error {

options := client.ComponentsOptions{
TargetNamespace: gpo.targetNamespace,
SkipTemplateProcess: gpo.raw,
SkipTemplateProcess: gpo.raw || gpo.textOutput,
}

components, err := c.GetProviderComponents(providerName, providerType, options)
Expand Down

0 comments on commit 11315e1

Please sign in to comment.