deploy/output-influx.yml

77 lines
1.5 KiB
YAML
Raw Permalink Normal View History

2020-04-12 23:31:49 +02:00
apiVersion: v1
kind: Service
metadata:
name: output-influx
namespace: birbnetes
spec:
type: ClusterIP
ports:
- port: 8086
targetPort: 8086
protocol: TCP
selector:
app: output-influx
---
2020-04-13 00:37:35 +02:00
apiVersion: apps/v1
2020-04-12 23:31:49 +02:00
kind: Deployment
metadata:
name: output-influxdb
2020-04-12 23:33:22 +02:00
namespace: birbnetes
2020-04-12 23:31:49 +02:00
spec:
2020-04-13 01:08:01 +02:00
selector:
matchLabels:
app: output-influx
strategy:
type: Recreate
2020-04-12 23:31:49 +02:00
replicas: 1
template:
metadata:
labels:
app: output-influx
spec:
containers:
- name: output-influx
image: influxdb
imagePullPolicy: "IfNotPresent"
ports:
- containerPort: 8086
envFrom:
- configMapRef:
name: output-influx-config
volumeMounts:
- mountPath: /var/lib/influxdb
name: output-influx-storage
volumes:
- name: output-influx-storage
persistentVolumeClaim:
claimName: output-influx-storage-pv-claim
---
kind: PersistentVolumeClaim
apiVersion: v1
metadata:
name: output-influx-storage-pv-claim
labels:
app: output-influx
namespace: birbnetes
spec:
2021-11-23 02:10:41 +01:00
storageClassName: longhorn
2020-04-12 23:31:49 +02:00
accessModes:
2021-11-23 02:10:41 +01:00
- ReadWriteOnce
2020-04-12 23:31:49 +02:00
resources:
requests:
2021-11-23 02:10:41 +01:00
storage: 2Gi
2020-04-12 23:31:49 +02:00
---
apiVersion: v1
kind: ConfigMap
metadata:
name: output-influx-config
labels:
app: output-influx
namespace: birbnetes
data:
INFLUXDB_DB: output-service
2020-06-20 19:46:19 +02:00
INFLUXDB_USER: output-service
INFLUXDB_USER_PASSWORD: output-service-supersecret
INFLUXDB_READ_USER: grafana
INFLUXDB_READ_USER_PASSWORD: CorrectHorseBatteryStaple