23 lines
415 B
YAML
23 lines
415 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: "ip-deployment"
|
|
labels:
|
|
app: "front"
|
|
spec:
|
|
template:
|
|
metadata:
|
|
name: "front-apache"
|
|
labels:
|
|
owner: "jcabillot"
|
|
app: "front"
|
|
spec:
|
|
automountServiceAccountToken: false
|
|
containers:
|
|
- name: "front-apache"
|
|
image: "jcabillot/ip"
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: "front"
|