Team,
To deploy workload on AKS, my docker images sits on Antifactory and I am not using Azure ACR. To do so we have stored Antifactory credential in AKS K8S secrets.
And accordingly our YAML definition like below,
imagePullSecrets:
- name: my-artifactory-credential
Question is, since AKS K8S secrets storing data just as bas64 encoded, what are the ways to make it secure?
Can I put this to Azure Key Vault, but how use when Image pulls from Antifactory?
Can we encrypt some way and decrypt whenever required ? Please suggest. Thanks.