Skip to content

Commit

Permalink
add disable_iss_validation option to k8s auth docs (#9142)
Browse files Browse the repository at this point in the history
  • Loading branch information
riuvshyn committed Jun 12, 2020
1 parent 0c535a5 commit 0223f59
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion website/pages/api-docs/auth/kubernetes/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ access the Kubernetes API.
keys.
- `issuer` `(string: "")` - Optional JWT issuer. If no issuer is specified, then this plugin will
use `kubernetes.io/serviceaccount` as the default issuer.
- `disable_iss_validation` `(bool: false)` - Disable JWT issuer validation. Allows to skip ISS validation.


### Sample Payload

Expand Down Expand Up @@ -84,7 +86,8 @@ $ curl \
"data":{
"kubernetes_host": "https://192.168.99.100:8443",
"kubernetes_ca_cert": "-----BEGIN CERTIFICATE-----.....-----END CERTIFICATE-----",
"pem_keys": ["-----BEGIN CERTIFICATE-----.....", .....]
"pem_keys": ["-----BEGIN CERTIFICATE-----.....", .....],
"disable_iss_validation": false
}
}
```
Expand Down

0 comments on commit 0223f59

Please sign in to comment.