Skip to content

Commit 7d44591

Browse files
authored
🔧⬆️ Maintenance: updates repo templates and scripts (#6192)
1 parent 78a2e27 commit 7d44591

File tree

5 files changed

+30
-6
lines changed

5 files changed

+30
-6
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Makefile @pcrespov @sanderegg
2121
/packages/settings-library/ @pcrespov @sanderegg
2222
/requirements/ @pcrespov @matusdrobuliak66
2323
/services/agent/ @GitHK
24-
/services/api-server/ @pcrespov @bisgaard-itis
24+
/services/api-server/ @pcrespov
2525
/services/autoscaling/ @sanderegg
2626
/services/catalog/ @pcrespov @sanderegg
2727
/services/clusters-keeper/ @sanderegg

.github/ISSUE_TEMPLATE/4_pre_release.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,14 @@ body:
3939
placeholder: 7d9dcc313f9ced0bd1e6508363148841683b6d7c
4040
validations:
4141
required: true
42+
- type: input
43+
id: pre_release_date
44+
attributes:
45+
label: Planned date
46+
description: Projected release date for this upcoming version
47+
placeholder: ex. Friday, April 23, 1976
48+
validations:
49+
required: true
4250
- type: checkboxes
4351
attributes:
4452
label: Did the commit CI suceeded?

.github/ISSUE_TEMPLATE/5_release.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,14 @@ body:
3131
value: https://github.com/ITISFoundation/osparc-simcore/releases/tag/staging_<sprint_name><version>
3232
validations:
3333
required: true
34+
- type: input
35+
id: release_date
36+
attributes:
37+
label: Planned date
38+
description: Projected release date for this upcoming version
39+
placeholder: ex. Friday, April 23, 1976
40+
validations:
41+
required: true
3442
- type: checkboxes
3543
attributes:
3644
label: Did the commit CI suceeded?

.github/ISSUE_TEMPLATE/6_hotfix.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,14 @@ body:
3131
value: https://github.com/ITISFoundation/osparc-simcore/releases/tag/v<version>
3232
validations:
3333
required: true
34+
- type: input
35+
id: hotfix_date
36+
attributes:
37+
label: Planned date
38+
description: Projected release date for this upcoming version
39+
placeholder: ex. Friday, April 23, 1976
40+
validations:
41+
required: true
3442
- type: textarea
3543
attributes:
3644
label: Motivation

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ endif
293293
.deploy-ops: .stack-ops.yml
294294
# Deploy stack 'ops'
295295
ifndef ops_disabled
296-
docker stack deploy --with-registry-auth -c $< ops
296+
docker stack deploy --detach=true --with-registry-auth -c $< ops
297297
else
298298
@echo "Explicitly disabled with ops_disabled flag in CLI"
299299
endif
@@ -336,7 +336,7 @@ up-devel: .stack-simcore-development.yml .init-swarm $(CLIENT_WEB_OUTPUT) ## Dep
336336
@$(MAKE_C) services/static-webserver/client down compile-dev flags=--watch
337337
@$(MAKE_C) services/dask-sidecar certificates
338338
# Deploy stack $(SWARM_STACK_NAME) [back-end]
339-
@docker stack deploy --with-registry-auth -c $< $(SWARM_STACK_NAME)
339+
@docker stack deploy --detach=true --with-registry-auth -c $< $(SWARM_STACK_NAME)
340340
@$(MAKE) .deploy-ops
341341
@$(_show_endpoints)
342342
@$(MAKE_C) services/static-webserver/client follow-dev-logs
@@ -346,7 +346,7 @@ up-devel-frontend: .stack-simcore-development-frontend.yml .init-swarm ## Every
346346
@$(MAKE_C) services/static-webserver/client down compile-dev flags=--watch
347347
@$(MAKE_C) services/dask-sidecar certificates
348348
# Deploy stack $(SWARM_STACK_NAME) [back-end]
349-
@docker stack deploy --with-registry-auth -c $< $(SWARM_STACK_NAME)
349+
@docker stack deploy --detach=true --with-registry-auth -c $< $(SWARM_STACK_NAME)
350350
@$(MAKE) .deploy-ops
351351
@$(_show_endpoints)
352352
@$(MAKE_C) services/static-webserver/client follow-dev-logs
@@ -356,7 +356,7 @@ up-prod: .stack-simcore-production.yml .init-swarm ## Deploys local production s
356356
ifeq ($(target),)
357357
@$(MAKE_C) services/dask-sidecar certificates
358358
# Deploy stack $(SWARM_STACK_NAME)
359-
@docker stack deploy --with-registry-auth -c $< $(SWARM_STACK_NAME)
359+
@docker stack deploy --detach=true --with-registry-auth -c $< $(SWARM_STACK_NAME)
360360
@$(MAKE) .deploy-ops
361361
else
362362
# deploys ONLY $(target) service
@@ -367,7 +367,7 @@ endif
367367
up-version: .stack-simcore-version.yml .init-swarm ## Deploys versioned stack '$(DOCKER_REGISTRY)/{service}:$(DOCKER_IMAGE_TAG)' and ops stack (pass 'make ops_disabled=1 up-...' to disable)
368368
@$(MAKE_C) services/dask-sidecar certificates
369369
# Deploy stack $(SWARM_STACK_NAME)
370-
@docker stack deploy --with-registry-auth -c $< $(SWARM_STACK_NAME)
370+
@docker stack deploy --detach=true --with-registry-auth -c $< $(SWARM_STACK_NAME)
371371
@$(MAKE) .deploy-ops
372372
@$(_show_endpoints)
373373

0 commit comments

Comments
 (0)