mirror of
https://github.com/acedemand/kubernetes-essentials.git
synced 2021-08-24 18:29:57 +03:00
25 lines
475 B
YAML
25 lines
475 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: configpod
|
|
spec:
|
|
containers:
|
|
- name: config-pod
|
|
image: nginx
|
|
env:
|
|
- name: LOG_LOCATION
|
|
valueFrom:
|
|
configMapKeyRef:
|
|
name: logging
|
|
key: log.location
|
|
- name: LOGGING_TYPE
|
|
valueFrom:
|
|
configMapKeyRef:
|
|
name: logging
|
|
key: log.type
|
|
- name: LOGGING_ENABLED
|
|
valueFrom:
|
|
configMapKeyRef:
|
|
name: logging
|
|
key: log.enabled
|