Browse Source

docs: fix typo in ownership-deletion-policy (#1638)

Signed-off-by: Chris B <chris@banks.cx>

Signed-off-by: Chris B <chris@banks.cx>
Chris B 3 years ago
parent
commit
c6d09b004c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/guides/ownership-deletion-policy.md

+ 1 - 1
docs/guides/ownership-deletion-policy.md

@@ -14,7 +14,7 @@ The field `spec.target.creationPolicy` defines how the operator creates the a se
 The External Secret Operator creates secret and sets the `ownerReference` field on the Secret. This secret is subject to [garbage collection](https://kubernetes.io/docs/concepts/architecture/garbage-collection/) if the initial `ExternalSecret` is absent. If a secret with the same name already exists that is not owned by the controller it will result in a conflict. The operator will just error out, not claiming the ownership.
 
 ### Orphan
-The operator creates ths secret but does not set the `ownerReference` on the Secret. That means the Secret will not be subject to garbage collection. If a secret with the same name already exists it will be updated.
+The operator creates the secret but does not set the `ownerReference` on the Secret. That means the Secret will not be subject to garbage collection. If a secret with the same name already exists it will be updated.
 
 ### Merge
 The operator does not create a secret. Instead, it expects the secret to already exist. Values from the secret provider will be merged into the existing secret. Note: the controller takes ownership of a field even if it is owned by a different entity. Multiple ExternalSecrets can use `creationPolicy=Merge` with a single secret as long as the fields don't collide - otherwise you end up in an oscillating state.