Skip to content

Commit 370c47d

Browse files
committed
changed comments
1 parent 8104af9 commit 370c47d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

content/en/docs/reference/access-authn-authz/extensible-admission-controllers.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ for a request to update the `scale` subresource of an `apps/v1` `Deployment`:
335335
# Namespace of the resource being modified, if the resource is namespaced (or is a Namespace object)
336336
"namespace": "my-namespace",
337337

338-
# Operation can be CREATE, UPDATE, DELETE, or CONNECT
338+
# operation can be CREATE, UPDATE, DELETE, or CONNECT
339339
"operation": "UPDATE",
340340

341341
"userInfo": {
@@ -361,26 +361,26 @@ for a request to update the `scale` subresource of an `apps/v1` `Deployment`:
361361
}
362362
},
363363

364-
# Object is the new object being admitted. It is null for DELETE operations
364+
# object is the new object being admitted. It is null for DELETE operations
365365
"object": {
366366
"apiVersion": "autoscaling/v1",
367367
"kind": "Scale"
368368
},
369369

370-
# OldObject is the existing object. It is null for CREATE and CONNECT operations
370+
# oldObject is the existing object. It is null for CREATE and CONNECT operations
371371
"oldObject": {
372372
"apiVersion": "autoscaling/v1",
373373
"kind": "Scale"
374374
},
375375

376-
# Options contain the options for the operation being admitted, like meta.k8s.io/v1 CreateOptions,
376+
# options contain the options for the operation being admitted, like meta.k8s.io/v1 CreateOptions,
377377
# UpdateOptions, or DeleteOptions. It is null for CONNECT operations
378378
"options": {
379379
"apiVersion": "meta.k8s.io/v1",
380380
"kind": "UpdateOptions"
381381
},
382382

383-
# DryRun indicates the API request is running in dry run mode and will not be persisted
383+
# dryRun indicates the API request is running in dry run mode and will not be persisted
384384
# Webhooks with side effects should avoid actuating those side effects when dryRun is true
385385
"dryRun": false
386386
}

0 commit comments

Comments
 (0)