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] 한영전..
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..
SLURM (리눅스 클러스터 - 작업 스케줄러)
·
System Engineering/DevOps
https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=&cad=rja&uact=8&ved=2ahUKEwid_5W6y-r3AhVPnFYBHUefDGMQFnoECAkQAQ&url=https%3A%2F%2Fdoheejin.github.io%2Flinux%2F2021%2F02%2F18%2Flinux-slurm.html&usg=AOvVaw1lnpAZeiApJG4aJarIIQa_ https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=&cad=rja&uact=8&ved=2ahUKEwid_5W6y-r3AhVPnFYBHUefDGMQFnoECAkQAQ&url=https%3A%2F%2Fdoheejin.githu..
measure-object의 값을 바로 가져오기
·
System Engineering/Powershell
https://stackoverflow.com/questions/26097224/how-to-select-a-value-of-measure-object-directly-powershell How to select a value of "measure-object" directly? (powershell) I am wondering about something. Not very important, but I am curious now... Let's say we have a array: PS C:\> $array 3 1129 1063 1139 1299 4446 1135 1096 1216 1075 And now we want to have the stackoverflow.com