- Add Helm chart with 19 templates (Deployments, Services, Ingress, ConfigMaps, Secrets, NetworkPolicy, cert-manager) - Add Dockerfiles for 4 microservices (dashboard, data-service, execute-service, news-service) - Add CI/CD workflows (build-test, build-push, deploy) - Add raw K8s manifests, per-service Helm charts, and deploy scripts - Add SOPS-encrypted secrets template and config - Configure deployment to customer1 namespace - Include infrastructure components: PostgreSQL, Redis, Kafka
18 lines
334 B
YAML
18 lines
334 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: dashboard
|
|
namespace: customer1
|
|
labels:
|
|
app: dashboard
|
|
app.kubernetes.io/name: dashboard
|
|
app.kubernetes.io/component: microservice
|
|
spec:
|
|
type: ClusterIP
|
|
ports:
|
|
- port: 3000
|
|
targetPort: 3000
|
|
protocol: TCP
|
|
name: http
|
|
selector:
|
|
app: dashboard
|