# ============================================================================= # Kubernetes Service Template — AKS Deploy Skill # ============================================================================= # ClusterIP Service that routes traffic to application pods. # # REPLACE: — your application name (e.g., order-api) # REPLACE: — target namespace (e.g., production) # REPLACE: — service port (e.g., 80) # REPLACE: — container port (e.g., 8080) # ============================================================================= apiVersion: v1 kind: Service metadata: name: namespace: labels: app: spec: type: ClusterIP selector: app: ports: - name: http port: targetPort: protocol: TCP