Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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 @@ -2,7 +2,7 @@ apiVersion: "apiextensions.k8s.io/v1"
kind: "CustomResourceDefinition"
metadata:
annotations:
controller-gen.kubebuilder.io/version: "v0.16.3"
controller-gen.kubebuilder.io/version: "v0.17.3"
name: "datadogmetrics.datadoghq.com"
spec:
group: "datadoghq.com"
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.16.3"
controller-gen.kubebuilder.io/version: "v0.17.3"
name: "datadogmonitors.datadoghq.com"
spec:
group: "datadoghq.com"
Expand Down Expand Up @@ -77,6 +77,9 @@ spec:
description: "Time (in seconds) to delay evaluation, as a non-negative integer. For example, if the value is set to 300 (5min),\nthe timeframe is set to last_5m and the time is 7:00, the monitor evaluates data from 6:50 to 6:55.\nThis is useful for AWS CloudWatch and other backfilled metrics to ensure the monitor always has data during evaluation."
format: "int64"
type: "integer"
groupRetentionDuration:
description: "The time span after which groups with missing data are dropped from the monitor state.\nThe minimum value is one hour, and the maximum value is 72 hours.\nExample values are: \"60m\", \"1h\", and \"2d\".\nThis option is only available for APM Trace Analytics, Audit Trail, CI, Error Tracking, Event, Logs, and RUM monitors."
type: "string"
groupbySimpleMonitor:
description: "A Boolean indicating whether the log alert monitor triggers a single alert or multiple alerts when any group breaches a threshold."
type: "boolean"
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.16.3"
controller-gen.kubebuilder.io/version: "v0.17.3"
name: "datadogslos.datadoghq.com"
spec:
group: "datadoghq.com"
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -281,10 +281,10 @@ spec:
properties:
baseImageRegistry:
default: "docker.io"
description: "image registry to fetch base image for building driver image, default value is docker.io, the builder will search for corresponding OS base image from given registry\ne.g. if your worker node is using Ubuntu 22.04, by default the base image would be docker.io/ubuntu:22.04\nNOTE: this field won't apply for OpenShift since OpenShift is using its own DriverToolKit image to build driver image"
description: "image registry to fetch base image for building driver image, default value is docker.io, the builder will search for corresponding OS base image from given registry\ne.g. if your worker node is using Ubuntu 22.04, by default the base image would be docker.io/ubuntu:22.04\nUse spec.driver.imageRegistrySecret for authentication with private registries.\nNOTE: this field won't apply for OpenShift since OpenShift is using its own DriverToolKit image to build driver image"
type: "string"
baseImageRegistryTLS:
description: "TLS settings for fetching base image"
description: "TLS settings for fetching base image\nthis field will be applied to SourceImageRepo as well"
properties:
insecure:
description: "If true, check if the container image already exists using plain HTTP."
Expand All @@ -293,6 +293,9 @@ spec:
description: "If true, skip any TLS server certificate validation"
type: "boolean"
type: "object"
sourceImageRepo:
description: "SourceImageRepo specifies the image repository for the driver source code (OpenShift only).\nUsed when spec.driver.useSourceImage is true. The operator automatically determines the image tag\nbased on cluster RHEL version and spec.driver.version (format: coreos-<rhel>-<driver version>).\nDefault: docker.io/rocm/amdgpu-driver\nUse spec.driver.imageRegistrySecret for authentication with private registries."
type: "string"
type: "object"
imageRegistrySecret:
description: "secrets used for pull/push images from/to private registry specified in driversImage"
Expand Down Expand Up @@ -434,6 +437,9 @@ spec:
description: "reboot between driver upgrades, enabled by default, if enabled spec.commonConfig.utilsContainer will be used to perform reboot on worker nodes"
type: "boolean"
type: "object"
useSourceImage:
description: "NOTE: currently only for OpenShift cluster\nset to true to use source image to build driver image on the fly\notherwise use installer debian/rpm packages from radeon repo to build driver image"
type: "boolean"
version:
description: "version of the drivers source code, can be used as part of image of dockerfile source image\ndefault value for different OS is: ubuntu: 6.1.3, coreOS: 6.2.2"
type: "string"
Expand Down
Loading
Loading