Skip to content

Instantly share code, notes, and snippets.

View iamavnish's full-sized avatar

Avnish Gupta iamavnish

View GitHub Profile
# Namespace / Service
- A pod can access a service in its own namespace by just using service name.
A pod can access a service in a different namespace by using below format.
<svc-name>.<ns-name>.<svc>.<cluster.local>
e.g db-service.dev.svc.cluster.local
- When a service is created, a DNS entry is added automatically in this format:
db-service.dev.svc.cluster.local
Here db-service is service name, dev is namespace, svc represents service and cluster.local is domain.
@iamavnish
iamavnish / CKAD_Notes.txt
Last active January 30, 2025 05:48
CKAD Cheatsheet
# Good Links
http://www.yamllint.com/
https://youtu.be/02AA5JRFn5w
#########################################
minikube
#########################################
minikube start
minikube status
minikube stop
@iamavnish
iamavnish / links.md
Created May 20, 2020 01:54 — forked from g0t4/links.md
Starting Point Files for Jenkins2 Getting Started course
@iamavnish
iamavnish / solitaire-pipeline-starting-point.groovy
Last active May 12, 2020 01:35 — forked from g0t4/solitaire-pipeline-starting-point.groovy
Solitaire pipeline starting point for Pluralsight Jenkins course
stage 'CI'
node {
git branch: 'jenkins2-course',
url: 'https://github.com/g0t4/solitaire-systemjs-course'
// pull dependencies from npm
// on windows use: bat 'npm install'
sh 'npm install'