# Kubernetes Service Configuration apiVersion: v1 kind: Service metadata: name: blog namespace: ${KUBERNETES_NAMESPACE} labels: app: blog spec: type: ClusterIP selector: app: blog ports: - name: http port: 8888 targetPort: http protocol: TCP