diff --git a/.copywrite.hcl b/.copywrite.hcl index ed2142c12..7e4b21b95 100644 --- a/.copywrite.hcl +++ b/.copywrite.hcl @@ -13,5 +13,7 @@ project { "**/testdata/**", "**/*.pb.go", "**/*_string.go", + "charts/mondoo-operator/**", + "config/**/*.yaml", ] } \ No newline at end of file diff --git a/.github/workflows/cla.yaml b/.github/workflows/cla.yaml index 6d863ee70..4092ad4b7 100644 --- a/.github/workflows/cla.yaml +++ b/.github/workflows/cla.yaml @@ -1,4 +1,4 @@ -name: "CLA Assistant & License Check" +name: "CLA Assistant" on: issue_comment: types: [created] diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 221b68f03..c0540a47f 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -1,4 +1,4 @@ -name: Lint +name: "Lint & License Check" on: pull_request: push: diff --git a/charts/mondoo-operator/Chart.yaml b/charts/mondoo-operator/Chart.yaml index c55bbf726..f45bfacbc 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.15.2 +version: 1.16.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.15.2" +appVersion: "1.16.0" diff --git a/charts/mondoo-operator/templates/deployment.yaml b/charts/mondoo-operator/templates/deployment.yaml index 7a58b3936..1b44ed237 100644 --- a/charts/mondoo-operator/templates/deployment.yaml +++ b/charts/mondoo-operator/templates/deployment.yaml @@ -1,6 +1,3 @@ -# Copyright (c) Mondoo, Inc. -# SPDX-License-Identifier: BUSL-1.1 - apiVersion: v1 kind: ServiceAccount metadata: diff --git a/charts/mondoo-operator/templates/k8s-resources-scanning-rbac.yaml b/charts/mondoo-operator/templates/k8s-resources-scanning-rbac.yaml index 62c433145..a70d7069d 100644 --- a/charts/mondoo-operator/templates/k8s-resources-scanning-rbac.yaml +++ b/charts/mondoo-operator/templates/k8s-resources-scanning-rbac.yaml @@ -1,6 +1,3 @@ -# Copyright (c) Mondoo, Inc. -# SPDX-License-Identifier: BUSL-1.1 - apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRole metadata: diff --git a/charts/mondoo-operator/templates/leader-election-rbac.yaml b/charts/mondoo-operator/templates/leader-election-rbac.yaml index 853a4612e..42587c4a6 100644 --- a/charts/mondoo-operator/templates/leader-election-rbac.yaml +++ b/charts/mondoo-operator/templates/leader-election-rbac.yaml @@ -1,6 +1,3 @@ -# Copyright (c) Mondoo, Inc. -# SPDX-License-Identifier: BUSL-1.1 - apiVersion: rbac.authorization.k8s.io/v1 kind: Role metadata: diff --git a/charts/mondoo-operator/templates/manager-config.yaml b/charts/mondoo-operator/templates/manager-config.yaml index 8761d5e06..21660a437 100644 --- a/charts/mondoo-operator/templates/manager-config.yaml +++ b/charts/mondoo-operator/templates/manager-config.yaml @@ -1,6 +1,3 @@ -# Copyright (c) Mondoo, Inc. -# SPDX-License-Identifier: BUSL-1.1 - apiVersion: v1 kind: ConfigMap metadata: diff --git a/charts/mondoo-operator/templates/manager-rbac.yaml b/charts/mondoo-operator/templates/manager-rbac.yaml index 029d5f410..328b2d760 100644 --- a/charts/mondoo-operator/templates/manager-rbac.yaml +++ b/charts/mondoo-operator/templates/manager-rbac.yaml @@ -1,6 +1,3 @@ -# Copyright (c) Mondoo, Inc. -# SPDX-License-Identifier: BUSL-1.1 - apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRole metadata: diff --git a/charts/mondoo-operator/templates/metrics-service.yaml b/charts/mondoo-operator/templates/metrics-service.yaml index 2d26222bb..2ffe9f1c9 100644 --- a/charts/mondoo-operator/templates/metrics-service.yaml +++ b/charts/mondoo-operator/templates/metrics-service.yaml @@ -1,6 +1,3 @@ -# Copyright (c) Mondoo, Inc. -# SPDX-License-Identifier: BUSL-1.1 - apiVersion: v1 kind: Service metadata: diff --git a/charts/mondoo-operator/templates/mondooauditconfig-crd.yaml b/charts/mondoo-operator/templates/mondooauditconfig-crd.yaml index 2da1d9f78..8ecd40c45 100644 --- a/charts/mondoo-operator/templates/mondooauditconfig-crd.yaml +++ b/charts/mondoo-operator/templates/mondooauditconfig-crd.yaml @@ -1,6 +1,3 @@ -# Copyright (c) Mondoo, Inc. -# SPDX-License-Identifier: BUSL-1.1 - apiVersion: apiextensions.k8s.io/v1 kind: CustomResourceDefinition metadata: diff --git a/charts/mondoo-operator/templates/mondoooperatorconfig-crd.yaml b/charts/mondoo-operator/templates/mondoooperatorconfig-crd.yaml index 1c9e61598..07ad78e29 100644 --- a/charts/mondoo-operator/templates/mondoooperatorconfig-crd.yaml +++ b/charts/mondoo-operator/templates/mondoooperatorconfig-crd.yaml @@ -1,6 +1,3 @@ -# Copyright (c) Mondoo, Inc. -# SPDX-License-Identifier: BUSL-1.1 - apiVersion: apiextensions.k8s.io/v1 kind: CustomResourceDefinition metadata: @@ -39,6 +36,10 @@ spec: spec: description: MondooOperatorConfigSpec defines the desired state of MondooOperatorConfig properties: + httpProxy: + description: HttpProxy specifies a proxy to use for HTTP requests to + the Mondoo platform. + type: string metrics: description: Metrics controls the enabling/disabling of metrics report of mondoo-operator diff --git a/charts/mondoo-operator/values.yaml b/charts/mondoo-operator/values.yaml index c55702b9c..f28011e19 100644 --- a/charts/mondoo-operator/values.yaml +++ b/charts/mondoo-operator/values.yaml @@ -1,6 +1,3 @@ -# Copyright (c) Mondoo, Inc. -# SPDX-License-Identifier: BUSL-1.1 - controllerManager: manager: args: @@ -17,7 +14,7 @@ controllerManager: readOnlyRootFilesystem: true image: repository: ghcr.io/mondoohq/mondoo-operator - tag: v1.15.2 + tag: v1.16.0 imagePullPolicy: IfNotPresent resources: limits: diff --git a/config/manager/kustomization.yaml b/config/manager/kustomization.yaml index 68f8f5513..fe2f578dd 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.15.2 + newTag: v1.16.0 diff --git a/config/manifests/bases/mondoo-operator.clusterserviceversion.yaml b/config/manifests/bases/mondoo-operator.clusterserviceversion.yaml index bf5e6c261..cbae0de30 100644 --- a/config/manifests/bases/mondoo-operator.clusterserviceversion.yaml +++ b/config/manifests/bases/mondoo-operator.clusterserviceversion.yaml @@ -1,6 +1,3 @@ -# Copyright (c) Mondoo, Inc. -# SPDX-License-Identifier: BUSL-1.1 - apiVersion: operators.coreos.com/v1alpha1 kind: ClusterServiceVersion metadata: diff --git a/config/rbac/role.yaml b/config/rbac/role.yaml index b05dc294f..1726ff805 100644 --- a/config/rbac/role.yaml +++ b/config/rbac/role.yaml @@ -1,6 +1,3 @@ -# Copyright (c) Mondoo, Inc. -# SPDX-License-Identifier: BUSL-1.1 - --- apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRole diff --git a/config/webhook/kustomization.yaml b/config/webhook/kustomization.yaml index 6c829156f..4eb7e0fc1 100644 --- a/config/webhook/kustomization.yaml +++ b/config/webhook/kustomization.yaml @@ -10,4 +10,4 @@ resources: images: - name: controller newName: ghcr.io/mondoohq/mondoo-operator - newTag: v1.15.2 + newTag: v1.16.0 diff --git a/config/webhook/manifests.yaml b/config/webhook/manifests.yaml index 38a313aa8..a01634a47 100644 --- a/config/webhook/manifests.yaml +++ b/config/webhook/manifests.yaml @@ -1,6 +1,3 @@ -# Copyright (c) Mondoo, Inc. -# SPDX-License-Identifier: BUSL-1.1 - --- apiVersion: admissionregistration.k8s.io/v1 kind: ValidatingWebhookConfiguration