R&D 524

EKS internal NLB 사용하기

EKS 에서 Internal NLB로 Service를 구성하고 싶을 때 manifest apiVersion: v1 kind: Service metadata: annotations: service.beta.kubernetes.io/aws-load-balancer-type: nlb service.beta.kubernetes.io/aws-load-balancer-internal: "true" name: aws-internal-nlb labels: app: myapp spec: type: LoadBalancer ports: - name: "http" port: 80 targetPort: 80 selector: app: myapp 위와 같은 설정을 가지면 choonhoson# kubectl get service ..

R&D/클라우드 2021.03.17

influxdb + grafana 환경을 docker-compose로 만들기

influxdb 관련 - image: influxdb:latest - 마운트 volume: /var/lib/influxdb - expose port: 8086 (http) 8083 (admin interface) 참고: https://hub.docker.com/_/influxdb grafana 관련 - image: grafana/grafana:latest (5.1 이상) - 마운트 volume: /var/lib/grafana (file owner id: 472) - export port: 3000 (http) 종합 - grafana uid 이슈로 grafana volume 먼저 생성해야 함 . mkdir grafana . chown 472 grafana docker-compose.yml version: ..

R&D/클라우드 2019.06.11

Links

Keras https://blog.naver.com/sundooedu/221315683165 딥러닝(Deep Learning) 구현 라이브러리, 케라스(Keras) 딥러닝(Deep Learning) 라이브러리인 케라스(Keras)는 딥러닝 비전문가라도 각자 분야에서 손쉽게 딥러... blog.naver.com Reinforcement Learning https://blog.naver.com/PostList.nhn?blogId=horajjan&from=postList&categoryNo=81&parentCategoryNo=81 헤헤헤 : 네이버 블로그 The life is only once blog.naver.com 예제 코드 https://github.com/solaris33/deep-learning-t..

R&D/AI 2019.04.03

letsencrypt -> JKS

Letsencrypt로 생성한 certificate를 JAVA에서 인식하는 JKS로 변경하는 방법 전체 프로세스는PEM 파일 생성 -> PKCS12 형식으로 변경 -> JKS 생성 PEM 파일 생성letsencrypt-auto certonly --standalone --email -d cert.pem 과 private.pem 을 활용하여 PKCS12 파일 생성openssl pkcs12 -export -in cert.pem -inkey privkey.pem -out cert.p12 -name root JKS 생성keytool -importkeystore -srcstorepass [jks암호] -destkeystore 키스토어명.jks -srckeystore cert.p12 -srcstoretype PKCS..

R&D/클라우드 2019.03.18