apiVersion: v1 kind: Service metadata: name: nginx spec: selector: app: nginx ports: - port: 80 protocol: TCP targetPort: 80 nodePort: 30080 type: NodePort --- apiVersion: apps/v1 kind: Deployment metadata: name: nginx spec: replicas: 1 selector: matchLabels: app: nginx template: metadata: labels: app: nginx spec: containers: - name: nginx image: nginx ports: - containerPort: 80