This file contains 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
#!/bin/bash | |
sudo apt-get install gcc -y | |
sudo apt-get install libssl-dev -y | |
sudo apt-get install zlib1g-dev -y | |
sudo apt-get install autoconf -y | |
wget https://mirror.freedif.org/pub/OpenBSD/OpenSSH/portable/openssh-9.8p1.tar.gz | |
tar zxvf openssh-9.8p1.tar.gz | |
cd openssh-9.8p1 && ./configure && make && sudo make install |
This file contains 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
FROM alpine:3.9 | |
MAINTAINER Runcy Oommen | |
COPY hny.txt . | |
CMD ["cat", "hny.txt"] |
This file contains 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
#!/bin/bash | |
sudo yum install gcc -y | |
sudo yum install openssl-devel -y | |
sudo yum install zlib-devel -y | |
sudo yum install mlocate -y | |
sudo yum install autoconf -y | |
wget https://cdn.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-9.1p1.tar.gz | |
tar zxvf openssh-9.1p1.tar.gz | |
cd openssh-9.1p1 && ./configure && make && sudo make install |
This file contains 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
************************************************ | |
* Slides from AWS Community Day Bangalore 2018 * | |
************************************************ | |
1. "Scaling hotstar.com for 10 million concurrent viewers", Gaurav Kambhoj, Hotstar - https://www.slideshare.net/AWSUsersGroupBengalu/scaling-hotstarcom-for-10-million-concurrent-viewers | |
2. "Advanced serverless application architecture and design considerations", Dilip Kola, Tensult - https://www.slideshare.net/AWSUsersGroupBengalu/advanced-serverless-application-architecture-and-design-considerations-118586320 | |
3. "AWS serverless infrastructure - Integration testing", Santhosh Marimuthu, Advanced Engineer, Altran - https://www.slideshare.net/AWSUsersGroupBengalu/aws-serverless-infrastructure-integration-testing | |
4. "Lessons learnt in CI/CD with AWS serverless architecture", Sriguru V, Altran Engineering Solutions - https://www.slideshare.net/AWSUsersGroupBengalu/lessons-learnt-in-cicd-with-aws-serverless-architecture-119624226 | |
5. "Cost optimized logging using API Ga |
This file contains 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
********************** | |
*** Pre-requisites *** | |
********************** | |
1. Set up Windows 2016 password: | |
gcloud beta compute --project <project_id> reset-windows-password <instance_name> --zone <zone_name> | |
ip_address: <ip_address> | |
password: <defult_password_generated> | |
username: <username> | |
3. Installing Docker: |