728x90 분류 전체보기444 무료인증서 설치 yum install -y git git clone https://github.com/letsencrypt/letsencrypt https://blog.outsider.ne.kr/1178 2019. 1. 4. Kubernetes dns가 올바르게 동작 하지 않을 때 #busybox 설치kubectl create -f https://k8s.io/examples/admin/dns/busybox.yaml #busybox가 제대로 동작하는지 확인kubectl get pods busybox #dns가 정상 동작하는지 확인kubectl exec -ti busybox -- nslookup kubernetes.default #dns 문제가 발생하면 모든 노드(master and worker)에서 아래 명령어 실행iptables -F && iptables -t nat -F && iptables -t mangle -F && iptables -X #문제가 해결되지 않으면 아래 명령어 실행kubectl delete pod -n kube-system -l k8s-app=kube-dns #.. 2018. 12. 20. IOPS를 MB로 변환 IOPS 단위로 표기한 것은 일반적으로 4K 속도를 나타냄이것을 MB/s으로 변환 하려면 ipos * 4 / 1024 로 계산하면 된다. 예를 들어 92,000IOPS는 (92,000 x 4) / 1024 = 359.375 MB/s가 됩니다. 2018. 12. 20. c# csv 데이터에 콤마가 있는 경우 처리 방법 String Test = "SomeEmail@Email.com, FirstName, Last Name, \"Some words, words after comma\", More Stuffs"; // extract the fieldsRegex CSVParser = new Regex(",(?=(?:[^\"]*\"[^\"]*\")*(?![^\"]*\"))");String[] Fields = CSVParser.Split(Test); // clean up the fields (remove " and leading spaces)for (int i = 0; i < Fields.Length; i++){Fields[i] = Fields[i].TrimStart(' ', '"');Fields[i] = Fields[i].Tri.. 2018. 12. 19. 이전 1 ··· 92 93 94 95 96 97 98 ··· 111 다음 728x90