Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ PIPELINE_BACKEND_HOST_PUBLICPORT=8081

# artifact-backend
ARTIFACT_BACKEND_IMAGE=instill/artifact-backend
ARTIFACT_BACKEND_VERSION=487d4f7
ARTIFACT_BACKEND_VERSION=fd77f44
ARTIFACT_BACKEND_HOST=artifact-backend
ARTIFACT_BACKEND_PRIVATEPORT=3082
ARTIFACT_BACKEND_PUBLICPORT=8082
Expand Down
10 changes: 3 additions & 7 deletions charts/core/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -607,7 +607,7 @@ artifactBackend:
# -- The image of artifact-backend
image:
repository: instill/artifact-backend
tag: 487d4f7
tag: fd77f44
pullPolicy: IfNotPresent
# -- Annotation for deployment
annotations: {}
Expand Down Expand Up @@ -1091,12 +1091,7 @@ openfga:
- name: wait-for-db
image: postgres:15-alpine
imagePullPolicy: IfNotPresent
command:
[
"sh",
"-c",
"until pg_isready; do echo waiting for db; sleep 2; done",
]
command: ["sh", "-c", "until pg_isready; do echo waiting for db; sleep 2; done"]
env:
- name: PGHOST
value: "core-database"
Expand All @@ -1109,6 +1104,7 @@ openfga:
args:
- >
until pg_isready; do

echo "Waiting for database to be ready...";
sleep 2;
done; createdb || true
Expand Down