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