-
Notifications
You must be signed in to change notification settings - Fork 538
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
operator grafana-operator (5.6.2+hotfix1)
Signed-off-by: Edvin Norling <[email protected]>
- Loading branch information
1 parent
9983aec
commit 613ba5b
Showing
9 changed files
with
5,021 additions
and
0 deletions.
There are no files selected for viewing
17 changes: 17 additions & 0 deletions
17
...rafana-operator/5.6.2+hotfix1/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
...1/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
...perator/5.6.2+hotfix1/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: {} |
437 changes: 437 additions & 0 deletions
437
...tors/grafana-operator/5.6.2+hotfix1/manifests/grafana-operator.clusterserviceversion.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
241 changes: 241 additions & 0 deletions
241
...s/grafana-operator/5.6.2+hotfix1/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 |
Oops, something went wrong.