30 lines
452 B
YAML
30 lines
452 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: ushahidi-api
|
|
namespace: ushahidi
|
|
spec:
|
|
type: ClusterIP
|
|
ports:
|
|
- port: 80
|
|
targetPort: http
|
|
protocol: TCP
|
|
name: http
|
|
selector:
|
|
component: api
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: ushahidi-client
|
|
namespace: ushahidi
|
|
spec:
|
|
type: ClusterIP
|
|
ports:
|
|
- port: 80
|
|
targetPort: http
|
|
protocol: TCP
|
|
name: http
|
|
selector:
|
|
component: client
|