Skip to content

Commit

Permalink
🔧⬆️ Maintenance: updates repo templates and scripts (#6192)
Browse files Browse the repository at this point in the history
  • Loading branch information
pcrespov authored Aug 16, 2024
1 parent 78a2e27 commit 7d44591
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Makefile @pcrespov @sanderegg
/packages/settings-library/ @pcrespov @sanderegg
/requirements/ @pcrespov @matusdrobuliak66
/services/agent/ @GitHK
/services/api-server/ @pcrespov @bisgaard-itis
/services/api-server/ @pcrespov
/services/autoscaling/ @sanderegg
/services/catalog/ @pcrespov @sanderegg
/services/clusters-keeper/ @sanderegg
Expand Down
8 changes: 8 additions & 0 deletions .github/ISSUE_TEMPLATE/4_pre_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,14 @@ body:
placeholder: 7d9dcc313f9ced0bd1e6508363148841683b6d7c
validations:
required: true
- type: input
id: pre_release_date
attributes:
label: Planned date
description: Projected release date for this upcoming version
placeholder: ex. Friday, April 23, 1976
validations:
required: true
- type: checkboxes
attributes:
label: Did the commit CI suceeded?
Expand Down
8 changes: 8 additions & 0 deletions .github/ISSUE_TEMPLATE/5_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,14 @@ body:
value: https://github.com/ITISFoundation/osparc-simcore/releases/tag/staging_<sprint_name><version>
validations:
required: true
- type: input
id: release_date
attributes:
label: Planned date
description: Projected release date for this upcoming version
placeholder: ex. Friday, April 23, 1976
validations:
required: true
- type: checkboxes
attributes:
label: Did the commit CI suceeded?
Expand Down
8 changes: 8 additions & 0 deletions .github/ISSUE_TEMPLATE/6_hotfix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,14 @@ body:
value: https://github.com/ITISFoundation/osparc-simcore/releases/tag/v<version>
validations:
required: true
- type: input
id: hotfix_date
attributes:
label: Planned date
description: Projected release date for this upcoming version
placeholder: ex. Friday, April 23, 1976
validations:
required: true
- type: textarea
attributes:
label: Motivation
Expand Down
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ endif
.deploy-ops: .stack-ops.yml
# Deploy stack 'ops'
ifndef ops_disabled
docker stack deploy --with-registry-auth -c $< ops
docker stack deploy --detach=true --with-registry-auth -c $< ops
else
@echo "Explicitly disabled with ops_disabled flag in CLI"
endif
Expand Down Expand Up @@ -336,7 +336,7 @@ up-devel: .stack-simcore-development.yml .init-swarm $(CLIENT_WEB_OUTPUT) ## Dep
@$(MAKE_C) services/static-webserver/client down compile-dev flags=--watch
@$(MAKE_C) services/dask-sidecar certificates
# Deploy stack $(SWARM_STACK_NAME) [back-end]
@docker stack deploy --with-registry-auth -c $< $(SWARM_STACK_NAME)
@docker stack deploy --detach=true --with-registry-auth -c $< $(SWARM_STACK_NAME)
@$(MAKE) .deploy-ops
@$(_show_endpoints)
@$(MAKE_C) services/static-webserver/client follow-dev-logs
Expand All @@ -346,7 +346,7 @@ up-devel-frontend: .stack-simcore-development-frontend.yml .init-swarm ## Every
@$(MAKE_C) services/static-webserver/client down compile-dev flags=--watch
@$(MAKE_C) services/dask-sidecar certificates
# Deploy stack $(SWARM_STACK_NAME) [back-end]
@docker stack deploy --with-registry-auth -c $< $(SWARM_STACK_NAME)
@docker stack deploy --detach=true --with-registry-auth -c $< $(SWARM_STACK_NAME)
@$(MAKE) .deploy-ops
@$(_show_endpoints)
@$(MAKE_C) services/static-webserver/client follow-dev-logs
Expand All @@ -356,7 +356,7 @@ up-prod: .stack-simcore-production.yml .init-swarm ## Deploys local production s
ifeq ($(target),)
@$(MAKE_C) services/dask-sidecar certificates
# Deploy stack $(SWARM_STACK_NAME)
@docker stack deploy --with-registry-auth -c $< $(SWARM_STACK_NAME)
@docker stack deploy --detach=true --with-registry-auth -c $< $(SWARM_STACK_NAME)
@$(MAKE) .deploy-ops
else
# deploys ONLY $(target) service
Expand All @@ -367,7 +367,7 @@ endif
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)
@$(MAKE_C) services/dask-sidecar certificates
# Deploy stack $(SWARM_STACK_NAME)
@docker stack deploy --with-registry-auth -c $< $(SWARM_STACK_NAME)
@docker stack deploy --detach=true --with-registry-auth -c $< $(SWARM_STACK_NAME)
@$(MAKE) .deploy-ops
@$(_show_endpoints)

Expand Down

0 comments on commit 7d44591

Please sign in to comment.