Skip to content
This repository was archived by the owner on Apr 17, 2025. It is now read-only.

update quickstart #69

Merged
merged 1 commit into from
Aug 16, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions docs/user-guide/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -596,7 +596,6 @@ Expected output:
```
team-a
├── [s] service-2
├── [s] service-3
└── [s] service-4
└── staging
```
Expand Down Expand Up @@ -650,7 +649,7 @@ kubectl -n team-b get secrets
But now we’ve started running an untrusted service in `team-b`, so we’ve decided not to share that secret with it anymore. We can do this by setting the propagation selectors on the secret:

```bash
kubectl annotate secret my-secret -n acme-org propagate.hnc.x-k8s.io/treeSelect=!team-b
kubectl annotate secret my-secret -n acme-org propagate.hnc.x-k8s.io/treeSelect='!team-b'
```

Now you’ll see the secret is no longer accessible from `team-b`:
Expand Down