본문 바로가기
728x90

IT Tech/Cloud Native65

시큐리티 컨텍스트 (Security Context) 1. 개념 : 컨테이너에 대한 권한, 접근제어, 환경설정 기능 기원 2. 사례: Pod에 SecurityContext를 설정하여 모든 컨테이너에서 권한상승 제한 apiVersion: v1 kind: Pod metadata: name: security-context-demo spec: securityContext: runAsUser: 1000 runAsGroup: 3000 fsGroup: 2000 volumes: - name: sec-ctx-vol emptyDir: {} containers: - name: sec-ctx-demo image: busybox:1.28 command: [ "sh", "-c", "sleep 1h" ] volumeMounts: - name: sec-ctx-vol mountPath:.. 2023. 1. 13.
Future of Linux Container https://youtu.be/wW9CAH9nSLs 2022. 12. 27.
POD (Publish On Demand) 맞춤형 소량 출판(Publish On Demand)은 주문형 소량 출판을 의미하며 ‘그레이의 50가지 그림자’가 이 방식으로 출판된 것으로 유명하다. https://ko.wikipedia.org/wiki/%EB%A7%9E%EC%B6%A4%ED%98%95_%EC%86%8C%EB%9F%89_%EC%B6%9C%ED%8C%90 맞춤형 소량 출판 - 위키백과, 우리 모두의 백과사전 위키백과, 우리 모두의 백과사전. 맞춤형 소량 출판(POD, Publish On Demand, 이하 POD로 표기)은 미리 종이책을 찍지 않고, 주문이 들어올 때마다 레이저 프린터 등으로 종이책을 인쇄하는 방식이다. 주 ko.wikipedia.org 2022. 9. 16.
[CKA] Volume # Volume Drivers - Local - Azure File Storage - Convoy - GlusterFS 등 # Persistent Volume # Persistent Volume Claim # 참고 https://kubernetes.io/docs/concepts/storage/persistent-volumes/#claims-as-volumes Persistent Volumes This document describes persistent volumes in Kubernetes. Familiarity with volumes is suggested. Introduction Managing storage is a distinct problem from managing compute instan.. 2022. 3. 17.
[CKA] Storage # Storage Drivers - AUFS - ZFS - BTRFS - Device Mapper - Overlay - Overlay2 # CSI(Container Storage Interface) 2022. 3. 17.
반응형