Skip to content

Instantly share code, notes, and snippets.

View code4clouds's full-sized avatar

Julio Colon code4clouds

View GitHub Profile
@PatrickLang
PatrickLang / README.md
Last active December 28, 2018 17:45
Playing with Virtual Kubelet and AKS

This is my attempt to capture steps needed to deploy:

  1. Azure Container Service (AKS) - currently only supporting Linux
  2. Virtual-Kubelet - to create a Windows "node"
  3. Azure Open Service Broker - make it easy to create Azure SQL databases and other services
  4. Helm to deploy a Windows app with web app in container, backend in Azure SQL

Prerequisites

@weijuans-msft
weijuans-msft / FeaturesRemovedFromServerCoreContainer
Last active February 10, 2021 06:47
Features Removed from Windows Server Core Container base image starting with Insider Build 17074 (For Windows Server v1803 release)
Mar 12, 2018 update: due to issues found internally, we added back 2 features:
Printing-Client
Windows-Defender-Features
-------
In the recent blog we shared that we removed a number of features to further reduce the size of the Windows Server Core container base image.
https://techcommunity.microsoft.com/t5/containers/a-smaller-windows-server-core-container-with-better-application/ba-p/382412.
Below is that list of features we removed. Let us know if you have any concern or share your feedback with us how this has worked for you. Thanks.
@tsaarni
tsaarni / README.md
Last active May 8, 2024 11:42
How to connect to Azure AKS Kubernetes node VM by SSH

How to connect to Azure AKS Kubernetes worker node by SSH

Nodes are not assigned public IP. If you have accessible VM in the same VNET as worker nodes, then you can use that VM as jump host and connect the worker via private IP.

Alternatively public IP can be assigned to a worker node. This readme shows how to do that.

Steps how to attach public IP to a worker node

find out the resource group that AKS created for the node VMs

@brusMX
brusMX / create-managed-1-7-k8s-cluster.sh
Last active September 14, 2017 16:43
These are a set of instructions to deploy a Kubernetes cluster to Azure with ACS-Engine. K8s v 1.7 and managed disks
#!/bin/bash
# NOT A SCRIPT
# Commands to deploy Kubernetes cluster with k8s 1.7 and managed disks
# Author: Bruno Medina (@brusmx)
# Requirements:
# - Azure Cli 2.0 (Using 2.0.16)
# - jq (Using 1.5)
# - acs-engine (using release acs-engine-v0.6.0-darwin-amd64 | MD5 checksum(acs-engine-v0.6.0-darwin-amd64/acs-engine) = b124d5ca90dcf5bdd0d9da5699ba776b )
# - managed-disks-cluster.json most be at the same level of this
@MohamedAlaa
MohamedAlaa / tmux-cheatsheet.markdown
Last active March 23, 2026 00:03
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@simme
simme / Install_tmux
Created October 19, 2011 07:55
Install and configure tmux on Mac OS X
# First install tmux
brew install tmux
# For mouse support (for switching panes and windows)
# Only needed if you are using Terminal.app (iTerm has mouse support)
Install http://www.culater.net/software/SIMBL/SIMBL.php
Then install https://bitheap.org/mouseterm/
# More on mouse support http://floriancrouzat.net/2010/07/run-tmux-with-mouse-support-in-mac-os-x-terminal-app/