This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# All VMs | |
sudo dnf -y install @container-tools:3.0 | |
# Master only | |
curl -sSLf https://get.k0s.sh | sudo sh | |
sudo ln -s /usr/local/bin/k0s /usr/bin/k0s | |
sudo curl -Lo /usr/bin/kubectl \ | |
"https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl" | |
sudo chmod a+x /usr/bin/kubectl |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AWSTemplateFormatVersion: 2010-09-09 | |
Parameters: | |
LoggingBucket: | |
Description: The name of the S3 bucket that contains your AWS logs | |
Type: String | |
Resources: | |
GlueDatabase: | |
Type: AWS::Glue::Database |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Parameters: | |
CanaryName: | |
Type: String | |
Default: my-canary | |
MaxLength: 21 | |
Resources: | |
CloudWatchSyntheticsRole: | |
Type: AWS::IAM::Role | |
Properties: |