Skip to content

Commit

Permalink
operator datadog-operator (1.8.0)
Browse files Browse the repository at this point in the history
  • Loading branch information
levan-m authored Aug 20, 2024
1 parent a699d62 commit 131d2e7
Show file tree
Hide file tree
Showing 10 changed files with 10,777 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
apiVersion: v1
kind: Service
metadata:
creationTimestamp: null
name: datadog-operator-webhook-service
spec:
ports:
- port: 443
targetPort: 9443
selector:
control-plane: controller-manager
status:
loadBalancer: {}

Large diffs are not rendered by default.

Large diffs are not rendered by default.

7,703 changes: 7,703 additions & 0 deletions operators/datadog-operator/1.8.0/manifests/datadoghq.com_datadogagents.yaml

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,133 @@
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.14.0
creationTimestamp: null
name: datadogmetrics.datadoghq.com
spec:
group: datadoghq.com
names:
kind: DatadogMetric
listKind: DatadogMetricList
plural: datadogmetrics
singular: datadogmetric
scope: Namespaced
versions:
- additionalPrinterColumns:
- jsonPath: .status.conditions[?(@.type=='Active')].status
name: active
type: string
- jsonPath: .status.conditions[?(@.type=='Valid')].status
name: valid
type: string
- jsonPath: .status.currentValue
name: value
type: string
- jsonPath: .status.autoscalerReferences
name: references
type: string
- jsonPath: .status.conditions[?(@.type=='Updated')].lastUpdateTime
name: update time
type: date
name: v1alpha1
schema:
openAPIV3Schema:
description: DatadogMetric allows autoscaling on arbitrary Datadog query
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: DatadogMetricSpec defines the desired state of DatadogMetric
properties:
externalMetricName:
description: ExternalMetricName is reserved for internal use
type: string
maxAge:
description: |-
MaxAge provides the max age for the metric query (overrides the default setting
`external_metrics_provider.max_age`)
type: string
query:
description: Query is the raw datadog query
type: string
timeWindow:
description: TimeWindow provides the time window for the metric query,
defaults to MaxAge.
type: string
type: object
status:
description: DatadogMetricStatus defines the observed state of DatadogMetric
properties:
autoscalerReferences:
description: List of autoscalers currently using this DatadogMetric
type: string
conditions:
description: Conditions Represents the latest available observations
of a DatadogMetric's current state.
items:
description: DatadogMetricCondition describes the state of a DatadogMetric
at a certain point.
properties:
lastTransitionTime:
description: Last time the condition transitioned from one status
to another.
format: date-time
type: string
lastUpdateTime:
description: Last time the condition was updated.
format: date-time
type: string
message:
description: A human readable message indicating details about
the transition.
type: string
reason:
description: The reason for the condition's last transition.
type: string
status:
description: Status of the condition, one of True, False, Unknown.
type: string
type:
description: Type of DatadogMetric condition.
type: string
required:
- status
- type
type: object
type: array
x-kubernetes-list-map-keys:
- type
x-kubernetes-list-type: map
currentValue:
description: Value is the latest value of the metric
type: string
required:
- currentValue
type: object
type: object
served: true
storage: true
subresources:
status: {}
status:
acceptedNames:
kind: ""
plural: ""
conditions: null
storedVersions: null
Loading

0 comments on commit 131d2e7

Please sign in to comment.