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

Commit

Permalink
fix(typo): fix typo in external secrets name (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
JacopoDaeli committed Dec 17, 2018
1 parent 87fd1c5 commit e26f75c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Add secret data in your external provider (e.g., `hello-service/password=1234` i

```yml
apiVersion: 'kubernetes-client.io/v1'
kind: ExtrenalSecret
kind: ExternalSecret
metadata:
name: hello-service
secretDescriptor:
Expand Down
2 changes: 1 addition & 1 deletion custom-resource-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"shortNames": [
"es"
],
"kind": "ExtrenalSecret",
"kind": "ExternalSecret",
"plural": "externalsecrets",
"singular": "externalsecret"
}
Expand Down
2 changes: 1 addition & 1 deletion examples/hello-service-external-secret.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: 'kubernetes-client.io/v1'
kind: ExtrenalSecret
kind: ExternalSecret
metadata:
name: hello-service
secretDescriptor:
Expand Down
2 changes: 1 addition & 1 deletion lib/external-secret.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ describe('getExternalSecretEvents', () => {
});

it('gets a stream of external secret events', async () => {
const fakeExternalSecretObject = { type: 'ExtrenalSecret' };
const fakeExternalSecretObject = { type: 'ExternalSecret' };
externalSecretsApiMock.get.resolves({
body: {
items: [fakeExternalSecretObject]
Expand Down

0 comments on commit e26f75c

Please sign in to comment.