Skip to content

Commit

Permalink
Merge branch 'main' into support/ws-as-separate-paths
Browse files Browse the repository at this point in the history
Signed-off-by: Ilya Gulya <[email protected]>
  • Loading branch information
IlyaGulya authored Jan 20, 2025
2 parents 7db3c2b + cb21ec7 commit d647630
Show file tree
Hide file tree
Showing 13 changed files with 21 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .template.huly.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
HULY_VERSION=v0.6.377
HULY_VERSION=v0.6.411
DOCKER_NAME=huly

# The address of the host or server from which you will access your Huly instance.
Expand Down
8 changes: 8 additions & 0 deletions MIGRATION.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Huly Migration

## v0.6.411

No changes required.

## v0.6.405

No changes required.

## v0.6.377

### Fulltext Service
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ Add these keys into `compose.yaml` in section `services:front:environment`:

```yaml
ses:
image: hardcoreeng/ses:v0.6.377
image: hardcoreeng/ses:v0.6.411
container_name: ses
expose:
- 3335
Expand Down Expand Up @@ -169,7 +169,7 @@ self-hosted Huly, perform the following steps:

```yaml
love:
image: hardcoreeng/love:v0.6.377
image: hardcoreeng/love:v0.6.411
container_name: love
ports:
- 8096:8096
Expand Down
2 changes: 1 addition & 1 deletion kube/account/account-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ spec:
configMapKeyRef:
name: huly-config
key: TRANSACTOR_URL
image: hardcoreeng/account:v0.6.377
image: hardcoreeng/account:v0.6.411
name: account
ports:
- containerPort: 3000
Expand Down
2 changes: 1 addition & 1 deletion kube/collaborator/collaborator-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ spec:
secretKeyRef:
name: huly-secret
key: SERVER_SECRET
image: hardcoreeng/collaborator:v0.6.377
image: hardcoreeng/collaborator:v0.6.411
name: collaborator
ports:
- containerPort: 3078
Expand Down
2 changes: 1 addition & 1 deletion kube/front/front-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ spec:
value: http://stats
- name: DESKTOP_UPDATES_CHANNEL
value: selfhost
image: hardcoreeng/front:v0.6.377
image: hardcoreeng/front:v0.6.411
name: front
ports:
- containerPort: 8080
Expand Down
2 changes: 1 addition & 1 deletion kube/fulltext/fulltext-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ spec:
value: http://account
- name: STATS_URL
value: http://stats
image: hardcoreeng/fulltext:v0.6.377
image: hardcoreeng/fulltext:v0.6.411
name: fulltext
ports:
- containerPort: 4700
Expand Down
2 changes: 1 addition & 1 deletion kube/rekoni/rekoni-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ spec:
app: rekoni
spec:
containers:
- image: hardcoreeng/rekoni-service:v0.6.377
- image: hardcoreeng/rekoni-service:v0.6.411
name: rekoni
env:
- name: SECRET
Expand Down
2 changes: 1 addition & 1 deletion kube/stats/stats-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ spec:
app: stats
spec:
containers:
- image: hardcoreeng/stats:v0.6.377
- image: hardcoreeng/stats:v0.6.411
name: stats
env:
- name: PORT
Expand Down
2 changes: 1 addition & 1 deletion kube/transactor/transactor-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ spec:
secretKeyRef:
name: huly-secret
key: SERVER_SECRET
image: hardcoreeng/transactor:v0.6.377
image: hardcoreeng/transactor:v0.6.411
name: transactor
ports:
- containerPort: 3333
Expand Down
2 changes: 1 addition & 1 deletion kube/workspace/workspace-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ spec:
secretKeyRef:
name: huly-secret
key: SERVER_SECRET
image: hardcoreeng/workspace:v0.6.377
image: hardcoreeng/workspace:v0.6.411
name: workspace
resources:
limits:
Expand Down
2 changes: 1 addition & 1 deletion setup.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

HULY_VERSION="v0.6.377"
HULY_VERSION="v0.6.411"
DOCKER_NAME="huly"
CONFIG_FILE="huly.conf"

Expand Down
2 changes: 1 addition & 1 deletion traefik/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ if [ -z "$LETSENCRYPT_EMAIL" ]; then
exit 1
fi

export HULY_VERSION="v0.6.377"
export HULY_VERSION="v0.6.411"
export HULY_SECRET="secret"
export SERVER_ADDRESS=$DOMAIN_NAME
export LETSENCRYPT_EMAIL=$LETSENCRYPT_EMAIL
Expand Down

0 comments on commit d647630

Please sign in to comment.