Self-Hosted Deployments (Legacy)
Manage self-hosted deployments in Panther
Overview
Upgrades
Before you upgrade
export VERSION=<Minor Panther version you want to see patch versions for, e.g. 1.108>
# To print the latest patch version of a given minor version:
aws s3 ls s3://panther-community-us-east-1 --no-sign-request | grep "PRE v$VERSION" | awk -F"PRE v|/" '{print $2}' | sort -V | tail -1
# To print all patch versions of a given minor version:
aws s3 ls s3://panther-community-us-east-1 --no-sign-request | grep "PRE v$VERSION" | awk '{print $2}' | sort -t "." -k1,1n -k2,2n -k3,3n
# To print the latest patch version of each minor version
aws s3 ls s3://panther-community-us-east-1 --no-sign-request | \
grep "PRE v" | \
awk -F"PRE v|/" '{print $2}' | \
sort -V | \
awk -F. '{key=$1"."$2} prev!=key && NR>1{print last} {prev=key; last=$0} END{print last}'While you upgrade
Example
Trigger Pulumi CodeBuild
Reference
Naming the root stack
Configuring deployment parameters
Last updated
Was this helpful?

