Complete helm toolkit with generation and validation capabilities
94
94%
Does it follow best practices?
Impact
Pending
No eval scenarios have been run
Advisory
Suggest reviewing before use
You are given the following rendered manifest file from a chart's crds/ directory:
apiVersion: cert-manager.io/v1
kind: Certificate
metadata:
name: my-tls-cert
namespace: default
spec:
secretName: my-tls-secret
issuerRef:
name: letsencrypt-prod
dnsNames:
- example.comAnd a second rendered manifest from templates/:
apiVersion: apps/v1
kind: Deployment
metadata:
name: my-app
spec:
replicas: 1
template:
spec:
containers:
- name: app
image: myapp:v1.2.3Perform Stage 6 (CRD Detection and Documentation Lookup) of the helm-validator workflow.
cert-manager.io/v1 Certificate spec, list the required fields that are present and identify any commonly required fields that appear to be missing (e.g., duration, renewBefore, privateKey).