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
1 change: 0 additions & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ jobs:
echo 127.0.0.1 account.huly.example | sudo tee -a /etc/hosts
echo 127.0.0.1 transactor.huly.example | sudo tee -a /etc/hosts
echo 127.0.0.1 collaborator.huly.example | sudo tee -a /etc/hosts
echo 127.0.0.1 datalake.huly.example | sudo tee -a /etc/hosts
kubectl apply -R -f .
kubectl wait --for=condition=Available deployment/cockroachdb-single-node --timeout 3m
kubectl wait --for=condition=Available deployment/transactor --timeout 3m
Expand Down
2 changes: 1 addition & 1 deletion MIGRATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Migration Steps (command examples shown for Docker on macOS):
--network "${DOCKER_NAME}_default" \
-e SERVER_SECRET="$SECRET" \
-e TRANSACTOR_URL="ws://transactor:3333" \
-e STORAGE_CONFIG="datalake|http://datalake:4030" \
-e STORAGE_CONFIG="minio|minio?accessKey=minioadmin&secretKey=minioadmin" \
-e ACCOUNT_DB_URL="${CR_DB_URL}" \
-e ACCOUNTS_URL="http://account:3000" \
-e DB_URL="${CR_DB_URL}" \
Expand Down
1 change: 0 additions & 1 deletion kube/QUICKSTART.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ echo "127.0.0.1 huly.example" | sudo tee -a /etc/hosts
echo "127.0.0.1 account.huly.example" | sudo tee -a /etc/hosts
echo "127.0.0.1 transactor.huly.example" | sudo tee -a /etc/hosts
echo "127.0.0.1 collaborator.huly.example" | sudo tee -a /etc/hosts
echo "127.0.0.1 datalake.huly.example" | sudo tee -a /etc/hosts
```

Deploy Huly with `kubectl`:
Expand Down
3 changes: 0 additions & 3 deletions kube/config/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,3 @@ data:
MONGO_URL: 'mongodb://mongodb:27017'
ELASTIC_URL: 'http://elastic:9200'
ELASTIC_INDEX_NAME: 'huly_storage_index'
filesUrl: 'http://datalake.huly.example/blob/:workspace/:blobId/:filename'
uploadUrl: 'http://datalake.huly.example/upload/form-data/:workspace'
previewConfig: 'image|http://datalake.huly.example/image/fit=cover,width=:width,height=:height,dpr=:dpr/:workspace/:blobId;video|http://datalake.huly.example/meta/:workspace/:blobId'
5 changes: 2 additions & 3 deletions kube/config/secret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ metadata:
type: Opaque
stringData:
SERVER_SECRET: secret
STORAGE_CONFIG: datalake|http://datalake
STORAGE_CONFIG: minio|minio?accessKey=minioadmin&secretKey=minioadmin
COCKROACH_PASSWORD: cockroach_user_secret
REDPANDA_SUPERUSER_PASSWORD: superpassword
CR_DB_URL: postgres://selfhost:cockroach_user_secret@cockroach:26257/defaultdb
datalakeStorageConfig: huly,eu|http://minio:9000?accessKey=minioadmin&secretKey=minioadmin
CR_DB_URL: postgres://selfhost:cockroach_user_secret@cockroach:26257/defaultdb
49 changes: 0 additions & 49 deletions kube/datalake/datalake-deployment.yaml

This file was deleted.

21 changes: 0 additions & 21 deletions kube/datalake/datalake-ingress.yaml

This file was deleted.

12 changes: 0 additions & 12 deletions kube/datalake/datalake-service.yaml

This file was deleted.

15 changes: 1 addition & 14 deletions kube/front/front-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,21 +65,8 @@ spec:
value: http://telegram:8086
- name: TITLE
value: Huly Self Hosted
- name: FILES_URL
valueFrom:
configMapKeyRef:
name: huly-config
key: filesUrl
- name: UPLOAD_URL
valueFrom:
configMapKeyRef:
name: huly-config
key: uploadUrl
- name: PREVIEW_CONFIG
valueFrom:
configMapKeyRef:
name: huly-config
key: previewConfig
value: /files
- name: STATS_URL
value: http://stats
- name: DESKTOP_UPDATES_CHANNEL
Expand Down