Skip to content

Commit b38129d

Browse files
droplet-botpinglin
andauthored
chore(env): update MGMT_BACKEND_VERSION (#1452)
Because - The version of the mgmt-backend service is not updated in the instill-core repository. This commit - updates the `MGMT_BACKEND_VERSION` in the `.env` file to `d3baf97`. - updates the `mgmtBackend.image.tag` in the helm chart values.yaml file to `d3baf97`. ## Changes in mgmt-backend - fix(api): return user ID instead of UID in ValidateToken response (instill-ai/mgmt-backend#311) - fix(api): align backend with protobuf API changes and remove deprecated metrics endpoints (instill-ai/mgmt-backend#310) Co-authored-by: pinglin <628430+pinglin@users.noreply.github.com>
1 parent eb31ba0 commit b38129d

File tree

2 files changed

+8
-30
lines changed

2 files changed

+8
-30
lines changed

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ MODEL_BACKEND_HOST_PUBLICPORT=8083
9191

9292
# mgmt-backend
9393
MGMT_BACKEND_IMAGE=instill/mgmt-backend
94-
MGMT_BACKEND_VERSION=bb38f20
94+
MGMT_BACKEND_VERSION=d3baf97
9595
MGMT_BACKEND_HOST=mgmt-backend
9696
MGMT_BACKEND_PRIVATEPORT=3084
9797
MGMT_BACKEND_PUBLICPORT=8084

charts/core/values.yaml

Lines changed: 7 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ mgmtBackend:
304304
# -- The image of mgmt-backend
305305
image:
306306
repository: instill/mgmt-backend
307-
tag: bb38f20
307+
tag: d3baf97
308308
pullPolicy: IfNotPresent
309309
# -- Annotation for deployment
310310
annotations: {}
@@ -1091,7 +1091,12 @@ openfga:
10911091
- name: wait-for-db
10921092
image: postgres:15-alpine
10931093
imagePullPolicy: IfNotPresent
1094-
command: ["sh", "-c", "until pg_isready; do echo waiting for db; sleep 2; done"]
1094+
command:
1095+
[
1096+
"sh",
1097+
"-c",
1098+
"until pg_isready; do echo waiting for db; sleep 2; done",
1099+
]
10951100
env:
10961101
- name: PGHOST
10971102
value: "core-database"
@@ -1104,33 +1109,6 @@ openfga:
11041109
args:
11051110
- >
11061111
until pg_isready; do
1107-
1108-
1109-
1110-
1111-
1112-
1113-
1114-
1115-
1116-
1117-
1118-
1119-
1120-
1121-
1122-
1123-
1124-
1125-
1126-
1127-
1128-
1129-
1130-
1131-
1132-
1133-
11341112
echo "Waiting for database to be ready...";
11351113
sleep 2;
11361114
done; createdb || true

0 commit comments

Comments
 (0)