-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathhello_from_configmap.yml
51 lines (51 loc) · 1011 Bytes
/
hello_from_configmap.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
apiVersion: v1
kind: ConfigMap
metadata:
name: hello-from-configmap
data:
index.html: |
<h1>Hello from ConfigMap!</h1>
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: hello-from-configmap
spec:
selector:
matchLabels:
app: hello-from-configmap
template:
metadata:
labels:
app: hello-from-configmap
spec:
volumes:
- name: www
configMap:
name: hello-from-configmap
containers:
- name: main
image: nginx
ports:
- containerPort: 80
volumeMounts:
- name: www
subPath: index.html
mountPath: /usr/share/nginx/html/index.html
resources:
requests:
cpu: 20m
memory: 30Mi
limits:
cpu: 50m
memory: 50Mi
---
apiVersion: v1
kind: Service
metadata:
name: hello-from-configmap
spec:
selector:
app: hello-from-configmap
ports:
- port: 80