Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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