51 lines
852 B
YAML
51 lines
852 B
YAML
---
|
|
kind: Deployment
|
|
apiVersion: extensions/v1beta1
|
|
metadata:
|
|
name: whoami
|
|
labels:
|
|
app: containous
|
|
name: whoami
|
|
spec:
|
|
replicas: 2
|
|
selector:
|
|
matchLabels:
|
|
app: containous
|
|
task: whoami
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: containous
|
|
task: whoami
|
|
spec:
|
|
containers:
|
|
- name: containouswhoami
|
|
image: containous/whoami
|
|
ports:
|
|
- containerPort: 80
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: whoami
|
|
spec:
|
|
ports:
|
|
- name: http
|
|
port: 80
|
|
selector:
|
|
app: containous
|
|
task: whoami
|
|
---
|
|
apiVersion: extensions/v1beta1
|
|
kind: Ingress
|
|
metadata:
|
|
name: cheeses
|
|
spec:
|
|
rules:
|
|
- host: whoami.test
|
|
http:
|
|
paths:
|
|
- path: /whoami
|
|
backend:
|
|
serviceName: whoami
|
|
servicePort: http
|