tls_verify fix (#25725)

This commit is contained in:
scoss
2025-04-23 14:50:36 -04:00
committed by GitHub
parent 50513a87b7
commit 01dad73a4e

View File

@@ -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
}
}
```