Skip to content

Commit

Permalink
added grafana
Browse files Browse the repository at this point in the history
  • Loading branch information
FLYBYME committed Feb 13, 2024
1 parent 0cf2ba0 commit cc0902c
Showing 1 changed file with 55 additions and 0 deletions.
55 changes: 55 additions & 0 deletions images/grafana.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@

/**
* this is the defanition of the grafana image
*
* grafana/grafana:10.0.11
*/
const FIELDS = require("../fields");

module.exports = {
name: "grafana-10-0-11",
namespace: "grafana",
tag: "10.0.11",
digest: "sha256:2c5c2d6a0a2e3e6f1e4e2a1b9b2d5e7b8b4f4b9a8e3b9d0b3f4e9b2f4b9a8e3b",
image: "docker.io/grafana/grafana:10.0.11",
registry: "docker.io",
repository: "grafana/grafana",
description: "Grafana is the open source analytics & monitoring solution for every database",
imagePullPolicy: "IfNotPresent",
imagePullSecrets: [],
ports: [
{
name: "http",
port: 3000,
protocol: "HTTP"
}
],
env: [],
volumes: [
{
name: "grafana-storage",
type: "persistentVolumeClaim",
mountPath: "/var/lib/grafana"
}
],
resources: {
requests: {
cpu: 100,
memory: 128
},
limits: {
cpu: 200,
memory: 256
}
},
labels: [
{
"key": "app",
"value": "grafana"
},
{
"key": "tier",
"value": "backend"
}
],
};

0 comments on commit cc0902c

Please sign in to comment.