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

change-admission-v #4627

Merged
merged 1 commit into from Apr 27, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/content/kubernetes-debugging.md
Expand Up @@ -121,7 +121,7 @@ package system

```live:patch/good:module:read_only,openable
main := {
"apiVersion": "admission.k8s.io/v1beta1",
"apiVersion": "admission.k8s.io/v1",
"kind": "AdmissionReview",
"response": response,
}
Expand All @@ -145,7 +145,7 @@ patches := [

```live:patch/bad:module:read_only
main := {
"apiVersion": "admission.k8s.io/v1beta1",
"apiVersion": "admission.k8s.io/v1",
"kind": "AdmissionReview",
"response": response,
}
Expand Down
4 changes: 2 additions & 2 deletions docs/content/kubernetes-introduction.md
Expand Up @@ -115,7 +115,7 @@ Here is an example of a Pod being created:
```live:container_image:input
{
"kind": "AdmissionReview",
"apiVersion": "admission.k8s.io/v1beta1",
"apiVersion": "admission.k8s.io/v1",
"request": {
"kind": {
"group": "",
Expand Down Expand Up @@ -229,7 +229,7 @@ sent back to the API Server.
```json
{
"kind": "AdmissionReview",
"apiVersion": "admission.k8s.io/v1beta1",
"apiVersion": "admission.k8s.io/v1",
"response": {
"allowed": false,
"status": {
Expand Down