-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request redhat-openshift-ecosystem#4055 from DataDog/datad…
…og-operator-1.4.0 operator datadog-operator (1.4.0)
- Loading branch information
Showing
8 changed files
with
19,957 additions
and
0 deletions.
There are no files selected for viewing
13 changes: 13 additions & 0 deletions
13
operators/datadog-operator/1.4.0/manifests/datadog-operator-webhook-service_v1_service.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,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: {} |
1,021 changes: 1,021 additions & 0 deletions
1,021
operators/datadog-operator/1.4.0/manifests/datadog-operator.clusterserviceversion.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
18,125 changes: 18,125 additions & 0 deletions
18,125
operators/datadog-operator/1.4.0/manifests/datadoghq.com_datadogagents.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
127 changes: 127 additions & 0 deletions
127
operators/datadog-operator/1.4.0/manifests/datadoghq.com_datadogmetrics.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,127 @@ | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
controller-gen.kubebuilder.io/version: v0.6.1 | ||
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: [] | ||
storedVersions: [] |
Oops, something went wrong.