charts: refresh ingress-nginx cert-manager cert-manager-webhook-gandi
diff --git a/charts/cert-manager-webhook-gandi/examples/certificates/certif-example-com-clusterissuer.yaml b/charts/cert-manager-webhook-gandi/examples/certificates/certif-example-com-clusterissuer.yaml
new file mode 100644
index 0000000..eb39c24
--- /dev/null
+++ b/charts/cert-manager-webhook-gandi/examples/certificates/certif-example-com-clusterissuer.yaml
@@ -0,0 +1,11 @@
+apiVersion: cert-manager.io/v1
+kind: Certificate
+metadata:
+  name: example-com
+spec:
+  dnsNames:
+  - example.com
+  issuerRef:
+    name: letsencrypt-staging
+    kind: ClusterIssuer
+  secretName: example-com-tls
diff --git a/charts/cert-manager-webhook-gandi/examples/certificates/certif-example-com.yaml b/charts/cert-manager-webhook-gandi/examples/certificates/certif-example-com.yaml
new file mode 100644
index 0000000..834a7c7
--- /dev/null
+++ b/charts/cert-manager-webhook-gandi/examples/certificates/certif-example-com.yaml
@@ -0,0 +1,10 @@
+apiVersion: cert-manager.io/v1
+kind: Certificate
+metadata:
+  name: example-com
+spec:
+  dnsNames:
+  - example.com
+  issuerRef:
+    name: letsencrypt-staging
+  secretName: example-com-tls
diff --git a/charts/cert-manager-webhook-gandi/examples/certificates/certif-wildcard-example-com-clusterissuer.yaml b/charts/cert-manager-webhook-gandi/examples/certificates/certif-wildcard-example-com-clusterissuer.yaml
new file mode 100644
index 0000000..04d8f23
--- /dev/null
+++ b/charts/cert-manager-webhook-gandi/examples/certificates/certif-wildcard-example-com-clusterissuer.yaml
@@ -0,0 +1,11 @@
+apiVersion: cert-manager.io/v1
+kind: Certificate
+metadata:
+  name: wildcard-example-com
+spec:
+  dnsNames:
+  - '*.example.com'
+  issuerRef:
+    name: letsencrypt-staging
+    kind: ClusterIssuer
+  secretName: wildcard-example-com-tls
diff --git a/charts/cert-manager-webhook-gandi/examples/certificates/certif-wildcard-example-com.yaml b/charts/cert-manager-webhook-gandi/examples/certificates/certif-wildcard-example-com.yaml
new file mode 100644
index 0000000..b056245
--- /dev/null
+++ b/charts/cert-manager-webhook-gandi/examples/certificates/certif-wildcard-example-com.yaml
@@ -0,0 +1,10 @@
+apiVersion: cert-manager.io/v1
+kind: Certificate
+metadata:
+  name: wildcard-example-com
+spec:
+  dnsNames:
+  - '*.example.com'
+  issuerRef:
+    name: letsencrypt-staging
+  secretName: wildcard-example-com
diff --git a/charts/cert-manager-webhook-gandi/examples/issuers/letsencrypt-staging-clusterissuer.yaml b/charts/cert-manager-webhook-gandi/examples/issuers/letsencrypt-staging-clusterissuer.yaml
new file mode 100644
index 0000000..d801c9c
--- /dev/null
+++ b/charts/cert-manager-webhook-gandi/examples/issuers/letsencrypt-staging-clusterissuer.yaml
@@ -0,0 +1,22 @@
+apiVersion: cert-manager.io/v1
+kind: ClusterIssuer
+metadata:
+  name: letsencrypt-staging
+spec:
+  acme:
+    # The ACME server URL
+    server: https://acme-staging-v02.api.letsencrypt.org/directory
+    # Email address used for ACME registration
+    email: invalid@example.com
+    # Name of a secret used to store the ACME account private key
+    privateKeySecretRef:
+      name: letsencrypt-staging
+    solvers:
+    - dns01:
+        webhook:
+          groupName: acme.bwolf.me
+          solverName: gandi
+          config:
+            apiKeySecretRef:
+              key: api-token
+              name: gandi-credentials
\ No newline at end of file
diff --git a/charts/cert-manager-webhook-gandi/examples/issuers/letsencrypt-staging-issuer.yaml b/charts/cert-manager-webhook-gandi/examples/issuers/letsencrypt-staging-issuer.yaml
new file mode 100644
index 0000000..4871657
--- /dev/null
+++ b/charts/cert-manager-webhook-gandi/examples/issuers/letsencrypt-staging-issuer.yaml
@@ -0,0 +1,23 @@
+apiVersion: cert-manager.io/v1
+kind: Issuer
+metadata:
+  name: letsencrypt-staging
+  namespace: default
+spec:
+  acme:
+    # The ACME server URL
+    server: https://acme-staging-v02.api.letsencrypt.org/directory
+    # Email address used for ACME registration
+    email: invalid@example.com
+    # Name of a secret used to store the ACME account private key
+    privateKeySecretRef:
+      name: letsencrypt-staging
+    solvers:
+    - dns01:
+        webhook:
+          groupName: acme.bwolf.me
+          solverName: gandi
+          config:
+            apiKeySecretRef:
+              key: api-token
+              name: gandi-credentials
\ No newline at end of file