You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to use sops for kubernetes in the sense of storing encrypted files in git and then as the normal deploy flow
decrypt everything
build kubernetes yaml files and apply them
encrypt everything
I think this workflow is also useful for many others.
Current Status
So far one has to write a manual for loop with sops -d -i mycurrentfile and sops -e -i mycurrentfile, and ignore if sops throws an error like error loading config: no matching creation rules found.
Feature Request
It would be great if the standard sops command has a --recursive flag which can be combined with -d -i and -e -i to recursively apply the rules in .sops.yaml to all the files in the current directory and subdirectories. If something is not in the .sops.yaml rules, it should not be touched.
The text was updated successfully, but these errors were encountered:
Motivation
I would like to use sops for kubernetes in the sense of storing encrypted files in git and then as the normal deploy flow
I think this workflow is also useful for many others.
Current Status
So far one has to write a manual for loop with
sops -d -i mycurrentfile
andsops -e -i mycurrentfile
, and ignore ifsops
throws an error likeerror loading config: no matching creation rules found
.Feature Request
It would be great if the standard
sops
command has a--recursive
flag which can be combined with-d -i
and-e -i
to recursively apply the rules in.sops.yaml
to all the files in the current directory and subdirectories. If something is not in the.sops.yaml
rules, it should not be touched.The text was updated successfully, but these errors were encountered: