Add complete portfolio project including: - Next.js application in services/nextjs - Docker configurations for dev and prod - Kubernetes deployment manifests with kustomize - ArgoCD application configuration - GitHub Actions workflow for automated builds
16 lines
241 B
YAML
16 lines
241 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: portfolio-service
|
|
labels:
|
|
app: portfolio-app
|
|
spec:
|
|
type: ClusterIP
|
|
ports:
|
|
- name: http
|
|
port: 80
|
|
targetPort: 3000
|
|
protocol: TCP
|
|
selector:
|
|
app: portfolio-app
|