mirror of
https://github.com/dockersamples/example-voting-app.git
synced 2026-02-14 18:29:51 +00:00
23 lines
369 B
YAML
23 lines
369 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
labels:
|
|
app: vote
|
|
name: vote
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: vote
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: vote
|
|
spec:
|
|
containers:
|
|
- image: dockersamples/examplevotingapp_vote
|
|
name: vote
|
|
ports:
|
|
- containerPort: 80
|
|
name: vote
|