Esri / arcgis-gitops

GitHub Actions workflows for ArcGIS Enterprise deployment and operation
Apache License 2.0
5 stars 1 forks source link

enterprise-k8s-aws-image workflow should filter images by version #75

Closed pbobov closed 3 months ago

pbobov commented 3 months ago

enterprise-k8s-aws-image workflow copies to ECR all images specified in a manifest file. The manifest files may contain images belonging to multiple versions of ArcGIS Enterprise on K8s. Copying unnecessary images increases the workflow run time.

copy-docker-hub-images.sh script should copy only images belonging to one ArcGIS Enterprise version.

cat 11.1.0.dat | jq -r '.versions[] | select(.version=="11.1.0") | .containers[].image' | sort | uniq
pbobov commented 3 months ago

enterprise-k8s-aws-image workflow now copies to ECR only images for specific ArcGIS Enterprise version.