29 lines
539 B
YAML
29 lines
539 B
YAML
|
apiVersion: apps/v1
|
||
|
kind: StatefulSet
|
||
|
metadata:
|
||
|
name: influxdb
|
||
|
labels:
|
||
|
app: influxdb
|
||
|
spec:
|
||
|
replicas: 1
|
||
|
serviceName: influxdb
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
app: influxdb
|
||
|
template:
|
||
|
metadata:
|
||
|
labels:
|
||
|
app: influxdb
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: influxdb
|
||
|
image: influxdb
|
||
|
imagePullPolicy: Never
|
||
|
volumeMounts:
|
||
|
- name: influxdb
|
||
|
mountPath: /var/lib/influxdb
|
||
|
volumes:
|
||
|
- name: influxdb
|
||
|
persistentVolumeClaim:
|
||
|
claimName: influxdb
|