mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-05-18 12:42:19 +00:00
28 lines
526 B
YAML
28 lines
526 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: sbdemo
|
|
labels:
|
|
app: sbdemo
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
app: sbdemo
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: sbdemo
|
|
spec:
|
|
containers:
|
|
- name: sbdemo
|
|
image: jingfang/sbdemo
|
|
ports:
|
|
- containerPort: 8080
|
|
volumeMounts:
|
|
- name: demo-config
|
|
mountPath: /config
|
|
volumes:
|
|
- name: "demo-config"
|
|
configMap:
|
|
name: "demo-configmap"
|