Skip to content

Commit

Permalink
Fix example KMS configuration documentation
Browse files Browse the repository at this point in the history
Updated example configuration to specify separate unix domain socket
paths.

Signed-off-by: Micah Hausler <mhausler@amazon.com>
  • Loading branch information
micahhausler committed May 16, 2024
1 parent e500dd5 commit 81e6c94
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions content/en/docs/tasks/administer-cluster/kms-provider.md
Original file line number Diff line number Diff line change
Expand Up @@ -284,12 +284,12 @@ defined in a CustomResourceDefinition, your cluster must be running Kubernetes v
providers:
- kms:
name: myKmsPluginFoo
endpoint: unix:///tmp/socketfile.sock
endpoint: unix:///tmp/socketfile-foo.sock
cachesize: 100
timeout: 3s
- kms:
name: myKmsPluginBar
endpoint: unix:///tmp/socketfile.sock
endpoint: unix:///tmp/socketfile-bar.sock
cachesize: 100
timeout: 3s
```
Expand All @@ -308,12 +308,12 @@ defined in a CustomResourceDefinition, your cluster must be running Kubernetes v
- kms:
apiVersion: v2
name: myKmsPluginFoo
endpoint: unix:///tmp/socketfile.sock
endpoint: unix:///tmp/socketfile-foo.sock
timeout: 3s
- kms:
apiVersion: v2
name: myKmsPluginBar
endpoint: unix:///tmp/socketfile.sock
endpoint: unix:///tmp/socketfile-bar.sock
timeout: 3s
```

Expand Down

0 comments on commit 81e6c94

Please sign in to comment.