File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -169,6 +169,8 @@ Release result = installCommand
169169 // Optionally set the path to the file containing repository names and URLs
170170 // Defaults to "~/.config/helm/repositories.yaml"
171171 .withRepositoryConfig(Paths . get(" path" , " to" , " config" ))
172+ // Optionally skip installation of CRDs
173+ .skipCrds()
172174 .call();
173175```
174176
@@ -615,6 +617,8 @@ String result = templateCommand
615617 // Optionally set the path to the file containing repository names and URLs
616618 // Defaults to "~/.config/helm/repositories.yaml"
617619 .withRepositoryConfig(Paths . get(" path" , " to" , " config" ))
620+ // Optionally skip rendering of CRDs
621+ .skipCrds()
618622 .call();
619623```
620624
@@ -748,6 +752,8 @@ Release result = upgradeCommand
748752 // Optionally set the path to the file containing repository names and URLs
749753 // Defaults to "~/.config/helm/repositories.yaml"
750754 .withRepositoryConfig(Paths . get(" path" , " to" , " config" ))
755+ // Optionally skip installation of CRDs
756+ .skipCrds()
751757 .call();
752758```
753759
You can’t perform that action at this time.
0 commit comments