The etcd data directory should have permissions of 700 or more restrictive

Set up the kubernetes integration.

このページは日本語には対応しておりません。随時翻訳に取り組んでいます。翻訳に関してご質問やご意見ございましたら、お気軽にご連絡ください。

Description

The etcd data directory should have permissions of 700 or more restrictive. Etcd is a highly-available key-value store used by Kubernetes deployments for persistent storage of all of its REST API objects. This data directory should be protected from any unauthorized reads or writes. It should not be readable or writable by any group members or the world.

Remediation

  1. Use the below command to retrieve the etcd data directory, passed as an argument --data-dir:
    ps -ef | grep etcd
    
  2. Run the following command to adjust the file permissions based on the file location from above:
    chmod 700 /<path-to-etcd-data-dir>/etcd.yaml