Skip to content

Instantly share code, notes, and snippets.

@priyaraghu
priyaraghu / kubernetesapi-browse.md
Created June 30, 2020 23:46
Kuberenetes API Documentation - Better readability strategy

I was finding it extremely difficult to read all the spec for the kuberenetes objects like deployments

the api documentation in kubernetes site is very difficult to understand kubernetes object yaml specification a full spec for a kuberenetes object is not available in one place and the documentation has nested references

I figured out a neat way to extract the complete specification of a kubernetes object

I created a public repository of the api documentation in swaggerhub to browse the kubernetes api

@priyaraghu
priyaraghu / azure-mindmaps
Created June 27, 2020 00:50
important azure mindmaps
the following mindmaps will help in understanding the breadth of azure footprint and various services in azure
https://stephaneeyskens.files.wordpress.com/2019/12/solutionmap.png
https://techcommunity.microsoft.com/t5/azure-developer-community-blog/the-azure-solution-architect-map/ba-p/689700
https://coggle.it/diagram/XIZ9MjZvjHdONqWF/t/event-driven-architecture/7fbbe84e292619577c40695c573edbf14fcc287adc18c80e52d2324044929849
https://stephaneeyskens.files.wordpress.com/2019/12/securitymap.png
@priyaraghu
priyaraghu / azure_powershell_tricks
Created June 27, 2020 00:23
Azure Powershell basics
powershell is case insensitive
powershell is very powerful and has an exhaustive list of commands
powershell has cmdlets, scripts, functions etc but let's focus on cmdlets only
A module is a package that contains PowerShell commands, such as cmdlets,
providers, functions, workflows, variables, and aliases.
there are 3 fundamentals to azure powershell commands
@priyaraghu
priyaraghu / azure architecture diagrams - 3D Isomorphic Diagrams
Created June 26, 2020 21:10
Azure Architecture Diagram Tools and Icon Sets , 3D icon sets
Source of the below links - https://www.cloud-architekt.net/document-and-visualize-your-azure-environment/
cloudskew - new tool
https://www.cloudskew.com/docs/samples.html#azure
Shapes and icon sets
Azure Design Visio VSSX
David Summers started an “Azure Icon Design project” to collect icons in Visio format (VSSX). You’ll find the icon set from his GitHub repo:
https://github.com/David-Summers/Azure-Design
@priyaraghu
priyaraghu / azure-cli cheatsheet
Last active June 27, 2020 00:26 — forked from frntn/gist:f25726df962fc29c6dde
azure-cli cheatsheet
the easiest way to use azure cli is through the interactive mode
command is "az interactive". you can trigger this from the powershell command prompt also
azure
account
list [options] #List the imported subscriptions
show [options] [subscriptionNameOrId] #Show details about a subscription
set [options] <subscriptionNameOrId> #Set the current subscription
how to compile go code
go run filename
go build filename - there are other switches to generate code specific to system architecture and location
for the generated executable
go install
go module