🎉 initial commit

This commit is contained in:
Laurent Drogou
2022-04-06 15:33:57 +02:00
commit 968716ec76
29 changed files with 846 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
apiVersion: v1
kind: Service
metadata:
name: webuiam
namespace: graviteeio
labels:
app: webuiam
spec:
ports:
- name: http
port: 80
targetPort: 80
selector:
app: webuiam
type: LoadBalancer
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: webuiam
namespace: graviteeio
labels:
app: webuiam
spec:
replicas: 1
selector:
matchLabels:
app: webuiam
template:
metadata:
labels:
app: webuiam
spec:
containers:
- name: webuiam
image: graviteeio/am-management-ui:2
env:
- name: MGMT_API_URL
value: http://dev.graviteeio.am/am
- name: MGMT_UI_URL
value: http://dev.graviteeio.am/am/ui
ports:
- name: http
containerPort: 80