You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
365 B
21 lines
365 B
11 months ago
|
apiVersion: apps/v1
|
||
|
kind: Deployment
|
||
|
metadata:
|
||
|
name: my-web-app-deployment
|
||
|
spec:
|
||
|
replicas: 2
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
app: my-web-app
|
||
|
template:
|
||
|
metadata:
|
||
|
labels:
|
||
|
app: my-web-app
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: my-web-app
|
||
|
image: core.harbor.cn:30210/my-web-app:latest
|
||
|
ports:
|
||
|
- containerPort: 8080
|
||
|
|