This repository was archived by the owner on Jun 8, 2025. It is now read-only.
Replies: 2 comments
-
|
Ah, never mind. I see from the docs that:
|
Beta Was this translation helpful? Give feedback.
0 replies
-
|
Hi @jritsema
Look at this manifest for example: apiVersion: apps/v1
kind: Deployment
metadata:
name: influxdb-deployment
spec:
selector:
matchLabels:
app: influxdb
minReadySeconds: 5
template:
metadata:
labels:
app: influxdb
spec:
containers:
- image: influxdb:1.7.4
name: influxdb
ports:
- containerPort: 8086
volumeMounts:
- mountPath: /var/lib/influxdb
name: influxdb-data
- mountPath: /etc/influxdb/influxdb.conf
name: influxdb-config
subPath: influxdb.conf
readOnly: true
envFrom:
- secretRef:
name: influxdb-secrets
volumes:
- name: influxdb-data
hostPath:
path: /var/lib/k2d/data/influxdb-data
- name: influxdb-config
configMap:
name: influxdb-config
---
[...]This info is also available in the list of supported properties for the |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello! This is a super interesting project. I tried a quick test to deploy the prometheus node exporter on a
RPI 2 Model B (armv7)and got the following error.results in this error
full error
What am I doing wrong? Or is this volume config not supported?
Beta Was this translation helpful? Give feedback.
All reactions