- Add comprehensive YAML configuration types for EdgeConnectConfig - Implement robust parser with validation and path resolution - Support both k8sApp and dockerApp configurations - Add comprehensive test coverage with real example parsing - Create validation for infrastructure uniqueness and port ranges - Generate instance names following pattern: appName-appVersion-instance 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
39 lines
786 B
YAML
39 lines
786 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: edgeconnect-coder-tcp
|
|
labels:
|
|
run: edgeconnect-coder
|
|
spec:
|
|
type: LoadBalancer
|
|
ports:
|
|
- name: tcp80
|
|
protocol: TCP
|
|
port: 80
|
|
targetPort: 80
|
|
selector:
|
|
run: edgeconnect-coder
|
|
---
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: edgeconnect-coder-deployment
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
run: edgeconnect-coder
|
|
template:
|
|
metadata:
|
|
labels:
|
|
run: edgeconnect-coder
|
|
mexDeployGen: kubernetes-basic
|
|
spec:
|
|
volumes:
|
|
containers:
|
|
- name: edgeconnect-coder
|
|
image: edp.buildth.ing/devfw-cicd/edgeconnect-coder:main
|
|
imagePullPolicy: Always
|
|
ports:
|
|
- containerPort: 80
|
|
protocol: TCP
|