Skip to content

Commit

Permalink
Document timeout attribute for kms-plugin. (#12158)
Browse files Browse the repository at this point in the history
See 72540.
  • Loading branch information
immutableT authored and k8s-ci-robot committed Jan 23, 2019
1 parent 4652684 commit cefff92
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion content/en/docs/tasks/administer-cluster/kms-provider.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ To configure a KMS provider on the API server, include a provider of type ```kms

* `name`: Display name of the KMS plugin.
* `endpoint`: Listen address of the gRPC server (KMS plugin). The endpoint is a UNIX domain socket.
* `cachesize`: Number of data encryption keys (DEKs) to be cached in the clear. When cached, DEKs can be used without another call to the KMS; whereas DEKs that are not cached require a call to the KMS to unwrap..
* `cachesize`: Number of data encryption keys (DEKs) to be cached in the clear. When cached, DEKs can be used without another call to the KMS; whereas DEKs that are not cached require a call to the KMS to unwrap.
* `timeout`: How long should kube-apiserver wait for kms-plugin to respond before returning an error (default is 3 seconds).

See [Understanding the encryption at rest configuration.](/docs/tasks/administer-cluster/encrypt-data)

Expand Down Expand Up @@ -89,6 +90,7 @@ resources:
name: myKmsPlugin
endpoint: unix:///tmp/socketfile.sock
cachesize: 100
timeout: 3s
- identity: {}
```
Expand Down

0 comments on commit cefff92

Please sign in to comment.