mirror of
https://github.com/danielgormly/drone-plugin-kube.git
synced 2026-06-04 18:23:48 +08:00
22 lines
376 B
YAML
22 lines
376 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: {{name}}
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
app: {{name}}
|
|
replicas: 1
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: {{name}}
|
|
spec:
|
|
containers:
|
|
- name: nginx
|
|
image: 10.0.0.24:443/image:{{name}}
|
|
ports:
|
|
- containerPort: 80
|
|
imagePullSecrets:
|
|
- name: regcred
|