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
helmfile doesn't have such a command for helm show crd, just gets the crd command.
Cause:
We usually use the helmfile template to generate YAML, upload the YAML to the audit system, and then use kubectl apply -f to submit it. The crd is too large to be kubectl apply, and can only be submitted by kubectl replate, but other resources still want to be submitted to k8s by apply, so you need to get the yaml of the crd separately . Something like helm show crds
The text was updated successfully, but these errors were encountered:
helmfile doesn't have such a command for helm show crd, just gets the crd command.
Cause:
We usually use the helmfile template to generate YAML, upload the YAML to the audit system, and then use
kubectl apply -f
to submit it. The crd is too large to bekubectl apply
, and can only be submitted bykubectl replate
, but other resources still want to be submitted to k8s by apply, so you need to get the yaml of the crd separately . Something likehelm show crds
The text was updated successfully, but these errors were encountered: