mirror of
https://github.com/marcel-dempers/docker-development-youtube-series.git
synced 2025-06-06 17:01:30 +00:00
92 lines
1.7 KiB
YAML
92 lines
1.7 KiB
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: service-b
|
|
data:
|
|
path-a.html: |
|
|
"/path-a.html" on service-b
|
|
path-b.html: |
|
|
"/path-b.html" on service-b
|
|
index.html: |
|
|
"/" on service-b
|
|
404.html: |
|
|
service-b 404 page
|
|
---
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: service-b-nginx.conf
|
|
data:
|
|
nginx.conf: |
|
|
user nginx;
|
|
worker_processes 1;
|
|
error_log /var/log/nginx/error.log warn;
|
|
pid /var/run/nginx.pid;
|
|
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
http {
|
|
sendfile on;
|
|
server {
|
|
listen 80;
|
|
server_name localhost;
|
|
|
|
location / {
|
|
root /usr/share/nginx/html;
|
|
index index.html index.htm;
|
|
}
|
|
|
|
error_page 404 /404.html;
|
|
error_page 500 502 503 504 /50x.html;
|
|
location = /50x.html {
|
|
root /usr/share/nginx/html;
|
|
}
|
|
}
|
|
}
|
|
---
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: service-b
|
|
labels:
|
|
app: service-b
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: service-b
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: service-b
|
|
spec:
|
|
containers:
|
|
- name: nginx
|
|
image: nginx:1.14.2
|
|
ports:
|
|
- containerPort: 80
|
|
volumeMounts:
|
|
- name: html
|
|
mountPath: "/usr/share/nginx/html/"
|
|
- name: config
|
|
mountPath: "/etc/nginx/"
|
|
volumes:
|
|
- name: html
|
|
configMap:
|
|
name: service-b
|
|
- name: config
|
|
configMap:
|
|
name: service-b-nginx.conf
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: service-b
|
|
spec:
|
|
selector:
|
|
app: service-b
|
|
ports:
|
|
- protocol: TCP
|
|
port: 80
|
|
targetPort: 80 |