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

Image Integrity swagger in 20203-06-02-preview #24454

Merged
Changes from 2 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
Original file line number Diff line number Diff line change
Expand Up @@ -6733,6 +6733,10 @@
"$ref": "#/definitions/ManagedClusterSecurityProfileImageCleaner",
"description": "Image Cleaner settings for the security profile."
},
"imageIntegrity": {
"$ref": "#/definitions/ManagedClusterSecurityProfileImageIntegrity",
"description": "Image Integrity is a feature that works with Azure Policy to verify image integrity by signature. This will not have any effect unless policy is applied to enforce image signatures. See https://aka.ms/aks/image-integrity for how to use this feature via policy."
fseldow marked this conversation as resolved.
Show resolved Hide resolved
},
"nodeRestriction": {
"$ref": "#/definitions/ManagedClusterSecurityProfileNodeRestriction",
"description": "[Node Restriction](https://kubernetes.io/docs/reference/access-authn-authz/admission-controllers/#noderestriction) settings for the security profile."
Expand Down Expand Up @@ -6894,6 +6898,16 @@
},
"description": "Image Cleaner removes unused images from nodes, freeing up disk space and helping to reduce attack surface area. Here are settings for the security profile."
},
"ManagedClusterSecurityProfileImageIntegrity": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean",
"description": "Whether to enable image integrity. The default value is false."
}
},
"description": "Image integrity related settings for the security profile."
},
"ManagedClusterSecurityProfileNodeRestriction": {
"type": "object",
"properties": {
Expand Down