mirror of
https://github.com/weaveworks/scope.git
synced 2026-05-24 18:13:17 +00:00
21 lines
367 B
YAML
21 lines
367 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: frontend
|
|
spec:
|
|
replicas: 2
|
|
selector:
|
|
matchLabels:
|
|
name: frontend
|
|
template:
|
|
metadata:
|
|
labels:
|
|
name: frontend
|
|
spec:
|
|
containers:
|
|
- name: frontend
|
|
image: tomwilkie/frontend-k8s
|
|
imagePullPolicy: IfNotPresent
|
|
ports:
|
|
- containerPort: 80
|