1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- ---
- # Generation of Kubernetes YAML is still under development!
- # Save the output of this file and use kubectl create -f to import
- # it into Kubernetes.
- #
- # Created with podman-3.2.3
- apiVersion: v1
- kind: Pod
- metadata:
- creationTimestamp: "2021-08-04T16:27:09Z"
- labels:
- app: speedtest
- name: speedtest
- spec:
- containers:
- - args:
- - influxd
- command:
- - /entrypoint.sh
- env:
- - name: PATH
- value: /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
- - name: TERM
- value: xterm
- - name: container
- value: podman
- - name: INFLUXDB_VERSION
- value: 1.8.2
- image: docker.io/library/influxdb:1.8.2
- name: speedtestinfluxdb1
- ports:
- - containerPort: 8086
- hostPort: 8086
- protocol: TCP
- resources: {}
- securityContext:
- allowPrivilegeEscalation: true
- capabilities:
- drop:
- - CAP_MKNOD
- - CAP_NET_RAW
- - CAP_AUDIT_WRITE
- privileged: false
- readOnlyRootFilesystem: false
- seLinuxOptions: {}
- volumeMounts:
- - mountPath: /etc/influxdb/influxdb.conf
- name: data-repository-speedtest-influxdb-influxdb.conf-host-0
- readOnly: true
- - mountPath: /var/lib/influxdb
- name: speedtest_influxdb-data-pvc
- workingDir: /
- dnsConfig: {}
- restartPolicy: Never
- volumes:
- - name: speedtest_influxdb-data-pvc
- persistentVolumeClaim:
- claimName: speedtest_influxdb-data
- - name: data-repository-speedtest-influxdb-influxdb.conf-host-0
- hostPath:
- path: /data/repository/speedtest/influxdb/influxdb.conf
- type: File
|