mirror of
https://github.com/mainflux/mainflux.git
synced 2025-05-11 19:29:16 +08:00

* Update dashflux port on kubernetes configuration Signed-off-by: Aleksandar Novakovic <aleksandar.novakovic@mainflux.com> * Remove target port from dashflux config Signed-off-by: Aleksandar Novakovic <aleksandar.novakovic@mainflux.com>
32 lines
526 B
YAML
32 lines
526 B
YAML
apiVersion: apps/v1beta1
|
|
kind: Deployment
|
|
metadata:
|
|
name: dashflux
|
|
labels:
|
|
component: dashflux
|
|
spec:
|
|
template:
|
|
metadata:
|
|
labels:
|
|
component: dashflux
|
|
spec:
|
|
containers:
|
|
- name: dashflux
|
|
image: mainflux/dashflux:latest
|
|
imagePullPolicy: Always
|
|
ports:
|
|
- containerPort: 3000
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: dashflux
|
|
labels:
|
|
component: dashflux
|
|
spec:
|
|
selector:
|
|
component: dashflux
|
|
ports:
|
|
- port: 3000
|
|
type: LoadBalancer
|