Skip to content

Instantly share code, notes, and snippets.

View liangjun-jiang's full-sized avatar

Liangjun Jiang liangjun-jiang

  • Austin, Texas
View GitHub Profile
@liangjun-jiang
liangjun-jiang / gist:8efbffc46e3f7df196d80518dc093333
Created January 14, 2020 04:13
Build Enterprise Web App with Azure Reading List
Compare self-managed Active Directory Domain Services, Azure Active Directory, and managed Azure Active Directory Domain Services
https://docs.microsoft.com/en-us/azure/active-directory-domain-services/compare-identity-solutions
Azure Active Directory Pass-through Authentication: Quick start
https://docs.microsoft.com/en-us/azure/active-directory/hybrid/how-to-connect-pta-quick-start
Azure Blob storage documentation
https://docs.microsoft.com/en-us/azure/storage/blobs/
@liangjun-jiang
liangjun-jiang / aks-acr-deployment-guide.md
Last active May 29, 2019 16:46
AKS and ACR Deployment Guide

Background

Azure Kubernetes Service (AKS) is a great way to deploy this your-app application. This document describe the process to deploy this app to AKS. It also means to be a basic tutorial.

Resources Preparation

Before we get started, we assume the Azure CLI & kubectl has been installed locally. If you have not installed kubectl, Azure CLI can help you

az aks install-cli
@liangjun-jiang
liangjun-jiang / gist:075e0e94b4803042b4b877b5ca4fb76b
Created March 9, 2019 11:39
Azure Function using http.request
/*
an example that use node.js http module to make a post request.
*/
var http = require('http');
module.exports = function (context, req) {
context.log('JavaScript HTTP trigger function processed a request.');
var options = {
host: 'www.mocky.io',
port: '80',
path: '/v2/5c839741300000ca0b6b0c96',