-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Synchronize helm chart version with mondoo operator version to 0.2.0 for both. Signed-off-by: Joel Diaz <joel@mondoo.com>
- Loading branch information
Joel Diaz
authored
Mar 21, 2022
1 parent
9a093b9
commit aba20f2
Showing
9 changed files
with
147 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
104 changes: 104 additions & 0 deletions
104
charts/mondoo-operator/templates/mondoooperatorconfig-crd.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: mondoooperatorconfigs.k8s.mondoo.com | ||
annotations: | ||
cert-manager.io/inject-ca-from: {{ .Release.Namespace }}/{{ include "mondoo-operator.fullname" . }}- | ||
controller-gen.kubebuilder.io/version: v0.7.0 | ||
labels: | ||
{{- include "mondoo-operator.labels" . | nindent 4 }} | ||
spec: | ||
group: k8s.mondoo.com | ||
names: | ||
kind: MondooOperatorConfig | ||
listKind: MondooOperatorConfigList | ||
plural: mondoooperatorconfigs | ||
singular: mondoooperatorconfig | ||
scope: Cluster | ||
versions: | ||
- name: v1alpha1 | ||
schema: | ||
openAPIV3Schema: | ||
description: MondooOperatorConfig is the Schema for the mondoooperatorconfigs | ||
API | ||
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' | ||
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' | ||
type: string | ||
metadata: | ||
type: object | ||
spec: | ||
description: MondooOperatorConfigSpec defines the desired state of MondooOperatorConfig | ||
properties: | ||
metrics: | ||
description: Metrics controls the enabling/disabling of metrics report | ||
of mondoo-operator | ||
properties: | ||
enable: | ||
type: boolean | ||
resourceLabels: | ||
additionalProperties: | ||
type: string | ||
description: ResourceLabels allows providing a list of extra labels | ||
to apply to the metrics-related resources (eg. ServiceMonitor) | ||
type: object | ||
type: object | ||
type: object | ||
status: | ||
description: MondooOperatorConfigStatus defines the observed state of MondooOperatorConfig | ||
properties: | ||
conditions: | ||
description: Conditions includes more detailed status for the mondoo | ||
config | ||
items: | ||
description: Condition contains details for the current condition | ||
of a MondooOperatorConfig | ||
properties: | ||
lastTransitionTime: | ||
description: LastTransitionTime is the last time the condition | ||
transitioned from one status to another. | ||
format: date-time | ||
type: string | ||
lastUpdateTime: | ||
description: LastUpdateTime is the last time the condition was | ||
updated. | ||
format: date-time | ||
type: string | ||
message: | ||
description: Message is a human-readable message indicating details | ||
about last transition. | ||
type: string | ||
reason: | ||
description: Reason is a unique, one-word, CamelCase reason for | ||
the condition's last transition. | ||
type: string | ||
status: | ||
description: Status is the status of the condition. | ||
type: string | ||
type: | ||
description: Type is the type of the condition. | ||
type: string | ||
required: | ||
- status | ||
- type | ||
type: object | ||
type: array | ||
type: object | ||
type: object | ||
served: true | ||
storage: true | ||
subresources: | ||
status: {} | ||
status: | ||
acceptedNames: | ||
kind: "" | ||
plural: "" | ||
conditions: [] | ||
storedVersions: [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters