Skip to content

Commit

Permalink
Update the operator bundle
Browse files Browse the repository at this point in the history
Change-Id: Ib2abcc5ba0fc35e25f7990acb7ea93b97ce544a4
Signed-off-by: Cosmin Cojocar <[email protected]>
  • Loading branch information
ccojocar authored and k8s-ci-robot committed Dec 3, 2024
1 parent 1aa89d1 commit 5339664
Show file tree
Hide file tree
Showing 2 changed files with 75 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ metadata:
"name": "test-profile"
},
"spec": {
"policy": "#include \u003ctunables/global\u003e\n\nprofile test-profile flags=(attach_disconnected) {\n #include \u003cabstractions/base\u003e\n\n file,\n\n # Deny all file writes.\n deny /** w,\n}\n"
"abstract": {
"filesystem": []
}
}
},
{
Expand Down Expand Up @@ -242,7 +244,7 @@ metadata:
capabilities: Basic Install
categories: Security
containerImage: registry.k8s.io/security-profiles-operator/security-profiles-operator:v0.8.4
createdAt: "2024-11-13T09:48:41Z"
createdAt: "2024-12-02T16:08:12Z"
olm.skipRange: '>=0.4.1 <0.8.5-dev'
operatorframework.io/cluster-monitoring: "true"
operatorframework.io/suggested-namespace: security-profiles-operator
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.8.0
controller-gen.kubebuilder.io/version: v0.16.5
creationTimestamp: null
labels:
app: security-profiles-operator
Expand All @@ -18,25 +18,35 @@ spec:
singular: apparmorprofile
scope: Namespaced
versions:
- name: v1alpha1
- additionalPrinterColumns:
- jsonPath: .status.status
name: Status
type: string
name: v1alpha1
schema:
openAPIV3Schema:
description: AppArmorProfile is the Schema for the apparmorprofiles API
description: AppArmorProfile is a cluster level specification for an AppArmor
profile.
properties:
apiVersion:
description: 'APIVersion defines the versioned schema of this representation
of an object. Servers should convert recognized schemas to the latest
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
description: |-
APIVersion defines the versioned schema of this representation of an object.
Servers should convert recognized schemas to the latest internal value, and
may reject unrecognized values.
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
description: 'Kind is a string value representing the REST resource this
object represents. Servers may infer this from the endpoint the client
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
description: |-
Kind is a string value representing the REST resource this object represents.
Servers may infer this from the endpoint the client submits requests to.
Cannot be updated.
In CamelCase.
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
type: object
spec:
description: AppArmorProfileSpec defines the desired state of AppArmorProfile
description: AppArmorProfileSpec defines the desired state of AppArmorProfile.
properties:
abstract:
properties:
Expand Down Expand Up @@ -86,11 +96,57 @@ spec:
type: object
type: object
type: object
policy:
type: string
disabled:
default: false
description: Whether the profile is disabled and should be skipped
during reconciliation.
type: boolean
type: object
status:
description: AppArmorProfileStatus defines the observed state of AppArmorProfile
description: AppArmorProfileStatus defines the observed state of AppArmorProfile.
properties:
conditions:
description: Conditions of the resource.
items:
description: A Condition that may apply to a resource.
properties:
lastTransitionTime:
description: |-
LastTransitionTime is the last time this condition transitioned from one
status to another.
format: date-time
type: string
message:
description: |-
A Message containing details about this condition's last transition from
one status to another, if any.
type: string
reason:
description: A Reason for this condition's last transition from
one status to another.
type: string
status:
description: Status of this condition; is it currently True,
False, or Unknown?
type: string
type:
description: |-
Type of this condition. At most one of each condition type may apply to
a resource at any point in time.
type: string
required:
- lastTransitionTime
- reason
- status
- type
type: object
type: array
status:
description: |-
ProfileState defines the state that the profile is in. A profile in this context
refers to a SeccompProfile or a SELinux profile, the states are shared between them
as well as the management API.
type: string
type: object
type: object
served: true
Expand All @@ -101,5 +157,5 @@ status:
acceptedNames:
kind: ""
plural: ""
conditions: []
storedVersions: []
conditions: null
storedVersions: null

0 comments on commit 5339664

Please sign in to comment.