31 lines
654 B
YAML
31 lines
654 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: juno-design
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: juno-design
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: juno-design
|
|
spec:
|
|
imagePullSecrets:
|
|
- name: ccr
|
|
containers:
|
|
- name: app
|
|
image: ccr.ccs.tencentyun.com/juno/basic:nginx
|
|
imagePullPolicy: IfNotPresent
|
|
ports:
|
|
- containerPort: 80
|
|
name: http
|
|
protocol: TCP
|
|
resources:
|
|
limits:
|
|
cpu: "2"
|
|
memory: 2Gi
|
|
requests:
|
|
cpu: 1m
|
|
memory: 1Mi |