Skip to content
Snippets Groups Projects
Commit e3615930 authored by Ole Langbehn's avatar Ole Langbehn
Browse files

Merge branch 'main' into production

parents 3cac0f07 22e2a194
No related branches found
Tags release/1.39.0
No related merge requests found
......@@ -15,7 +15,7 @@ variables:
.deploy:
image:
name: 'europe-north1-docker.pkg.dev/holi-shared/docker-hub-remote/hashicorp/terraform:1.6.6'
name: 'europe-north1-docker.pkg.dev/holi-shared/docker-hub-remote/hashicorp/terraform:1.9.8'
# default entrypoint is terraform command, but we want to run shell scripts
entrypoint: ['/bin/sh', '-c']
variables:
......@@ -74,7 +74,8 @@ build_docker:
needs: ['cache_lint_test']
image: 'europe-north1-docker.pkg.dev/holi-shared/docker-hub-remote/docker:27'
services:
- 'docker:27-dind'
- name: 'europe-north1-docker.pkg.dev/holi-shared/docker-hub-remote/docker:27-dind'
alias: 'docker'
variables:
# this could be fetched via terraform output ("gcr_location" in infra project), but then we would need an extra job for terraform
GCR_IMAGE: europe-north1-docker.pkg.dev/holi-shared/docker/holi-volunteering-api
......@@ -110,7 +111,7 @@ review_smoketest:
review_destroy:
needs: ['review_deploy']
image:
name: 'europe-north1-docker.pkg.dev/holi-shared/docker-hub-remote/hashicorp/terraform:1.6.6'
name: 'europe-north1-docker.pkg.dev/holi-shared/docker-hub-remote/hashicorp/terraform:1.9.8'
# default entrypoint is terraform command, but we want to run shell scripts
entrypoint: ['/bin/sh', '-c']
variables:
......
1.6.1
1.9.8
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":configMigration",
":label('renovatebot')",
":enableVulnerabilityAlertsWithLabel('renovatebot/security')",
":semanticCommits",
":automergePatch",
":automergeTesters",
":automergeLinters"
],
"packageRules": [
{
"matchSourceUrls": [
"https://github.com/hashicorp/terraform"
],
"groupName": "terraform"
}
]
}
......@@ -13,6 +13,6 @@ TAG=$2
TF_LOG_PATH=terraform-init.log terraform init
TF_LOG_PATH=terraform-version.log terraform version
TF_LOG_PATH=terraform-workspace.log terraform workspace new "$WORKSPACE" || terraform workspace select "$WORKSPACE"
TF_LOG_PATH=terraform-workspace.log terraform workspace select -or-create=true "$WORKSPACE"
TF_LOG_PATH=terraform-plan.log terraform plan -var="image_tag=$TAG" -out plan -no-color | tee tfplan.plain
TF_LOG_PATH=terraform-apply.log terraform apply -auto-approve -parallelism=50 plan
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment