Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BC-7674 added tldraw-server role #914

Closed
wants to merge 6 commits into from
Closed
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: 1 addition & 0 deletions .github/workflows/clean_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ jobs:
- dof_app_deploy
- h5p-staticfiles-server
- tldraw-client
- tldraw-server
steps:
- run: |
echo "git_ref_name=${{ inputs.branch }}" >> $GITHUB_ENV
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ jobs:
- dof_app_deploy
- h5p-staticfiles-server
- tldraw-client
- tldraw-server
steps:
- run: |
echo "git_ref_name=${{ inputs.branch }}" >> $GITHUB_ENV
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/host.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,12 @@ jobs:
path: repo/tldraw-client
token: ${{ secrets.token }}
ref: ${{ env.TLDRAW_CLIENT_VERSION }}
- uses: actions/checkout@v4
with:
repository: hpi-schul-cloud/tldraw-server
path: repo/tldraw-server
token: ${{ secrets.token }}
ref: ${{ env.TLDRAW_SERVER_VERSION }}
- working-directory: ${{github.workspace }}
run: |
mkdir ansible
Expand Down
1 change: 1 addition & 0 deletions ansible/group_vars/all/git_repos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ VERSION_AGGREGATOR_REPO_NAME: version-aggregator
DOF_APP_DEPLOY_REPO_NAME: dof-app-deploy
H5P_STATICFILES_SERVER_REPO_NAME: h5p-staticfiles-server
TLDRAW_CLIENT_REPO_NAME: tldraw-client
TLDRAW_SERVER_REPO_NAME: tldraw-server
2 changes: 2 additions & 0 deletions ansible/playbook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@
- rocketchat
- mongodb_query_exporter
- tldraw-client-core
- tldraw-server
- tldraw-valkey
- common-cartridge
- ingress
- post_deployment
Expand Down
2 changes: 2 additions & 0 deletions ansible/playbook_rollout.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@
- role: rocketchat
- role: mongodb_query_exporter
- role: tldraw-client-core
- role: tldraw-server
- role: tldraw-valkey
- role: common-cartridge
- role: ingress
- role: post_deployment
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ deployments_for_scaled_objects:
- shd-deployment
- shd-client-deployment
- version-aggregator-deployment
- tldraw-deployment
# - tldraw-deployment
# - tldraw-worker-deployment
- tldraw-client-deployment
- mailcatcher-deployment
- maildrop-deployment
Expand Down
Loading