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

Deploy OC v1.1.2 to prod #81

Merged
merged 30 commits into from
Dec 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
734fc9d
[pre-commit.ci] pre-commit autoupdate (#48)
pre-commit-ci[bot] Sep 24, 2024
2f1d1b5
[IT-3918] Fix the image URLs returned by the image service (#51)
tschaffter Sep 26, 2024
63303d1
[pre-commit.ci] pre-commit autoupdate (#52)
pre-commit-ci[bot] Sep 30, 2024
81459a4
[pre-commit.ci] pre-commit autoupdate (#53)
pre-commit-ci[bot] Oct 7, 2024
e427651
Parametrize stack version and update app config (#54)
tschaffter Oct 11, 2024
e1e23ea
Increase GH workflow timeout (#55)
zaro0508 Oct 14, 2024
a29c10f
Update stage environment (#57)
tschaffter Oct 15, 2024
757f4b4
[pre-commit.ci] pre-commit autoupdate (#56)
pre-commit-ci[bot] Oct 16, 2024
95e10f5
[pre-commit.ci] pre-commit autoupdate (#59)
pre-commit-ci[bot] Oct 22, 2024
9ce15a3
[pre-commit.ci] pre-commit autoupdate (#60)
pre-commit-ci[bot] Oct 30, 2024
dd6af19
Set concurrency to 5 (best results) (#61)
tschaffter Oct 31, 2024
156e6c7
[pre-commit.ci] pre-commit autoupdate (#62)
pre-commit-ci[bot] Nov 11, 2024
652ba4c
update image tag, app version and data release date (#63)
tschaffter Nov 13, 2024
4d28a55
[pre-commit.ci] pre-commit autoupdate (#66)
pre-commit-ci[bot] Nov 19, 2024
a3ead0c
Refactor mounting volumes (#67)
zaro0508 Nov 19, 2024
23dd10c
[IT-4003] Auto-update pre-commit hook versions monthly
ConsoleCatzirl Nov 21, 2024
297c078
Merge pull request #68 from ConsoleCatzirl/it-4003
ConsoleCatzirl Nov 21, 2024
e622e7b
Update to OC v1.1.1 (#69)
tschaffter Nov 27, 2024
1d9e130
[pre-commit.ci] pre-commit autoupdate (#70)
pre-commit-ci[bot] Dec 3, 2024
9965cd4
[IT-3951] Fix guardduty container (#71)
zaro0508 Dec 3, 2024
d70c9a6
remove source.bat (#74)
tschaffter Dec 4, 2024
26fb4b6
Add Docker in Docker to the dev container (#73)
tschaffter Dec 4, 2024
25c5008
Add AWS Lambda for upcoming data integration (ARCH-356) (#72)
tschaffter Dec 6, 2024
2620287
Externalize the description of the schedule (#75)
tschaffter Dec 7, 2024
be639e2
Merge dev to stage (#76)
tschaffter Dec 10, 2024
e8d67ee
update dev (#78)
tschaffter Dec 12, 2024
de68806
Increase role duration to 90 minutes (#79)
tschaffter Dec 12, 2024
0b831c1
Merge dev into stage
tschaffter Dec 12, 2024
adc4f86
Merge pull request #80 from tschaffter/dev-to-stage
tschaffter Dec 12, 2024
484e1af
Merge stage into prod
tschaffter Dec 13, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/aws-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ on:
type: string
role-duration-seconds:
type: number
default: 3600
default: 5400
environment:
required: true
type: string
Expand Down
4 changes: 2 additions & 2 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# get the environment
environment = utils.get_environment()
stack_name_prefix = f"openchallenges-{environment}"
image_version = "1.1.1"
image_version = "1.1.2"

# get VARS from cdk.json
env_vars = app.node.try_get_context(environment)
Expand Down Expand Up @@ -308,7 +308,7 @@
"API_DOCS_URL": f"https://{fully_qualified_domain_name}/api-docs",
"APP_VERSION": image_version,
"CSR_API_URL": f"https://{fully_qualified_domain_name}/api/v1",
"DATA_UPDATED_ON": "2024-12-10",
"DATA_UPDATED_ON": "2024-12-12",
"ENVIRONMENT": "production",
"GOOGLE_TAG_MANAGER_ID": "GTM-NBR5XD8C",
"SSR_API_URL": "http://openchallenges-api-gateway:8082/api/v1",
Expand Down
Loading