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
###### Docker Install ###### | |
sudo apt-get update | |
sudo apt-get install \ | |
apt-transport-https \ | |
ca-certificates \ | |
curl \ | |
gnupg-agent \ | |
software-properties-common |
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
sudo -i | |
yum groupinstall -y "development tools" | |
yum install -y \ | |
libffi-devel \ | |
zlib-devel \ | |
bzip2-devel \ | |
openssl-devel \ | |
ncurses-devel \ | |
sqlite-devel \ | |
readline-devel \ |
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
1. Switch to root account | |
2. Navigate to /tmp | |
3. Download source by Running: wget https://dl.google.com/go/go1.12.7.linux-amd64.tar.gz | |
4. Extract files to /usr/local (update version number if needed) tar -C /usr/local -xzf go1.12.7.linux-amd64.tar.gz | |
5. edit /etc/.profile and add export PATH=$PATH:/usr/local/go/bin | |
6. source /etc/.profile |
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
// Variable Definition | |
variable "aws_region" {} | |
variable "aws_vpc_cidr_block" {} | |
variable "aws_subnet_cidr_block" {} | |
variable "aws_private_ip_fe" {} | |
variable "aws_Name" {} | |
variable "aws_Application" {} | |
variable "aws_ami" {} | |
variable "aws_instance_type" {} |
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
aws ec2 describe-network-interfaces --filters Name=vpc-id,Values=vpc-12345 --query "NetworkInterfaces[*].[NetworkInterfaceId,Description,VpcId,PrivateIpAddress]" --output table | |
Ref: https://aws.amazon.com/premiumsupport/knowledge-center/vpc-detach-or-delete-eni/ |
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
import * as k8s from "@pulumi/kubernetes"; | |
import * as kx from "@pulumi/kubernetesx"; | |
const clusterSvcsNamespace = new k8s.core.v1.Namespace("pulumi",undefined, undefined) | |
export const clusterSvcsNamespaceName = clusterSvcsNamespace.metadata.name; | |
const appLabels = { app: "nginx" }; | |
const deployment = new k8s.apps.v1.Deployment("nginx", { | |
metadata: {namespace: clusterSvcsNamespaceName}, | |
spec: { |
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
Host * | |
StrictHostKeyChecking no | |
UserKnownHostsFile=/dev/null |
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
sudo amazon-linux-extras install java-openjdk11 |
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
#! /bin/bash | |
eval $(aws ecr get-login --no-include-email --region ap-southeast-1 --registry-ids $1) |
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
from pulumi import export | |
import pulumi_alicloud as alicloud | |
vpc = alicloud.vpc.Network( "web_dev_vpc", | |
vpc_name="alicloud_webdev_vpc", | |
description="Webdev VPC created with Pulumi", | |
cidr_block="192.168.0.0/16", | |
tags={ | |
"created-with":"pulumi", | |
"created-by":"ankit", |