Skip to content

Commit 4ef8669

Browse files
munnerzliggitt
andauthored
Apply suggestions from code review
Co-authored-by: Jordan Liggitt <[email protected]>
1 parent a3c89ce commit 4ef8669

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

content/en/docs/reference/access-authn-authz/service-accounts-admin.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ in the Kubernetes codebase.
169169

170170
You can inspect a JWT using standard JWT decoding tool. Below is an example of a JWT for the
171171
`my-serviceaccount` ServiceAccount, bound to a Pod object named `my-pod` which is scheduled
172-
to the Node `my-node`, in the `default` namespace:
172+
to the Node `my-node`, in the `my-namespace` namespace:
173173

174174
```json
175175
{
@@ -181,7 +181,7 @@ to the Node `my-node`, in the `default` namespace:
181181
"iss": "https://my-cluster.example.com",
182182
"jti": "aed34954-b33a-4142-b1ec-389d6bbb4936",
183183
"kubernetes.io": {
184-
"namespace": "default",
184+
"namespace": "my-namespace",
185185
"node": {
186186
"name": "my-node",
187187
"uid": "646e7c5e-32d6-4d42-9dbd-e504e6cbe6b1"
@@ -196,7 +196,7 @@ to the Node `my-node`, in the `default` namespace:
196196
}
197197
},
198198
"nbf": 1729601640,
199-
"sub": "system:serviceaccount:default:my-serviceaccount"
199+
"sub": "system:serviceaccount:my-namespace:my-serviceaccount"
200200
}
201201
```
202202

0 commit comments

Comments
 (0)