fix: Update MOTD

This commit is contained in:
Stefan Reimer 2022-04-19 14:26:09 +00:00
parent c9973b7123
commit 45e95f9bef
2 changed files with 9 additions and 17 deletions

View File

@ -1,13 +1,13 @@
#!/bin/bash
#set -x
MY_ACCOUNT=$(aws sts get-caller-identity --output json | jq -r .Account)
for r in $(aws ec2 describe-regions --query "Regions[].{Name:RegionName}" --output text); do
keyAlias="arn:aws:kms:${r}:${MY_ACCOUNT}:alias/zdt/amis"
keyArn=$(aws kms describe-key --region $r --key-id $keyAlias --output json 2>/dev/null | jq -r '.KeyMetadata.Arn')
keyAlias="arn:aws:kms:${r}:533404190593:alias/zdt/amis"
keyArn=$(aws kms describe-key --region $r --key-id $keyAlias --output json 2>/dev/null | jq -r '.KeyMetadata.Arn')
if [ -n "$keyArn" ]; then
aws kms list-grants --region $r --key-id $keyArn --output json | jq '.Grants[]'
if [ -n "$keyArn" ]; then
aws kms list-grants --region $r --key-id $keyArn --output json | jq '.Grants[]'
fi
done

View File

@ -1,11 +1,11 @@
# vim: ts=2 et:
project = zdt-alpine
kubeversion = 1.21
# all build configs start with these
Default {
project = ${project}
kubeversion = 1.22
# image name/description components
encryption_key_id = null
@ -13,15 +13,10 @@ Default {
description = [ "ZeroDownTime Alpine Images" ]
motd {
welcome = "Welcome to Alpine!"
wiki = "The Alpine Wiki contains a large amount of how-to guides and general\n"\
"information about administrating Alpine systems.\n"\
"See <https://wiki.alpinelinux.org/>."
welcome = "Welcome to Alpine - ZeroDownTime edition"
version_notes = "Release Notes:\n"\
"* <https://alpinelinux.org/posts/alpine-{version}.0/released.html>"
release_notes = "* <https://alpinelinux.org/posts/{release}/released.html"
"* <https://kubezero.com/releases/v{kubeversion}/README.md>"
release_notes = "* <https://alpinelinux.org/releases/>"
}
# initial provisioning script and data directory
@ -80,9 +75,6 @@ Mandatory {
name = [ "r{revision}" ]
encryption_key_id = "alias/zdt/amis"
# final motd message
motd.motd_change = "You may change this message by editing /etc/motd."
# final provisioning script
scripts = [ cleanup ]