From 01dad73a4e17fc2cab657225252a20be61da84fa Mon Sep 17 00:00:00 2001 From: scoss Date: Wed, 23 Apr 2025 14:50:36 -0400 Subject: [PATCH] tls_verify fix (#25725) --- website/content/plugins/drivers/podman.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/content/plugins/drivers/podman.mdx b/website/content/plugins/drivers/podman.mdx index 7aaa4925d..5eb07a3c8 100644 --- a/website/content/plugins/drivers/podman.mdx +++ b/website/content/plugins/drivers/podman.mdx @@ -156,7 +156,7 @@ The `podman` driver implements the following [capabilities](/nomad/docs/concepts ``` - `auth` - (Optional) Authenticate to the image registry using a static - credential. By setting tlsVerify to false the driver will allow using self- + credential. By setting `tls_verify` to false the driver will allow using self- signed certificates or plain HTTP connections to the registry. ```hcl @@ -165,7 +165,7 @@ The `podman` driver implements the following [capabilities](/nomad/docs/concepts auth { username = "someuser" password = "sup3rs3creT" - tlsVerify = false + tls_verify = false } } ```