일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- c3 초
- gcc regex
- snmp
- centos pyhon 설치
- subporcess path
- c3 step graph
- python popen
- c3 축 없애기
- regex_search
- influxdb 설치
- semanage
- python os
- CentOS7
- InfluxDB
- c3 축 가리기
- 1697
- c++ 정규식
- gcc 업데이트
- 백준
- python subprocess
- 정규식 컴파일
- c3 second
- 정규식 활용
- g++ 업데이트
- selinux port 등록
- snmp test
- telegraf
- 정규식 문자열 출력
- linux시간으로 변경
- grafana dashboard
- Today
- Total
목록분류 전체보기 (560)
리셋 되지 말자
nginx service, deployment apiVersion: apps/v1 kind: Deployment metadata: name: my-nginx spec: selector: matchLabels: run: my-nginx replicas: 2 template: metadata: labels: run: my-nginx spec: containers: - name: my-nginx image: nginx ports: - containerPort: 80 --- apiVersion: v1 kind: Service metadata: name: my-nginx labels: run: my-nginx spec: ports: - port: 80 protocol: TCP selector: run: my-ng..
목적 github action runner를 Self-Hosted로 구성하면, 빌드캐시 활용 등 장점이 있다. 그런데 문제는 Runner가 한번에 무조건 하나의 Job만 수행한다. 그래서 Runner가 한 개 뿐인데, 특정 시간에 Workflow가 많이 수행되어 Job이 쌓이는 문제가 있다. (Workflow는 1개 이상의 Job으로 이루어져 있다.) 이러한 점을 고려하여 Self-Hosted Runner를 동적으로 스케일링 해주면 좋겠다는 생각을 했고, 이에 걸맞는 서비스로 AWS의 AutoScaling를 선택했다. 사실 AWS말고는 사용할줄 아는 클라우드 서비스가 없기에... 기존의 구성 방법 Kubernetes 환경에서는 Action Runner Controller를 이용하여 자동으로 스케일링 해주..
클러스터에 argocd 설치 namespace 생성 kubectl create namespace argocd argocd 설치 kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml port forwarding으로 접근 kubectl port-forward -n argocd svc/argocd-server 8080:443 초기 admin 계정 패스워드 확인 kubectl -n argocd get secret argocd-initial-admin-secret -o jsonpath="{.data.password}" | base64 -d 로그인 확인 깃허브 앱 준비 및 ar..
https://qiita.com/leechungkyu/items/9465d924747d0a170cd7 감사합니다.
레퍼런스 - https://gom20.tistory.com/202
레퍼런스 - https://kingofbackend.tistory.com/209 [K8S] EKS 클러스터 인증(authenfication) 및 권한(authorization) 설정하기 쿠버네티스 API 요청 과정 간단하게 API Server에 접근하기 까지 프로세스를 보면, 첫번째, 요청을 보냈을 때 인증(Authentication) 과정을 거친다. "너는 k8s cluster에 등록된 사용자가 맞는거지?" 두번째, kingofbackend.tistory.com - https://341123.tistory.com/m/10 [EKS] 현재 사용자 또는 역할이 이 EKS 클러스터에 있는 Kubernetes 객체에 액세스할 수 없습니다. 원인 ConfigMap aws-auth에 현재 사용자 또는 역할이 등록..
에러내용 $ git clone https://github.com/Something.git Cloning into 'Something'... fatal: unable to access 'Something.git/': error setting certificate verify locations: CAfile: C:/Git/mingw64/ssl/certs/ca-bundle.crt CApath: none 해결방법 git config --global http.sslverify "false"