Kubernetes Network 이론
·
System Engineering/Kubernetes
https://ikcoo.tistory.com/16?category=416817 08. Kubernetes Network (Ingress) Kubernetes Network ( Ingress ) Kubernetes Network 관련 글 이동 1. Kuberentes Network 이론 2. Kubernetes Network (ClusterIP, NodePort) 3. Kubernetes Network (LoadBalancer) 4. Kubernetes Network (Ingr.. ikcoo.tistory.com 이거 보고 공부!
맥북 한영전환 딜레이 해결하기
·
System Engineering
https://github.com/pqrs-org/Karabiner-Elements/issues/2025 Karabiner doesn't work after update to Catalina · Issue #2025 · pqrs-org/Karabiner-Elements After updating to Catalina I got this message: When I try to give this permissions I don't see the option to select karabiner_grabber: after that Karabiner doesn't work. (no tray element, n... github.com https://mangoooooo.tistory.com/12 [맥OS] 한영전..
VSCODE : Python could not be resolved from source Pylance 에러 (가상 환경 인터프리터 선택)
·
System Engineering/파이썬
VScode에서는 기본적으로 python 경로를 default로 잡고 있는데, 가상 환경을 만들어서 사용하다보니 python 경로를 제대로 잡지 못해서 발생하는 오류라고 한다. VS Code Ctrl+Shift+P python:select Interpreter -> 가상 환경의 파이썬 선택해주면 된다. https://incomeplus.tistory.com/187 Python could not be resolved Pylance from source 모듈 인식 안될때 해결방법 프로젝트를 처음 시작할 때, 필요한 모듈을 사용하기 위해서 가상 환경을 사용하게 된다. 필요한 모듈만 사용하고, 환경이 다른 곳에서도 정상 작동하기 위한 장치다. 문제는 가상환경을 설정하 incomeplus.tistory.com
DOIK 스터디 1주차 (Headless, Stateful)
·
System Engineering/Kubernetes
하... Azure만 다루다가 AWS를 다루니, EC2 instance에 접속도 못해서 혼났다.... ㅜㅜ Key Pair 문제였는데.... 왜 안되었는지 모르겠다. 근데 분명히 제대로 한 것 같은데... 며칠 후에 다시 하니까 됐다. 뭘까...
Kubernetes CI/CD 1/3
·
System Engineering/Kubernetes
Vagrantfile 새로 작성 # -*- mode: ruby -*- # vi: set ft=ruby : Vagrant.configure("2") do |config| #Jenkins config.vm.define "jenkins" do |config| config.vm.box = "ubuntu/focal64" config.vm.provider "virtualbox" do |vb| vb.name = "jenkins" vb.cpus = 2 vb.memory = 2048 end config.vm.hostname = "jenkins" config.vm.network "private_network", ip: "192.168.56.101", nic_type: "virtio" end #Tomcat config.vm..
os.popen()과 system.os()의 차이
·
System Engineering/파이썬
https://yys630.tistory.com/68 python os.popen() 시스템 명령어 실행결과 가져오기, python os.system() 안녕하세요. 오늘은 오랜만에 간단한 python 관련 포스팅을 해보려 합니다. linux 기반에서 ifconfig 또는 다른 명령어에 대한 결과를 python 모듈단에서 읽어올 때 유용합니다. os.popen os 모듈을 import 하 yys630.tistory.com 전자는 시스템 명령어의 실행값을 저장할 때, 후자는 단순히 시스템 명령어를 실행만 할 때.