You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 9 Next »

목차

개요

사전조건

Git Clone

sansae@workspace-win10:/mnt/c/apps/myworks$ git clone https://github.com/Sanses/pinpoint-kubernetes.git
Cloning into 'pinpoint-kubernetes'...
remote: Enumerating objects: 145, done.
remote: Counting objects: 100% (145/145), done.
remote: Compressing objects: 100% (93/93), done.
remote: Total 145 (delta 76), reused 99 (delta 44), pack-reused 0
Receiving objects: 100% (145/145), 28.00 KiB | 1.87 MiB/s, done.
Resolving deltas: 100% (76/76), done.
sansae@workspace-win10:/mnt/c/apps/myworks$
sansae@workspace-win10:/mnt/c/apps/myworks$ cd pinpoint-kubernetes/
sansae@workspace-win10:/mnt/c/apps/myworks/pinpoint-kubernetes$ ls -al
total 12
drwxrwxrwx 1 sansae sansae  4096 Oct 14 13:33 .
drwxrwxrwx 1 sansae sansae  4096 Oct 14 13:33 ..
drwxrwxrwx 1 sansae sansae  4096 Oct 14 13:33 .git
-rwxrwxrwx 1 sansae sansae   169 Oct 14 13:33 .gitignore
-rwxrwxrwx 1 sansae sansae 11358 Oct 14 13:33 LICENSE
-rwxrwxrwx 1 sansae sansae    59 Oct 14 13:33 README.md
drwxrwxrwx 1 sansae sansae  4096 Oct 14 13:33 pinpoint

Add Repository for Dependency

> helm repo add gradiant https://gradiant.github.io/charts
> helm repo add incubator https://charts.helm.sh/incubator 
> helm repo add stable https://charts.helm.sh/stable

Deploy Pinpoint

> helm dependency update .
> kubectl create ns [Namespace]
> helm install [Release Name] . -n [Namespace]

Uninstall Pinpoint

> helm uninstall [Release Name] -n [Namespace]
> kubectl delete ns [Namespace]

  • No labels