ok lets move on to the next task
Lets do something simple today that we will use at a later date. We will create a secret
Secrets are an interesting topic.
This seems not to be much secure… A simple echo with base64 option shows the secret in plain text.
Or what I am missing?
Secrets are an interesting topic.
This seems not to be much secure… A simple echo with base64 option shows the secret in plain text.
Or what I am missing?
Secrets are an interesting topic.
This seems not to be much secure… A simple echo with base64 option shows the secret in plain text.
Or what I am missing?

k get secrets

Secrets are used to store confidential information otherwise you could use configmaps but they are only hashed not encrypted so you would need to use something more secure like Hashcorp Vault if you wanted more security.
Lets hack the secret to demonstrate this weakness:
k get secrets mysecret -oyaml

echo Qm9zc1NhbGFyeQ== | base64 -d

There it is in plain sight BossSalary!