This repository has been archived by the owner on Apr 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 44
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 #137 from HubertStefanski/INTLY-8046
Bump operator-sdk version to 0.15.2 and AMO to 1.2.0 for release
- Loading branch information
Showing
637 changed files
with
128,123 additions
and
132,222 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
359 changes: 359 additions & 0 deletions
359
...nitoring-operator/1.2.0/application-monitoring-operator.v1.2.0.clusterserviceversion.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
71 changes: 71 additions & 0 deletions
71
...ring-operator/1.2.0/applicationmonitoring.integreatly.org_applicationmonitorings_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,71 @@ | ||
apiVersion: apiextensions.k8s.io/v1beta1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: applicationmonitorings.applicationmonitoring.integreatly.org | ||
spec: | ||
group: applicationmonitoring.integreatly.org | ||
names: | ||
kind: ApplicationMonitoring | ||
listKind: ApplicationMonitoringList | ||
plural: applicationmonitorings | ||
singular: applicationmonitoring | ||
scope: Namespaced | ||
subresources: | ||
status: {} | ||
validation: | ||
openAPIV3Schema: | ||
description: ApplicationMonitoring is the Schema for the applicationmonitorings | ||
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: ApplicationMonitoringSpec defines the desired state of ApplicationMonitoring | ||
properties: | ||
additionalScrapeConfigSecretKey: | ||
type: string | ||
additionalScrapeConfigSecretName: | ||
type: string | ||
alertmanagerInstanceNamespaces: | ||
type: string | ||
labelSelector: | ||
minLength: 1 | ||
type: string | ||
prometheusInstanceNamespaces: | ||
type: string | ||
prometheusRetention: | ||
type: string | ||
prometheusStorageRequest: | ||
type: string | ||
selfSignedCerts: | ||
type: boolean | ||
required: | ||
- labelSelector | ||
type: object | ||
status: | ||
description: ApplicationMonitoringStatus defines the observed state of ApplicationMonitoring | ||
properties: | ||
lastblackboxconfig: | ||
type: string | ||
phase: | ||
type: integer | ||
required: | ||
- lastblackboxconfig | ||
- phase | ||
type: object | ||
type: object | ||
version: v1alpha1 | ||
versions: | ||
- name: v1alpha1 | ||
served: true | ||
storage: true |
71 changes: 71 additions & 0 deletions
71
...-monitoring-operator/1.2.0/applicationmonitoring.integreatly.org_blackboxtargets_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,71 @@ | ||
apiVersion: apiextensions.k8s.io/v1beta1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: blackboxtargets.applicationmonitoring.integreatly.org | ||
spec: | ||
group: applicationmonitoring.integreatly.org | ||
names: | ||
kind: BlackboxTarget | ||
listKind: BlackboxTargetList | ||
plural: blackboxtargets | ||
singular: blackboxtarget | ||
scope: Namespaced | ||
validation: | ||
openAPIV3Schema: | ||
description: BlackboxTarget is the Schema for the blackboxtargets 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: BlackboxTargetSpec defines the desired state of BlackboxTarget | ||
properties: | ||
blackboxTargets: | ||
description: 'INSERT ADDITIONAL SPEC FIELDS - desired state of cluster | ||
Important: Run "operator-sdk generate k8s" to regenerate code after | ||
modifying this file Add custom validation using kubebuilder tags: | ||
https://book.kubebuilder.io/beyond_basics/generating_crd.html' | ||
items: | ||
description: 'BlackboxtargetStructure contains: A target (url, module | ||
and service name) to be probed by the' | ||
properties: | ||
module: | ||
type: string | ||
service: | ||
type: string | ||
url: | ||
type: string | ||
required: | ||
- module | ||
- service | ||
- url | ||
type: object | ||
type: array | ||
type: object | ||
status: | ||
description: BlackboxTargetStatus defines the observed state of BlackboxTarget | ||
properties: | ||
phase: | ||
description: 'INSERT ADDITIONAL STATUS FIELD - define observed state | ||
of cluster Important: Run "operator-sdk generate k8s" to regenerate | ||
code after modifying this file Add custom validation using kubebuilder | ||
tags: https://book.kubebuilder.io/beyond_basics/generating_crd.html' | ||
type: integer | ||
required: | ||
- phase | ||
type: object | ||
type: object | ||
version: v1alpha1 | ||
versions: | ||
- name: v1alpha1 | ||
served: true | ||
storage: true |
Oops, something went wrong.