2023-11-11 04:18:05 +00:00
|
|
|
apiVersion: apps/v1
|
|
|
|
kind: Deployment
|
|
|
|
metadata:
|
|
|
|
name: prometheus
|
|
|
|
namespace: prometheus-ns
|
|
|
|
labels:
|
|
|
|
app: prometheus
|
|
|
|
spec:
|
|
|
|
replicas: 1
|
|
|
|
selector:
|
|
|
|
matchLabels:
|
|
|
|
app: prometheus
|
|
|
|
template:
|
|
|
|
metadata:
|
|
|
|
labels:
|
|
|
|
app: prometheus
|
|
|
|
spec:
|
2023-11-11 04:26:52 +00:00
|
|
|
initContainers:
|
|
|
|
- name: prometheus-data-permission-fix
|
|
|
|
image: busybox
|
|
|
|
command: ["/bin/chmod","-R","777", "/prometheus"]
|
|
|
|
volumeMounts:
|
|
|
|
- name: prometheus-storage
|
|
|
|
mountPath: /prometheus
|
2023-11-11 04:18:05 +00:00
|
|
|
containers:
|
|
|
|
- name: prometheus
|
|
|
|
image: prom/prometheus:v2.27.1
|
|
|
|
ports:
|
|
|
|
- containerPort: 9090
|
|
|
|
volumeMounts:
|
|
|
|
- name: prometheus-storage
|
|
|
|
mountPath: /prometheus
|
|
|
|
volumes:
|
|
|
|
- name: prometheus-storage
|
|
|
|
persistentVolumeClaim:
|
|
|
|
claimName: prometheus-pvc
|