diff --git a/charts/mondoo-operator/Chart.yaml b/charts/mondoo-operator/Chart.yaml index 8740edc4..c002aece 100755 --- a/charts/mondoo-operator/Chart.yaml +++ b/charts/mondoo-operator/Chart.yaml @@ -16,9 +16,9 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 1.21.2 +version: 1.22.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "1.21.2" +appVersion: "1.22.0" diff --git a/charts/mondoo-operator/templates/mondooauditconfig-crd.yaml b/charts/mondoo-operator/templates/mondooauditconfig-crd.yaml index 53307f66..d54bdfe4 100644 --- a/charts/mondoo-operator/templates/mondooauditconfig-crd.yaml +++ b/charts/mondoo-operator/templates/mondooauditconfig-crd.yaml @@ -221,6 +221,16 @@ spec: properties: enable: type: boolean + intervalTimer: + default: 60 + description: IntervalTimer is the interval (in minutes) for the + node scanning. The default is "60". Only applicable for Deployment + style. + type: integer + priorityClassName: + description: PriorityClassName specifies the name of the PriorityClass + for the node scanning workloads. + type: string resources: description: ResourceRequirements describes the compute resource requirements. @@ -271,8 +281,18 @@ spec: type: object type: object schedule: - description: Specify a custom crontab schedule for the node scanning - job. If not specified, the default schedule is used. + description: Schedule specifies a custom crontab schedule for the + node scanning job. If not specified, the default schedule is used. + Only applicable for CronJob style + type: string + style: + default: cronjob + description: Style specifies how node scanning is deployed. The + default is "cronjob" which will create a CronJob for the node + scanning. + enum: + - cronjob + - deployment type: string type: object scanner: diff --git a/charts/mondoo-operator/values.yaml b/charts/mondoo-operator/values.yaml index 97161838..8c43f4f3 100644 --- a/charts/mondoo-operator/values.yaml +++ b/charts/mondoo-operator/values.yaml @@ -14,7 +14,7 @@ controllerManager: readOnlyRootFilesystem: true image: repository: ghcr.io/mondoohq/mondoo-operator - tag: v1.21.2 + tag: v1.22.0 imagePullPolicy: IfNotPresent resources: limits: diff --git a/config/manager/kustomization.yaml b/config/manager/kustomization.yaml index 419e913c..91abf2d8 100644 --- a/config/manager/kustomization.yaml +++ b/config/manager/kustomization.yaml @@ -17,4 +17,4 @@ kind: Kustomization images: - name: controller newName: ghcr.io/mondoohq/mondoo-operator - newTag: v1.21.2 + newTag: v1.22.0 diff --git a/config/webhook/kustomization.yaml b/config/webhook/kustomization.yaml index e2a71a3f..2603c427 100644 --- a/config/webhook/kustomization.yaml +++ b/config/webhook/kustomization.yaml @@ -10,7 +10,7 @@ resources: images: - name: controller newName: ghcr.io/mondoohq/mondoo-operator - newTag: v1.21.2 + newTag: v1.22.0 patchesStrategicMerge: - webhook_patch.yaml