ConfigMap kubectl create configmap app-config --from-literal=APP_COLOR=blue --from-literal 옵션 뒤에는 =형태로 변수 넘겨줌 --from-file 옵션으로 외부의 file 참조하여 생성 가능 Pod(deployment)definition 의 spec.containers.envFrom.configMapRef 에 configmap 명 넣어주면 configMap의 data가 pod의 env variable로 추가됨 Secrets 민감 정보를 저장하기 위한 component 저장시 암호화되어 저장됨 kubectl create secret generic app-secret --from-literal=APP_COLOR=blue --from-li..