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