This commit is contained in:
2024-01-23 17:01:01 +01:00
parent b61e510acf
commit 41e947bdd5
8 changed files with 129 additions and 129 deletions

View File

@@ -54,7 +54,7 @@ data "kustomization_overlay" "data" {
apiVersion: v1 apiVersion: v1
kind: ConfigMap kind: ConfigMap
metadata: metadata:
name: alertmanager-kube-grafana-datasource name: alertmanager-operated
data: data:
datasource.yaml: |- datasource.yaml: |-
apiVersion: 1 apiVersion: 1

View File

@@ -6,26 +6,6 @@ metadata:
name: alertmanager name: alertmanager
description: null description: null
options: options:
listenLocal:
default: false
examples:
- false
type: boolean
ingress-class:
default: traefik
examples:
- traefik
type: string
logLevel:
default: info
examples:
- info
type: string
domain:
default: your-company
examples:
- your-company
type: string
images: images:
default: default:
alertmanager: alertmanager:
@@ -65,16 +45,16 @@ options:
type: string type: string
type: object type: object
type: object type: object
domain-name:
default: your_company.com
examples:
- your_company.com
type: string
sub-domain: sub-domain:
default: alertmanager default: alertmanager
examples: examples:
- alertmanager - alertmanager
type: string type: string
issuer:
default: letsencrypt-prod
examples:
- letsencrypt-prod
type: string
app-group: app-group:
default: monitor default: monitor
examples: examples:
@@ -85,15 +65,35 @@ options:
examples: examples:
- 1 - 1
type: integer type: integer
listenLocal:
default: false
examples:
- false
type: boolean
domain-name:
default: your_company.com
examples:
- your_company.com
type: string
retention: retention:
default: 120h default: 120h
examples: examples:
- 120h - 120h
type: string type: string
issuer: ingress-class:
default: letsencrypt-prod default: traefik
examples: examples:
- letsencrypt-prod - traefik
type: string
domain:
default: your-company
examples:
- your-company
type: string
logLevel:
default: info
examples:
- info
type: string type: string
dependencies: dependencies:
- dist: null - dist: null

View File

@@ -6,21 +6,41 @@ metadata:
name: grafana name: grafana
description: null description: null
options: options:
ingress-class: admin_name:
default: traefik default: grafana_admin
examples: examples:
- traefik - grafana_admin
type: string
app-group:
default: monitor
examples:
- monitor
type: string type: string
domain: domain:
default: your-company default: your-company
examples: examples:
- your-company - your-company
type: string type: string
sub-domain:
default: grafana
examples:
- grafana
type: string
domain-name:
default: your_company.com
examples:
- your_company.com
type: string
issuer: issuer:
default: letsencrypt-prod default: letsencrypt-prod
examples: examples:
- letsencrypt-prod - letsencrypt-prod
type: string type: string
ingress-class:
default: traefik
examples:
- traefik
type: string
images: images:
default: default:
busybox: busybox:
@@ -137,26 +157,6 @@ options:
default: 10Gi default: 10Gi
type: string type: string
type: object type: object
app-group:
default: monitor
examples:
- monitor
type: string
domain-name:
default: your_company.com
examples:
- your_company.com
type: string
sub-domain:
default: grafana
examples:
- grafana
type: string
admin_name:
default: grafana_admin
examples:
- grafana_admin
type: string
dependencies: [] dependencies: []
providers: providers:
kubernetes: true kubernetes: true

View File

@@ -32,7 +32,7 @@ spec:
template: template:
metadata: metadata:
annotations: annotations:
checksum/config: 00968f96c123aef1e3b51506bfca47d4009fec466be45ff4db4755acd6142f13 checksum/config: f0b5fe7288abac6838f61aacfebeba1a01d5cf3d391971062c58797d2f0ea40f
labels: labels:
app.kubernetes.io/name: loki app.kubernetes.io/name: loki
app.kubernetes.io/instance: loki app.kubernetes.io/instance: loki

View File

@@ -5,7 +5,7 @@ resource "kubectl_manifest" "datasource" {
metadata: metadata:
name: loki-datasource name: loki-datasource
namespace: "${var.namespace}" namespace: "${var.namespace}"
labels: ${jsonencode(local.common-labels)} labels: ${jsonencode(merge(local.common-labels, {"grafana_datasource" = "1"}))}
data: data:
loki-datasource.yaml: |- loki-datasource.yaml: |-
apiVersion: 1 apiVersion: 1

View File

@@ -6,6 +6,25 @@ metadata:
name: loki name: loki
description: null description: null
options: options:
volume:
default:
accessMode: ReadWriteOnce
size: 10Gi
examples:
- accessMode: ReadWriteOnce
size: 10Gi
properties:
accessMode:
default: ReadWriteOnce
enum:
- ReadWriteOnce
- ReadOnlyMany
- ReadWriteMany
type: string
size:
default: 10Gi
type: string
type: object
images: images:
default: default:
loki: loki:
@@ -45,25 +64,6 @@ options:
type: string type: string
type: object type: object
type: object type: object
volume:
default:
accessMode: ReadWriteOnce
size: 10Gi
examples:
- accessMode: ReadWriteOnce
size: 10Gi
properties:
accessMode:
default: ReadWriteOnce
enum:
- ReadWriteOnce
- ReadOnlyMany
- ReadWriteMany
type: string
size:
default: 10Gi
type: string
type: object
dependencies: [] dependencies: []
providers: providers:
kubernetes: true kubernetes: true

View File

@@ -71,7 +71,7 @@ data "kustomization_overlay" "data" {
- name: Prometheus - name: Prometheus
type: prometheus type: prometheus
uid: prometheus uid: prometheus
url: http://prometheus-community-kube-prometheus.${var.namespace}:9090/ url: http://prometheus-operated.${var.namespace}:9090/
access: proxy access: proxy
isDefault: false isDefault: false
jsonData: jsonData:

View File

@@ -6,6 +6,61 @@ metadata:
name: prometheus name: prometheus
description: null description: null
options: options:
domain:
default: your-company
examples:
- your-company
type: string
ingress-class:
default: traefik
examples:
- traefik
type: string
retention:
default: 10d
examples:
- 10d
type: string
listenLocal:
default: false
examples:
- false
type: boolean
shards:
default: 1
examples:
- 1
type: integer
domain-name:
default: your_company.com
examples:
- your_company.com
type: string
app-group:
default: monitor
examples:
- monitor
type: string
logLevel:
default: info
examples:
- info
type: string
enableAdminAPI:
default: false
examples:
- false
type: boolean
replicas:
default: 1
examples:
- 1
type: integer
issuer:
default: letsencrypt-prod
examples:
- letsencrypt-prod
type: string
images: images:
default: default:
prometheus: prometheus:
@@ -45,66 +100,11 @@ options:
type: string type: string
type: object type: object
type: object type: object
domain:
default: your-company
examples:
- your-company
type: string
ingress-class:
default: traefik
examples:
- traefik
type: string
domain-name:
default: your_company.com
examples:
- your_company.com
type: string
issuer:
default: letsencrypt-prod
examples:
- letsencrypt-prod
type: string
app-group:
default: monitor
examples:
- monitor
type: string
replicas:
default: 1
examples:
- 1
type: integer
shards:
default: 1
examples:
- 1
type: integer
logLevel:
default: info
examples:
- info
type: string
sub-domain: sub-domain:
default: prometheus default: prometheus
examples: examples:
- prometheus - prometheus
type: string type: string
listenLocal:
default: false
examples:
- false
type: boolean
retention:
default: 10d
examples:
- 10d
type: string
enableAdminAPI:
default: false
examples:
- false
type: boolean
dependencies: dependencies:
- dist: null - dist: null
category: share category: share