Skip to content
This repository has been archived by the owner on Jul 26, 2022. It is now read-only.

Commit

Permalink
fix(azure-registry): Describe isBinary in the README
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukas Joergensen committed Mar 26, 2020
1 parent f480b63 commit 142e709
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -389,6 +389,24 @@ spec:
property: value
```
Due to the way Azure handles binary files, you need to explicitly let the ExternalSecret know that the secret is binary.
You can do that with the `isBinary` field on the key. This is necessary for certificates and other secret binary files.

```yml
apiVersion: kubernetes-client.io/v1
kind: ExternalSecret
metadata:
name: hello-keyvault-service
spec:
backendType: azureKeyVault
keyVaultName: hello-world
data:
- key: hello-service/credentials
name: password
isBinary: "true"
```


## Metrics

kubernetes-external-secrets exposes the following metrics over a prometheus endpoint:
Expand Down

0 comments on commit 142e709

Please sign in to comment.