34 lines
871 B
YAML
34 lines
871 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: immutable-configmap-volume
|
|
labels:
|
|
app.kubernetes.io/name: immutable-configmap-volume
|
|
spec:
|
|
replicas: 3
|
|
selector:
|
|
matchLabels:
|
|
app.kubernetes.io/name: immutable-configmap-volume
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app.kubernetes.io/name: immutable-configmap-volume
|
|
spec:
|
|
containers:
|
|
- name: alpine
|
|
image: alpine:3
|
|
command:
|
|
- /bin/sh
|
|
- -c
|
|
- while true; do echo "$(date) The name of the company is $(cat /etc/config/company_name)";
|
|
sleep 10; done;
|
|
ports:
|
|
- containerPort: 80
|
|
volumeMounts:
|
|
- name: config-volume
|
|
mountPath: /etc/config
|
|
volumes:
|
|
- name: config-volume
|
|
configMap:
|
|
name: company-name-20150801
|