14 lines
344 B
YAML
14 lines
344 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: onix-adapter-service
|
|
namespace: onix-adapter # Namespace
|
|
spec:
|
|
selector:
|
|
app: onix-adapter # This should match the app name in deployment.yaml
|
|
ports:
|
|
- protocol: TCP
|
|
port: 80
|
|
targetPort: 8080
|
|
type: LoadBalancer #NodePort or LoadBalancer
|