apiVersion: v1 kind: Service metadata: name: ${APP_NAME}-couchdb-service labels: app: ${APP_NAME} component: database spec: selector: app: ${APP_NAME} component: database ports: - name: couchdb port: 5984 targetPort: 5984 protocol: TCP type: ClusterIP