Secrets,
Secrets are a Kubernetes object that can be referenced in YAML configurations without having to expose secret information. For example, I can create a secret in K8S which contains a password, and then reference that secret in required YAML files without having to expose the real password in each one.
View secrets
kubectl get secrets
View specified secret
kubectl get secret secretname
View details about specified secret
kubectl describe secretname