'전체 글'에 해당되는 글 24건

  1. 2020.05.18 bash Prompt 설정
  2. 2020.04.21 install tekton on minikube
  3. 2020.04.20 ubuntu user 생성

bash Prompt 설정

etc 2020. 5. 18. 21:27

# user의 홈 디렉토리 .bash_profile 수정

 

export PATH="/usr/local/bin:$PATH"
# colors
GREEN='\e[0;32m\]'
B_GREEN='\e[1;32m\]'
MAGENTA='\e[0;35m\]'
B_MAGENTA='\e[1;35m\]'
YELLOW='\e[0;33m\]'
B_YELLOW='\e[1;33m\]'
RED='\e[0;31m'
BLUE='\e[0;34m'
B_BLUE='\e[1;34m'
CYAN='\e[0;36m\]'
COLOR_END='\[\033[0m\]'


#export PS1="${BLUE}\u: ${GREEN}\w ${COLOR_END}\ $ "
export PS1="${GREEN}\u ${B_BLUE}\w ${COLOR_END}\$ "

'etc' 카테고리의 다른 글

ssh key로 서버 접속  (0) 2020.05.18
ubuntu user 생성  (0) 2020.04.20
git command  (0) 2020.03.16
ansible로 ubuntu user 생성  (0) 2020.02.19
Posted by jerymy
,

 

# tekton 설치

$ kubectl apply --filename https://storage.googleapis.com/tekton-releases/pipeline/latest/release.yaml

 

# tekton dashboard 설치

$ kubectl apply --filename https://github.com/tektoncd/dashboard/releases/download/v0.6.0/tekton-dashboard-release.yaml

# tekton 설치 확인

# 외부 접근을 위해 tekton ingress 생성

$ kubectl apply -f ing-tekton.yaml

# ing-tekton.yaml, <VM_IP>는 본인의 IP로 변경 필요.

apiVersion: extensions/v1beta1
kind: Ingress
metadata:
  name: tekton-dashboard
  namespace: tekton-pipelines
spec:
  rules:
  - host: tekton-dashboard.<VM_IP>.nip.io
    http:
      paths:
      - backend:
          serviceName: tekton-dashboard
          servicePort: 9097

ingress 적용하면

http://tekton-dashboard.<VM_IP>.nip.io 로 dashboard 접근 가능

 

# tekton cli 설치

# Get the tar.xz
curl -LO https://github.com/tektoncd/cli/releases/download/v0.8.0/tkn_0.8.0_Linux_x86_64.tar.gz

# Extract tkn to your PATH (e.g. /usr/local/bin)
sudo tar xvzf tkn_0.8.0_Linux_x86_64.tar.gz -C /usr/local/bin/ tkn

 

# tekton cli 설치확인

$ tkn version

 

 

참고사이트

https://github.com/tektoncd/pipeline/blob/master/docs/install.md#installing-tekton-pipelines-on-kubernetes

 

tektoncd/pipeline

A K8s-native Pipeline resource. Contribute to tektoncd/pipeline development by creating an account on GitHub.

github.com

 

'Open Source' 카테고리의 다른 글

Keycloak(User Federation) - LDAP 연계  (0) 2020.06.08
LDAP install on minikube  (0) 2020.06.08
Keycloak install on minikube  (0) 2020.06.08
Presto db 접근 방법  (0) 2020.03.31
mongodb 로그인, 조회 명령  (0) 2020.03.13
Posted by jerymy
,

ubuntu user 생성

etc 2020. 4. 20. 11:06

ubuntu에 user01 계정 생성

 

# user01 계정 생성

$ adduser user01

# password 2번 입력하고, 추가 정보는 엔터만 치면됨. 마지막에 Y 입력

 

# sudo 추가

$ usermod -aG sudo user01

 

# user01을 docker 실행 그룹에 추가

$ usermod -aG docker user01

 

'etc' 카테고리의 다른 글

ssh key로 서버 접속  (0) 2020.05.18
bash Prompt 설정  (0) 2020.05.18
git command  (0) 2020.03.16
ansible로 ubuntu user 생성  (0) 2020.02.19
Posted by jerymy
,