You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| -crd-dir | Place crds in their own folder per Helm 3 [docs](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/#method-1-let-helm-do-it-for-you). Caveat: CRDs templating is not supported by Helm. | `helmify -crd-dir`|
88
-
| -image-pull-secrets| Allows the user to use existing secrets as imagePullSecrets |`helmify -image-pull-secrets`|
89
-
| -cert-manager-as-subchart | Allows the user to install cert-manager as a subchart |`helmify -cert-manager-as-subchart`|
| -crd-dir | Place crds in their own folder per Helm 3 [docs](https://helm.sh/docs/chart_best_practices/custom_resource_definitions/#method-1-let-helm-do-it-for-you). Caveat: CRDs templating is not supported by Helm. | `helmify -crd-dir` |
109
+
| -image-pull-secrets | Allows the user to use existing secrets as imagePullSecrets |`helmify -image-pull-secrets`|
110
+
| -cert-manager-as-subchart | Allows the user to install cert-manager as a subchart |`helmify -cert-manager-as-subchart`|
flag.BoolVar(&result.ImagePullSecrets, "image-pull-secrets", false, "Allows the user to use existing secrets as imagePullSecrets in values.yaml")
40
65
flag.BoolVar(&result.GenerateDefaults, "generate-defaults", false, "Allows the user to add empty placeholders for tipical customization options in values.yaml. Currently covers: topology constraints, node selectors, tolerances")
41
66
flag.BoolVar(&result.CertManagerAsSubchart, "cert-manager-as-subchart", false, "Allows the user to add cert-manager as a subchart")
67
+
flag.BoolVar(&result.FilesRecursively, "r", false, "Scan dirs from -f option recursively")
68
+
flag.Var(&files, "f", "File or directory containing k8s manifests")
0 commit comments