Untitled

mail@pastecode.io avatar
unknown
yaml
17 days ago
372 B
2
Indexable
Never
apiVersion: apps/v1
kind: Deployment
metadata:
  labels:
    app: nginx
  name: nginx-deployment
  namespace: your-namespace  # Add the namespace here
spec:
  replicas: 2
  selector:
    matchLabels:
      app: nginx
  template:
    metadata:
      labels:
        app: nginx
    spec:
      containers:
      - name: nginx
        image: quay.io/gauravkumar9130/mywebapp
Leave a Comment