101 lines
2.8 KiB
YAML
101 lines
2.8 KiB
YAML
---
|
|
# Source: prometheus/templates/server/deploy.yaml
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
labels:
|
|
component: "server"
|
|
app: prometheus
|
|
release: prometheus
|
|
chart: prometheus-15.8.6
|
|
heritage: Helm
|
|
name: prometheus-server
|
|
namespace: default
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
component: "server"
|
|
app: prometheus
|
|
release: prometheus
|
|
replicas: 1
|
|
template:
|
|
metadata:
|
|
labels:
|
|
component: "server"
|
|
app: prometheus
|
|
release: prometheus
|
|
chart: prometheus-15.8.6
|
|
heritage: Helm
|
|
spec:
|
|
enableServiceLinks: true
|
|
serviceAccountName: prometheus-server
|
|
containers:
|
|
- name: prometheus-server-configmap-reload
|
|
image: "jimmidyson/configmap-reload:v0.5.0"
|
|
imagePullPolicy: "IfNotPresent"
|
|
args:
|
|
- --volume-dir=/etc/config
|
|
- --webhook-url=http://127.0.0.1:9090/-/reload
|
|
resources:
|
|
{}
|
|
volumeMounts:
|
|
- name: config-volume
|
|
mountPath: /etc/config
|
|
readOnly: true
|
|
|
|
- name: prometheus-server
|
|
image: "quay.io/prometheus/prometheus:v2.34.0"
|
|
imagePullPolicy: "IfNotPresent"
|
|
args:
|
|
- --storage.tsdb.retention.time=15d
|
|
- --config.file=/etc/config/prometheus.yml
|
|
- --storage.tsdb.path=/data
|
|
- --web.console.libraries=/etc/prometheus/console_libraries
|
|
- --web.console.templates=/etc/prometheus/consoles
|
|
- --web.enable-lifecycle
|
|
ports:
|
|
- containerPort: 9090
|
|
readinessProbe:
|
|
httpGet:
|
|
path: /-/ready
|
|
port: 9090
|
|
scheme: HTTP
|
|
initialDelaySeconds: 30
|
|
periodSeconds: 5
|
|
timeoutSeconds: 4
|
|
failureThreshold: 3
|
|
successThreshold: 1
|
|
livenessProbe:
|
|
httpGet:
|
|
path: /-/healthy
|
|
port: 9090
|
|
scheme: HTTP
|
|
initialDelaySeconds: 30
|
|
periodSeconds: 15
|
|
timeoutSeconds: 10
|
|
failureThreshold: 3
|
|
successThreshold: 1
|
|
resources:
|
|
{}
|
|
volumeMounts:
|
|
- name: config-volume
|
|
mountPath: /etc/config
|
|
- name: storage-volume
|
|
mountPath: /data
|
|
subPath: ""
|
|
hostNetwork: false
|
|
dnsPolicy: ClusterFirst
|
|
securityContext:
|
|
fsGroup: 65534
|
|
runAsGroup: 65534
|
|
runAsNonRoot: true
|
|
runAsUser: 65534
|
|
terminationGracePeriodSeconds: 300
|
|
volumes:
|
|
- name: config-volume
|
|
configMap:
|
|
name: prometheus-server
|
|
- name: storage-volume
|
|
persistentVolumeClaim:
|
|
claimName: prometheus-server
|