Skip to main content Link Menu Expand (external link) Document Search Copy Copied

created at 2024-11-02

Table of contents

  • 개인정보 보호법 시행령
  • 제15조의3(개인정보 이용ㆍ제공 내역의 통지)
  • 배치에러 too many missed start times. Set or decrease .spec.startingDeadlineSeconds or check clock skew
    • 배치 Job 을 cronJob 으로 돌리다가 위와 같은 에러가 발생. 이게 예약된 시간에 Job 이 실행되지 않아서 발생한 에러.
  • K8S

Reclaim Policy 는 PersistentVolume 을 삭제할 때 어떻게 할 지 정하는 정책.

  • Retain : 삭제해도 PV 은 삭제되지 않고 남아있음.
  • Recycle : 삭제하면 PV 을 삭제하고 디렉토리를 비움.
  • Delete : 삭제하면 PV 을 삭제하고 디렉토리도 삭제함.

AWS EFS 에 PVC 마운트 할려는데 DNS resolusion 에러 발생. efs-helper 로 region 찾는데 이게 잘못 설정되어있어서 발생하는 문제인듯?

reference : https://repost.aws/questions/QUvJFK8DpaQH631PQH8kfUGw/cannot-get-a-vpc-peered-efs-accesspoint-to-mount

OK, 100% the issue is that the EFS mount helper doesn’t know the right region. When I update efs-utils.conf

다시 체크해봤는데 VPC 가 다른 곳으로 설정되어 있었음. 그래서 DNS resolution 이 되지 않았던 거임. EFS 가 VPC 내부에서만 접근 가능한데, 다른 VPC 에서 접근하려면 VPC Peering 이 필요함.

ghkdqhrbals ~ % nslookup fs-....efs.ap-northeast-2.amazonaws.com
...

** server can't find fs-....efs.ap-northeast-2.amazonaws.com: NXDOMAIN

ghkdqhrbals ~ % nslookup fs-....efs.ap-northeast-2.amazonaws.com 
...

Non-authoritative answer:
Name:	fs-....efs.ap-northeast-2.amazonaws.com
  • grafana persistence=true 시 admin password renew X. 옛날 admin password 가 남아있음.

    You have persistence enabled, so old/previous admin password is there. Disable persistence, so you will loose dashboard, configs, passwords, so password from that env variable will be applied. You may try to enable persistence later. https://community.grafana.com/t/unable-to-login-as-admin-in-grafana/119864

    PV Delete 변경하고 제거한 뒤 다시 생성해야함