mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-05-18 09:02:13 +00:00
Create simple kustomization directory that `kustomize localize` can download as remote reference in test.
21 lines
347 B
YAML
21 lines
347 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: test-deployment-simple
|
|
labels:
|
|
app: deployment-simple
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
app: simple
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: simple
|
|
spec:
|
|
containers:
|
|
- name: nginx
|
|
image: nginx:1.16
|
|
ports:
|
|
- containerPort: 8080
|