-
Notifications
You must be signed in to change notification settings - Fork 618
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loading status checks…
operator grafana-operator (5.6.2)
1 parent
0be51e2
commit 16c7b6d
Showing
9 changed files
with
5,019 additions
and
0 deletions.
There are no files selected for viewing
17 changes: 17 additions & 0 deletions
17
operators/grafana-operator/5.6.2/manifests/grafana-operator-manager-config_v1_configmap.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,17 @@ | ||
apiVersion: v1 | ||
data: | ||
controller_manager_config.yaml: | | ||
apiVersion: controller-runtime.sigs.k8s.io/v1alpha1 | ||
kind: ControllerManagerConfig | ||
health: | ||
healthProbeBindAddress: :8081 | ||
metrics: | ||
bindAddress: 127.0.0.1:8080 | ||
webhook: | ||
port: 9443 | ||
leaderElection: | ||
leaderElect: true | ||
resourceName: f75f3bba.integreatly.org | ||
kind: ConfigMap | ||
metadata: | ||
name: grafana-operator-manager-config |
10 changes: 10 additions & 0 deletions
10
...2/manifests/grafana-operator-metrics-reader_rbac.authorization.k8s.io_v1_clusterrole.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,10 @@ | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRole | ||
metadata: | ||
creationTimestamp: null | ||
name: grafana-operator-metrics-reader | ||
rules: | ||
- nonResourceURLs: | ||
- /metrics | ||
verbs: | ||
- get |
19 changes: 19 additions & 0 deletions
19
...rafana-operator/5.6.2/manifests/grafana-operator-operator-metrics-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,19 @@ | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
creationTimestamp: null | ||
labels: | ||
app.kubernetes.io/managed-by: olm | ||
app.kubernetes.io/name: grafana-operator | ||
name: grafana-operator-operator-metrics-service | ||
spec: | ||
ports: | ||
- name: metrics | ||
port: 8443 | ||
protocol: TCP | ||
targetPort: metrics | ||
selector: | ||
app.kubernetes.io/managed-by: olm | ||
app.kubernetes.io/name: grafana-operator | ||
status: | ||
loadBalancer: {} |
435 changes: 435 additions & 0 deletions
435
operators/grafana-operator/5.6.2/manifests/grafana-operator.clusterserviceversion.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
241 changes: 241 additions & 0 deletions
241
operators/grafana-operator/5.6.2/manifests/grafana.integreatly.org_grafanadashboards.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,241 @@ | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
controller-gen.kubebuilder.io/version: v0.12.0 | ||
creationTimestamp: null | ||
name: grafanadashboards.grafana.integreatly.org | ||
spec: | ||
group: grafana.integreatly.org | ||
names: | ||
kind: GrafanaDashboard | ||
listKind: GrafanaDashboardList | ||
plural: grafanadashboards | ||
singular: grafanadashboard | ||
scope: Namespaced | ||
versions: | ||
- additionalPrinterColumns: | ||
- jsonPath: .status.NoMatchingInstances | ||
name: No matching instances | ||
type: boolean | ||
- format: date-time | ||
jsonPath: .status.lastResync | ||
name: Last resync | ||
type: date | ||
- jsonPath: .metadata.creationTimestamp | ||
name: Age | ||
type: date | ||
name: v1beta1 | ||
schema: | ||
openAPIV3Schema: | ||
properties: | ||
apiVersion: | ||
type: string | ||
kind: | ||
type: string | ||
metadata: | ||
type: object | ||
spec: | ||
properties: | ||
allowCrossNamespaceImport: | ||
type: boolean | ||
configMapRef: | ||
properties: | ||
key: | ||
type: string | ||
name: | ||
type: string | ||
optional: | ||
type: boolean | ||
required: | ||
- key | ||
type: object | ||
x-kubernetes-map-type: atomic | ||
contentCacheDuration: | ||
type: string | ||
datasources: | ||
items: | ||
properties: | ||
datasourceName: | ||
type: string | ||
inputName: | ||
type: string | ||
required: | ||
- datasourceName | ||
- inputName | ||
type: object | ||
type: array | ||
envFrom: | ||
items: | ||
properties: | ||
configMapKeyRef: | ||
properties: | ||
key: | ||
type: string | ||
name: | ||
type: string | ||
optional: | ||
type: boolean | ||
required: | ||
- key | ||
type: object | ||
x-kubernetes-map-type: atomic | ||
secretKeyRef: | ||
properties: | ||
key: | ||
type: string | ||
name: | ||
type: string | ||
optional: | ||
type: boolean | ||
required: | ||
- key | ||
type: object | ||
x-kubernetes-map-type: atomic | ||
type: object | ||
type: array | ||
envs: | ||
items: | ||
properties: | ||
name: | ||
type: string | ||
value: | ||
type: string | ||
valueFrom: | ||
properties: | ||
configMapKeyRef: | ||
properties: | ||
key: | ||
type: string | ||
name: | ||
type: string | ||
optional: | ||
type: boolean | ||
required: | ||
- key | ||
type: object | ||
x-kubernetes-map-type: atomic | ||
secretKeyRef: | ||
properties: | ||
key: | ||
type: string | ||
name: | ||
type: string | ||
optional: | ||
type: boolean | ||
required: | ||
- key | ||
type: object | ||
x-kubernetes-map-type: atomic | ||
type: object | ||
required: | ||
- name | ||
type: object | ||
type: array | ||
folder: | ||
type: string | ||
grafanaCom: | ||
properties: | ||
id: | ||
type: integer | ||
revision: | ||
type: integer | ||
required: | ||
- id | ||
type: object | ||
gzipJson: | ||
format: byte | ||
type: string | ||
instanceSelector: | ||
properties: | ||
matchExpressions: | ||
items: | ||
properties: | ||
key: | ||
type: string | ||
operator: | ||
type: string | ||
values: | ||
items: | ||
type: string | ||
type: array | ||
required: | ||
- key | ||
- operator | ||
type: object | ||
type: array | ||
matchLabels: | ||
additionalProperties: | ||
type: string | ||
type: object | ||
type: object | ||
x-kubernetes-map-type: atomic | ||
json: | ||
type: string | ||
jsonnet: | ||
type: string | ||
jsonnetLib: | ||
properties: | ||
fileName: | ||
type: string | ||
gzipJsonnetProject: | ||
format: byte | ||
type: string | ||
jPath: | ||
items: | ||
type: string | ||
type: array | ||
required: | ||
- fileName | ||
- gzipJsonnetProject | ||
type: object | ||
plugins: | ||
items: | ||
properties: | ||
name: | ||
type: string | ||
version: | ||
type: string | ||
required: | ||
- name | ||
- version | ||
type: object | ||
type: array | ||
resyncPeriod: | ||
type: string | ||
url: | ||
type: string | ||
required: | ||
- instanceSelector | ||
type: object | ||
status: | ||
properties: | ||
NoMatchingInstances: | ||
type: boolean | ||
contentCache: | ||
format: byte | ||
type: string | ||
contentTimestamp: | ||
format: date-time | ||
type: string | ||
contentUrl: | ||
type: string | ||
hash: | ||
type: string | ||
lastResync: | ||
format: date-time | ||
type: string | ||
uid: | ||
type: string | ||
type: object | ||
type: object | ||
served: true | ||
storage: true | ||
subresources: | ||
status: {} | ||
status: | ||
acceptedNames: | ||
kind: "" | ||
plural: "" | ||
conditions: null | ||
storedVersions: null |
179 changes: 179 additions & 0 deletions
179
operators/grafana-operator/5.6.2/manifests/grafana.integreatly.org_grafanadatasources.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,179 @@ | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
controller-gen.kubebuilder.io/version: v0.12.0 | ||
creationTimestamp: null | ||
name: grafanadatasources.grafana.integreatly.org | ||
spec: | ||
group: grafana.integreatly.org | ||
names: | ||
kind: GrafanaDatasource | ||
listKind: GrafanaDatasourceList | ||
plural: grafanadatasources | ||
singular: grafanadatasource | ||
scope: Namespaced | ||
versions: | ||
- additionalPrinterColumns: | ||
- jsonPath: .status.NoMatchingInstances | ||
name: No matching instances | ||
type: boolean | ||
- format: date-time | ||
jsonPath: .status.lastResync | ||
name: Last resync | ||
type: date | ||
- jsonPath: .metadata.creationTimestamp | ||
name: Age | ||
type: date | ||
name: v1beta1 | ||
schema: | ||
openAPIV3Schema: | ||
properties: | ||
apiVersion: | ||
type: string | ||
kind: | ||
type: string | ||
metadata: | ||
type: object | ||
spec: | ||
properties: | ||
allowCrossNamespaceImport: | ||
type: boolean | ||
datasource: | ||
properties: | ||
access: | ||
type: string | ||
basicAuth: | ||
type: boolean | ||
basicAuthUser: | ||
type: string | ||
database: | ||
type: string | ||
editable: | ||
type: boolean | ||
isDefault: | ||
type: boolean | ||
jsonData: | ||
type: object | ||
x-kubernetes-preserve-unknown-fields: true | ||
name: | ||
type: string | ||
orgId: | ||
format: int64 | ||
type: integer | ||
secureJsonData: | ||
type: object | ||
x-kubernetes-preserve-unknown-fields: true | ||
type: | ||
type: string | ||
uid: | ||
type: string | ||
url: | ||
type: string | ||
user: | ||
type: string | ||
type: object | ||
instanceSelector: | ||
properties: | ||
matchExpressions: | ||
items: | ||
properties: | ||
key: | ||
type: string | ||
operator: | ||
type: string | ||
values: | ||
items: | ||
type: string | ||
type: array | ||
required: | ||
- key | ||
- operator | ||
type: object | ||
type: array | ||
matchLabels: | ||
additionalProperties: | ||
type: string | ||
type: object | ||
type: object | ||
x-kubernetes-map-type: atomic | ||
plugins: | ||
items: | ||
properties: | ||
name: | ||
type: string | ||
version: | ||
type: string | ||
required: | ||
- name | ||
- version | ||
type: object | ||
type: array | ||
resyncPeriod: | ||
type: string | ||
valuesFrom: | ||
items: | ||
properties: | ||
targetPath: | ||
type: string | ||
valueFrom: | ||
properties: | ||
configMapKeyRef: | ||
properties: | ||
key: | ||
type: string | ||
name: | ||
type: string | ||
optional: | ||
type: boolean | ||
required: | ||
- key | ||
type: object | ||
x-kubernetes-map-type: atomic | ||
secretKeyRef: | ||
properties: | ||
key: | ||
type: string | ||
name: | ||
type: string | ||
optional: | ||
type: boolean | ||
required: | ||
- key | ||
type: object | ||
x-kubernetes-map-type: atomic | ||
type: object | ||
required: | ||
- targetPath | ||
- valueFrom | ||
type: object | ||
type: array | ||
required: | ||
- datasource | ||
- instanceSelector | ||
type: object | ||
status: | ||
properties: | ||
NoMatchingInstances: | ||
type: boolean | ||
hash: | ||
type: string | ||
lastMessage: | ||
type: string | ||
lastResync: | ||
format: date-time | ||
type: string | ||
uid: | ||
type: string | ||
type: object | ||
type: object | ||
served: true | ||
storage: true | ||
subresources: | ||
status: {} | ||
status: | ||
acceptedNames: | ||
kind: "" | ||
plural: "" | ||
conditions: null | ||
storedVersions: null |
91 changes: 91 additions & 0 deletions
91
operators/grafana-operator/5.6.2/manifests/grafana.integreatly.org_grafanafolders.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,91 @@ | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
controller-gen.kubebuilder.io/version: v0.12.0 | ||
creationTimestamp: null | ||
name: grafanafolders.grafana.integreatly.org | ||
spec: | ||
group: grafana.integreatly.org | ||
names: | ||
kind: GrafanaFolder | ||
listKind: GrafanaFolderList | ||
plural: grafanafolders | ||
singular: grafanafolder | ||
scope: Namespaced | ||
versions: | ||
- additionalPrinterColumns: | ||
- jsonPath: .status.NoMatchingInstances | ||
name: No matching instances | ||
type: boolean | ||
- jsonPath: .metadata.creationTimestamp | ||
name: Age | ||
type: date | ||
name: v1beta1 | ||
schema: | ||
openAPIV3Schema: | ||
properties: | ||
apiVersion: | ||
type: string | ||
kind: | ||
type: string | ||
metadata: | ||
type: object | ||
spec: | ||
properties: | ||
allowCrossNamespaceImport: | ||
type: boolean | ||
instanceSelector: | ||
properties: | ||
matchExpressions: | ||
items: | ||
properties: | ||
key: | ||
type: string | ||
operator: | ||
type: string | ||
values: | ||
items: | ||
type: string | ||
type: array | ||
required: | ||
- key | ||
- operator | ||
type: object | ||
type: array | ||
matchLabels: | ||
additionalProperties: | ||
type: string | ||
type: object | ||
type: object | ||
x-kubernetes-map-type: atomic | ||
permissions: | ||
type: string | ||
resyncPeriod: | ||
type: string | ||
title: | ||
type: string | ||
required: | ||
- instanceSelector | ||
type: object | ||
status: | ||
properties: | ||
NoMatchingInstances: | ||
type: boolean | ||
hash: | ||
type: string | ||
lastResync: | ||
format: date-time | ||
type: string | ||
type: object | ||
type: object | ||
served: true | ||
storage: true | ||
subresources: | ||
status: {} | ||
status: | ||
acceptedNames: | ||
kind: "" | ||
plural: "" | ||
conditions: null | ||
storedVersions: null |
4,013 changes: 4,013 additions & 0 deletions
4,013
operators/grafana-operator/5.6.2/manifests/grafana.integreatly.org_grafanas.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
14 changes: 14 additions & 0 deletions
14
operators/grafana-operator/5.6.2/metadata/annotations.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,14 @@ | ||
annotations: | ||
# Core bundle annotations. | ||
operators.operatorframework.io.bundle.mediatype.v1: registry+v1 | ||
operators.operatorframework.io.bundle.manifests.v1: manifests/ | ||
operators.operatorframework.io.bundle.metadata.v1: metadata/ | ||
operators.operatorframework.io.bundle.package.v1: grafana-operator | ||
operators.operatorframework.io.bundle.channels.v1: v5 | ||
operators.operatorframework.io.bundle.channel.default.v1: v5 | ||
operators.operatorframework.io.metrics.builder: operator-sdk-v1.32.0 | ||
operators.operatorframework.io.metrics.mediatype.v1: metrics+v1 | ||
operators.operatorframework.io.metrics.project_layout: go.kubebuilder.io/v3 | ||
|
||
# OpenShift specific annotations | ||
com.redhat.openshift.versions: "v4.11-v4.15" |