Skip to content

Commit

Permalink
deleted values Grafana.
Browse files Browse the repository at this point in the history
  • Loading branch information
Omar-Ahmed-Dt committed Oct 5, 2024
1 parent 1820051 commit c0e881a
Showing 1 changed file with 2 additions and 96 deletions.
98 changes: 2 additions & 96 deletions k8s/stacks/observ.cue
Original file line number Diff line number Diff line change
Expand Up @@ -12,102 +12,8 @@ ObservabilityStack: v1.#Stack & {
helm: {
version: "8.5.2"
release: "grafana"
values: {
// Image settings
image: {
repository: "grafana/grafana"
tag: "8.5.1"
pullPolicy: "IfNotPresent"
}

// Admin user configuration
adminUser: "admin"
adminPassword: "admin"
existingSecret: ""

// Service settings
service: {
type: "ClusterIP"
port: 3000
}

// Persistence settings
persistence: {
enabled: true
size: "10Gi"
storageClass: ""
accessMode: "ReadWriteOnce"
existingClaim: ""
}

// Probes
livenessProbe: {
enabled: true
initialDelaySeconds: 300
periodSeconds: 1
timeoutSeconds: 5
failureThreshold: 3
successThreshold: 1
}
readinessProbe: {
enabled: true
initialDelaySeconds: 30
periodSeconds: 10
timeoutSeconds: 1
failureThreshold: 3
successThreshold: 1
}

// Ingress settings
ingress: {
enabled: false
annotations: {}
hosts: "grafana.local"
tls: false
}

// Resources
resources: {}

// Dashboard provisioning
dashboards: {
enabled: true
defaultFolderName: "grafana-dashboards"
dashboardProviders: [{
name: "default"
orgId: 1
folder: ""
type: "file"
disableDeletion: false
editable: true
updateIntervalSeconds: 10
options: {
path: "/var/lib/grafana/dashboards"
}
}]
}

// Datasource provisioning
datasources: {
enabled: true
datasources: [{
name: "Prometheus"
type: "prometheus"
url: "http://prometheus:9090"
access: "proxy"
isDefault: true
}]
}

// Pod scheduling and annotations
affinity: {}
nodeSelector: {}
tolerations: []
podAnnotations: {}
extraVolumes: []
extraVolumeMounts: []
}
values: {}
}
}
}
}
}

0 comments on commit c0e881a

Please sign in to comment.