22 lines
360 B
YAML
22 lines
360 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: zinc
|
|
labels:
|
|
app: zinc
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: zinc
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: zinc
|
|
spec:
|
|
containers:
|
|
- name: zinc
|
|
image: public.ecr.aws/zinclabs/zinc:latest
|
|
ports:
|
|
- containerPort: 4080
|