Skip to content
Snippets Groups Projects
Commit eaee1a11 authored by Robert Marshall's avatar Robert Marshall
Browse files

Merge branch 'store-aws-ami-ids' into 'master'

Generate packer manifests and store them as artifacts

See merge request https://gitlab.com/gitlab-org/omnibus-gitlab/-/merge_requests/6535



Merged-by: default avatarRobert Marshall <rmarshall@gitlab.com>
Approved-by: default avatarDmytro Makovey <dmakovey@gitlab.com>
Approved-by: default avatarRobert Marshall <rmarshall@gitlab.com>
Co-authored-by: default avatarBalasankar "Balu" C <balasankar@gitlab.com>
parents 598168ca c0078360
No related branches found
No related tags found
2 merge requests!102heptapod#1237: making 0.38 the new oldstable,!88Merging upstream 15.7.0+ce.0
......@@ -40,3 +40,5 @@
coverage/
junit_rspec.xml
support/packer/manifests
......@@ -240,6 +240,9 @@
tags:
- docker-builder
cache: !reference [.tag-cache]
artifacts:
paths:
- support/packer/manifests
needs:
- Ubuntu-20.04
retry: 1
......
......@@ -125,4 +125,10 @@
script = "update-script-ce.sh"
}
post-processor "manifest" {
output = "manifests/ce-arm64-manifest.json"
custom_data = {
name: "${var.ami_prefix}GitLab CE ${var.version} (ARM64)"
}
}
}
......@@ -125,4 +125,10 @@
script = "update-script-ce.sh"
}
post-processor "manifest" {
output = "manifests/ce-manifest.json"
custom_data = {
name: "${var.ami_prefix}GitLab CE ${var.version}"
}
}
}
......@@ -122,4 +122,10 @@
script = "update-script-ee.sh"
}
post-processor "manifest" {
output = "manifests/ee-arm64-manifest.json"
custom_data = {
name: "${var.ami_prefix}GitLab EE ${var.version} (ARM64)"
}
}
}
......@@ -121,4 +121,10 @@
script = "update-script-ee-premium.sh"
}
post-processor "manifest" {
output = "manifests/ee-premium-manifest.json"
custom_data = {
name: "${var.ami_prefix}GitLab EE ${var.version} Premium"
}
}
}
......@@ -121,4 +121,10 @@
script = "update-script-ee-ultimate.sh"
}
post-processor "manifest" {
output = "manifests/ee-ultimate-manifest.json"
custom_data = {
name: "${var.ami_prefix}GitLab EE ${var.version} Ultimate"
}
}
}
......@@ -122,4 +122,10 @@
script = "update-script-ee.sh"
}
post-processor "manifest" {
output = "manifests/ee-manifest.json"
custom_data = {
name: "${var.ami_prefix}GitLab EE ${var.version}"
}
}
}
......@@ -13,4 +13,7 @@
cd $PACKER_PATH
# To store the post processor manifest file
mkdir -p manifests
packer build -var "aws_access_key=$AWS_AMI_ACCESS_KEY_ID" -var "aws_secret_key=$AWS_AMI_SECRET_ACCESS_KEY" -var "version=$VERSION" -var "download_url=$DOWNLOAD_URL" -var "license_file=$EE_LICENSE_FILE" $PACKER_PATH/$TYPE.pkr.hcl
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