re arrange some things
parent
c4cebcea6d
commit
5221c50814
24
Tiltfile
24
Tiltfile
|
|
@ -27,6 +27,14 @@ helm_resource(
|
|||
labels=["1-ingress"]
|
||||
)
|
||||
|
||||
k8s_resource(
|
||||
workload='ingress',
|
||||
labels='1-ingress',
|
||||
links=[
|
||||
link(url='http://admin.localhost:8000', name='Admin Panel'),
|
||||
]
|
||||
)
|
||||
|
||||
helm_resource(
|
||||
'postgres',
|
||||
'bitnami/postgresql',
|
||||
|
|
@ -41,7 +49,9 @@ helm_resource(
|
|||
port_forward(5432, 5432, name='BH DB')],
|
||||
labels=["9-data"])
|
||||
|
||||
|
||||
k8s_yaml(
|
||||
kustomize("./env/local")
|
||||
)
|
||||
|
||||
def bh_backend_service(service="", port_forwards=[], migrateDB=False, devMode=True, labels=['2-services'], deps=['postgres']):
|
||||
local_resource(
|
||||
|
|
@ -149,18 +159,6 @@ k8s_resource(
|
|||
# labels=['2-services']
|
||||
# )
|
||||
|
||||
k8s_yaml(
|
||||
kustomize("./env/local")
|
||||
)
|
||||
|
||||
k8s_resource(
|
||||
workload='ingress',
|
||||
labels='1-ingress',
|
||||
links=[
|
||||
link(url='http://admin.localhost:8000', name='Admin Panel'),
|
||||
]
|
||||
)
|
||||
|
||||
# helm_resource(
|
||||
# 'loki-stack',
|
||||
# 'grafana/loki-stack',
|
||||
|
|
|
|||
Loading…
Reference in New Issue