Files
joossam/deploy/k8s/base/service.yaml
Mayne0213 615fe6e574 INIT(api): add FastAPI application
- Initialize FastAPI project structure
- Add basic API configuration
2025-12-01 14:34:20 +09:00

16 lines
235 B
YAML

apiVersion: v1
kind: Service
metadata:
name: joossam-service
labels:
app: joossam-app
spec:
type: ClusterIP
ports:
- name: http
port: 80
targetPort: 8000
protocol: TCP
selector:
app: joossam-app