Skip to content

Instantly share code, notes, and snippets.

View musfirotus's full-sized avatar
🎯
Focusing

Musfirotus Sa'adah musfirotus

🎯
Focusing
View GitHub Profile
@musfirotus
musfirotus / README.md
Created September 21, 2020 23:20 — forked from hofmannsven/README.md
Git Cheatsheet
@musfirotus
musfirotus / readme.md
Last active September 21, 2020 23:37 — forked from benstr/readme.md
Gist Markdown Cheatsheet

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5
Heading 6

Paragraph

@musfirotus
musfirotus / kubectl.md
Last active September 22, 2020 07:29
Instalasi Minikube, Kubectl, and Docker in linux

Kubectl dan Minikube

Instalasi dan Konfigurasi Kubectl


Download

Dengan curl on Linux

  • Download the latest version
curl -LO https://storage.googleapis.com/kubernetes-release/release/v1.19.0/bin/linux/amd64/kubectl
  • Supaya kubectl executable
@musfirotus
musfirotus / 01-general.md
Last active September 24, 2020 07:45
My Kubernetes Cheatsheet Part 1

Kubernetes Part 1


Reminder

Docker

  • Cek docker service sebelum menjalankan kubernetes :
     service docker status
  • Start docker jika terhenti :
@musfirotus
musfirotus / 01-Annotation.md
Last active September 24, 2020 10:09
My Kubernetes Cheatsheet Part 2

Kubernetes Part 2


Annotation

Annotation hampir sama dengan label

Bedanya, di annotation bisa menggunakan spasi

Tapi tidak bisa dilakukan filtering

Bisa sampai 256kb

@musfirotus
musfirotus / 01-replication-controller.md
Last active September 25, 2020 04:26
My Kubernetes Cheatsheet Part 3

Kubernetes Part 3


Replication Controller (sekarang tergantikan oleh "Replica set")

  • Contoh Membuat Replication Controller
     apiVersion: v1
     kind: ReplicationController
     metadata:
       name: nginx-rc

labels: