- Migrated from Python pre-commit to NodeJS-native solution - Reorganized documentation structure - Set up Husky + lint-staged for efficient pre-commit hooks - Fixed Dockerfile healthcheck issue - Added comprehensive documentation index
18 lines
300 B
YAML
18 lines
300 B
YAML
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
|