SRE book by Google (SRE에 대한 구글의 생각, 읽어볼 것)
·
System Engineering/SRE
https://sre.google/sre-book/foreword/ Google - Site Reliability Engineering Foreword Google's story is a story of scaling up. It is one of the great success stories of the computing industry, marking a shift towards IT-centric business. Google was one of the first companies to define what business-IT alignment meant in practice, a sre.google
SRE #3-SRE의 주요 지표 SLI/SLO (Service Level Indicator, Service Level Objective)
·
System Engineering/SRE
https://bcho.tistory.com/m/1328 SRE #3-SRE의 주요 지표 SLI/SLO (Service Level Indicatior, Service Level Objectives) SRE #3-SRE 주요 지표 (SLI/SLO) 조대협 (http://bcho.tistory.com) 이글은 앞글 (https://bcho.tistory.com/1327)과 연결 됩니다. 앞에 까지 SRE가 무엇이고, SRE가 하는일은 무엇이며, 어떻게 그 일을 수행 하.. bcho.tistory.com 정말 잘 설명해주신 글이 있어서 링크 달았다. SRE에 대한 구글의 관점을 번역해주셨다.
containerPort는 방화벽이 아니다. (Rather, optional/informational)
·
System Engineering/Kubernetes
강사님이 containerPort는 방화벽의 역할이 아니고 listening port를 보여주는 역할이라고 하셔서 먼 소리지? 했다. 그래서 좀 더 자세하게 알아봤다. 우선 선배님들 카톡방에다가 질문을 투척했음 In a nutshell: targetPort and containerPort basically refer to the same port (so if both are used they are expected to have the same value) but they are used in two different contexts and have entirely different purposes. They cannot be used interchangeably as both are part of th..
kubernetes 9/17
·
System Engineering/Kubernetes
설규환 강사님 kyuhwan2015@gmail.com 레이블 - 레이블은 개체의 식별에 사용 - 컨트롤러, 서비스 등에서 selector를 사용하여 대상을 지정함 - 기타 대상을 특정할 경우 -l 옵션과 selector를 사용하여 대상 지정 ex) kubectl get pod -l app=test 특수한 접두사가 붙은 레이블 - 사용자가 개체를 식별하기 위하여 붙인 레이블이 아닌, 쿠버네티스 클러스터에서 개체를 식별하기 위하여 부여한 레이블 - 일반적으로 사용자가 생성한 기본 리소스(파드, 컨트롤러, 서비스 등) 에는 존재하지 않음 $ kubectl get svc --namespace kube-system kube-dns -o yaml | less ... labels: k8s-app: kube-dns k..
지역 환경변수, 전역 환경변수
·
System Engineering/리눅스, 라즈베리파이
https://sosobaba.tistory.com/279 리눅스 환경변수 등록하기(환경변수 영구 등록) 안녕하세요 마블랑입니다. 이번 포스팅은 터미널 창에서 리눅스 Ubuntu(우분투)의 환경변수를 등록하는 방법에 대해서 소개하겠습니다. 먼저 현재 리눅스에 등록된 전체 환경변수를 보려면 터미 sosobaba.tistory.com 쉘에다가 abc="abc" 이건 지역 환경 변수래 ㅋㅋ
리눅스 환경 변수 설정
·
System Engineering/리눅스, 라즈베리파이
https://www.leafcats.com/201 리눅스 환경변수 설정 및 해제하기 리눅스 bash 쉘에서 환경변수를 설정하고 해제하는 방법에 대한 정리이다. 1. 환경변수 임시 적용(export) $ export 환경변수명=값 예를들어 TOMCAT_HOME이라는 환경변수를 /usr/lib/tomcat/tomcat1.8/ 로 지정하. www.leafcats.com 리눅스 bash 쉘에서 환경변수를 설정하고 해제하는 방법에 대한 정리이다. 1. 환경변수 임시 적용(export) $ export 환경변수명=값 예를들어 TOMCAT_HOME이라는 환경변수를 /usr/lib/tomcat/tomcat1.8/ 로 지정하려면, export TOMCAT_HOME=/usr/lib/tomcat/tomcat1.8/ 을 터..