Skip to content

Commit 2fcba7c

Browse files
Fix flagd ui name (#1773)
1 parent 09ab6cc commit 2fcba7c

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.env

+3-3
Original file line numberDiff line numberDiff line change
@@ -129,12 +129,12 @@ SHIPPING_SERVICE_DOCKERFILE=./src/shippingservice/Dockerfile
129129
# ******************
130130
# Dependent Services
131131
# ******************
132-
# flagd
132+
# Flagd
133133
FLAGD_HOST=flagd
134134
FLAGD_PORT=8013
135135

136-
#flagd-ui
137-
FLAGD_UI_HOST=flagd-ui
136+
# Flagd UI
137+
FLAGD_UI_HOST=flagdui
138138
FLAGD_UI_PORT=4000
139139
FLAGD_UI_DOCKERFILE=./src/flagd-ui/Dockerfile
140140

docker-compose.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ services:
357357
condition: service_started
358358
grafana:
359359
condition: service_started
360-
flagd-ui:
360+
flagdui:
361361
condition: service_started
362362

363363
# Imageprovider
@@ -607,10 +607,10 @@ services:
607607
logging:
608608
*logging
609609

610-
# Flagd-ui, UI for configuring the feature flagging service
611-
flagd-ui:
612-
image: ${IMAGE_NAME}:${DEMO_VERSION}-flagd-ui
613-
container_name: flagd-ui
610+
# Flagd UI for configuring the feature flag service
611+
flagdui:
612+
image: ${IMAGE_NAME}:${DEMO_VERSION}-flagdui
613+
container_name: flagdui
614614
build:
615615
context: ./
616616
dockerfile: ${FLAGD_UI_DOCKERFILE}
@@ -623,7 +623,7 @@ services:
623623
- OTEL_EXPORTER_OTLP_ENDPOINT=http://${OTEL_COLLECTOR_HOST}:${OTEL_COLLECTOR_PORT_HTTP}
624624
- OTEL_EXPORTER_OTLP_METRICS_TEMPORALITY_PREFERENCE
625625
- OTEL_RESOURCE_ATTRIBUTES
626-
- OTEL_SERVICE_NAME=flagd-ui
626+
- OTEL_SERVICE_NAME=flagdui
627627
ports:
628628
- "${FLAGD_UI_PORT}"
629629
depends_on:

src/frontendproxy/envoy.tmpl.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ static_resources:
5050
- match: { prefix: "/flagservice/" }
5151
route: { cluster: flagservice, prefix_rewrite: "/", timeout: 0s }
5252
- match: { prefix: "/feature" }
53-
route: { cluster: flagd-ui }
53+
route: { cluster: flagdui }
5454
- match: { prefix: "/" }
5555
route: { cluster: frontend }
5656
http_filters:
@@ -132,11 +132,11 @@ static_resources:
132132
socket_address:
133133
address: ${FLAGD_HOST}
134134
port_value: ${FLAGD_PORT}
135-
- name: flagd-ui
135+
- name: flagdui
136136
type: STRICT_DNS
137137
lb_policy: ROUND_ROBIN
138138
load_assignment:
139-
cluster_name: flagd-ui
139+
cluster_name: flagdui
140140
endpoints:
141141
- lb_endpoints:
142142
- endpoint:

0 commit comments

Comments
 (0)