diff --git a/docs/docs/api.md b/docs/docs/api.md
index 3691d10d0..ee887325a 100644
--- a/docs/docs/api.md
+++ b/docs/docs/api.md
@@ -3678,6 +3678,83 @@ Client defines how the grafana-operator talks to the grafana instance.
false |
+
+ tls |
+ object |
+
+ TLS Configuration used to talk with the grafana instance.
+
+ Validations:(has(self.insecureSkipVerify) && !(has(self.certSecretRef))) || (has(self.certSecretRef) && !(has(self.insecureSkipVerify))): insecureSkipVerify and certSecretRef cannot be set at the same time
+ |
+ false |
+
+
+
+
+### Grafana.spec.client.tls
+[↩ Parent](#grafanaspecclient)
+
+
+
+TLS Configuration used to talk with the grafana instance.
+
+
+
+
+ Name |
+ Type |
+ Description |
+ Required |
+
+
+
+ certSecretRef |
+ object |
+
+ Use a secret as a reference to give TLS Certificate information
+ |
+ false |
+
+ insecureSkipVerify |
+ boolean |
+
+ Disable the CA check of the server
+ |
+ false |
+
+
+
+
+### Grafana.spec.client.tls.certSecretRef
+[↩ Parent](#grafanaspecclienttls)
+
+
+
+Use a secret as a reference to give TLS Certificate information
+
+
+
+
+ Name |
+ Type |
+ Description |
+ Required |
+
+
+
+ name |
+ string |
+
+ name is unique within a namespace to reference a secret resource.
+ |
+ false |
+
+ namespace |
+ string |
+
+ namespace defines the space within which the secret name must be unique.
+ |
+ false |
@@ -19361,7 +19438,7 @@ External enables you to configure external grafana instances that is not managed
tls |
object |
- TLS Configuration used to talk with the external grafana instance.
+ DEPRECATED, use top level `tls` instead.
Validations:(has(self.insecureSkipVerify) && !(has(self.certSecretRef))) || (has(self.certSecretRef) && !(has(self.insecureSkipVerify))): insecureSkipVerify and certSecretRef cannot be set at the same time
|
@@ -19522,7 +19599,7 @@ TODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://git
-TLS Configuration used to talk with the external grafana instance.
+DEPRECATED, use top level `tls` instead.