component-chart icon indicating copy to clipboard operation
component-chart copied to clipboard

Fix letsencrypt SSL issue & added suppport for configmap

Open rishangbhavsar opened this issue 5 months ago • 2 comments

I was deploying an application with the letsencrypt and cert manager, where i was facing issues due to the annotations in the ingress which I was not able to tweak so i need to fix it in the chart itself. After making this change it works perfectly now

rishangbhavsar avatar Sep 18 '25 18:09 rishangbhavsar

my certmanager helm config

# Chart Version
  sources:
    - repoURL: https://charts.jetstack.io
      chart: cert-manager
      targetRevision: v1.18.2
      helm:
        releaseName: cert-manager
apiVersion: cert-manager.io/v1
kind: ClusterIssuer
metadata:
  name: letsencrypt-prod
spec:
  acme:
    server: https://acme-v02.api.letsencrypt.org/directory
    email: [email protected]
    profile: tlsserver
    privateKeySecretRef:
      name: letsencrypt-prod
    solvers:
      - http01:
          ingress:
            ingressClassName: nginx

rishangbhavsar avatar Sep 18 '25 18:09 rishangbhavsar

I also have added support for configmaps and deployment replicaset limits revisionHistoryLimit in the PR

rishangbhavsar avatar Oct 09 '25 06:10 rishangbhavsar