mirror of
https://github.com/Azure/k8s-deploy.git
synced 2026-04-05 04:19:49 +08:00
Signed-off-by: Tatsat Mishra <tamishra@microsoft.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Tatsinnit <tamishra@microsoft.com>
22 lines
410 B
YAML
22 lines
410 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: test-deployment-no-ns
|
|
labels:
|
|
app: test-app
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: test-app
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: test-app
|
|
spec:
|
|
containers:
|
|
- name: test-container
|
|
image: nginx
|
|
ports:
|
|
- containerPort: 80
|