This repository is a secret manager for kubernetes using age.
By default, you put all your configuration on a codebase. There may be sensitive data like passwords or tokens among them. a secret manager lets you encrypt your sensitive data and then push it to codebase.
Instead of pushing raw data to git, encrypt your data, push it to codebase, apply it to kubernetes using gitops, and kubernetes will use this operator to create a secret for you. then you can use that secret for your deployments.
You’ll need a Kubernetes cluster to run against. You can use KIND to get a local cluster for testing, or run against a remote cluster.
Note: Your controller will automatically use the current context in your kubeconfig file (i.e. whatever cluster kubectl cluster-info
shows).
You can use this link to install age
. Also, you can build from source if you have a supported version of golang installed on your system. It's mentioned in the given link.
You need to generate age keys
by running the code below simply:
age-keygen -o {key file name}
# For example
age-keygen -o key.txt
If you look inside the file, it has three lines.
# created: 2022-xx-yyT00:00:00+04:30
# public key: age1fjn89y8svr9rdqh6c9h6drxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
AGE-SECRET-KEY-1ZQ3729NNAAP8MAFXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
- The first line shows the creation timestamp of the Age key.
- The second line is the public key. It's used to encrypt data.
- The third line is the secret key. It's used to create an AgeKey object that decrypts the AgeSecret object.
For encryption, you will need a public key
and a file that contains your sensitive data. your yaml data should be flat. nested yaml files are not supported now.
sample data.yaml:
password: my_password
token: my_token
and then run:
age -r {public key} -e -a {plaintext data file} > {encrypted data file}
# for example
age -r age1fjn89y8svr9rdqh6c9h6drxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -e -a data.yaml > data.age
If you look at the data.age
file, it contains data like this (surely content differs).
-----BEGIN AGE ENCRYPTED FILE-----
YWdlLWVuY3J5cHRpb24ub3JnL3YxCi0+IFgyNTUxOSBXbXlPYUxHRTVMRGxBdkxr
Zk5VZXpSR0Npc2EzYmRUbFNUbTVRRUpvb0ZjCjk1blA2QTFmWHN5akV1aDhGQUJR
RTBwWmRvaFJjUWlYcFBBdS93bFBiaGMKLS0tIE5LZDN4aElNMEhwZXcwWW9ZUmdN
bTI0V0NGWTJkTElaRmFQNjhWREQ3bXcKKHYCUSb/xvPlj5umQRFwwd1ULlXDTYXw
jFRZvb9z4cXANc6Vp6kK8aoXNw0EzT46WId4KtTgCVwl7UDcgj+LXiO/e4J/2Rk0
0z1P3YUb
-----END AGE ENCRYPTED FILE-----
To decrypt data, you will need a secret key
and an encrypted file.
age -d -i {secret key file} {encrypted data file}
# For example
age -d -i key.txt data.age
To create an AgeKey
object, you need to create a template similar to the following.
apiVersion: gitopssecret.snappcloud.io/v1alpha1
kind: AgeKey
metadata:
name: {fill name}
namespace: {fill namespace}
spec:
ageSecretKey: {fill with secret key}
Here is an AgeKey
sample:
oc get AgeKey agekey-sample -o yaml
apiVersion: gitopssecret.snappcloud.io/v1alpha1
kind: AgeKey
metadata:
name: agekey-sample
namespace: default
spec:
ageSecretKey: "AGE-SECRET-KEY-1ZQ3729NNAAP8MAFXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
You can create an AgeSecret
object with the below template. You can find more information about each field in the AgeSecret Fields section:
apiVersion: gitopssecret.snappcloud.io/v1alpha1
kind: AgeSecret
metadata:
name: {fill name}
namespace: {fill namespace}
labels:
... {fill labels}
annotations:
... {fill annotations}
spec:
labelsToRemove:
- {label1}
- {label2}
suspend: {fill suspend}
ageKeyRef: {fill ref name}
stringData:
... {fill stringData}
- Name of the AgeSecret object. If the decryption process was successful, the controller will generate a Secret object with this name.
- The namespace of the AgeSecret object, the secret will get created in this namespace.
- A set of "key:value" that will be copied inside the generated secret.
- A set of "key:value" that will be copied inside the generated secret.
- An array of labels to remove while creating the child secret, and not to inherit them. Sample use-case is inside CD on k8s, when you want a label selector to track "AgeSecret" but not the child secret.
- It's boolean. The default value is false. It determines whether the controller should reconcile on changes and apply changes to secret or you are just testing and the controller should not change anything.
- This field indicates the name of the AgeKey object that you have encrypted this AgeSecret with it, so it has to be the same as the "AgeKey metadata.name" field's value.
- This field is where you should put the encrypted Age message without its "-----BEGIN AGE ENCRYPTED FILE-----" prefix and "-----END AGE ENCRYPTED FILE-----" suffix.
Note
Be careful not to push files containing "secret key" or "plain configuration" on git during the encryption and decryption steps.
Here is an AgeSecret
sample:
oc get AgeSecret agesecret-sample -o yaml
apiVersion: gitopssecret.snappcloud.io/v1alpha1
kind: AgeSecret
metadata:
name: agesecret-sample
namespace: test-age-secret
labels:
key_label: value_label
annotations:
key_annotation: value_annotation
spec:
suspend: false
ageKeyRef: agekey-sample
stringData: |
YWdlLWVuY3J5cHRpb24ub3JnL3YxCi0+IFgyNTUxOSBXbXlPYUxHRTVMRGxBdkxr
Zk5VZXpSR0Npc2EzYmRUbFNUbTVRRUpvb0ZjCjk1blA2QTFmWHN5akV1aDhGQUJR
RTBwWmRvaFJjUWlYcFBBdS93bFBiaGMKLS0tIE5LZDN4aElNMEhwZXcwWW9ZUmdN
bTI0V0NGWTJkTElaRmFQNjhWREQ3bXcKKHYCUSb/xvPlj5umQRFwwd1ULlXDTYXw
jFRZvb9z4cXANc6Vp6kK8aoXNw0EzT46WId4KtTgCVwl7UDcgj+LXiO/e4J/2Rk0
0z1P3YUb
- Install Instances of Custom Resources:
kubectl apply -f config/samples/
- Build and push your image to the location specified by
IMG
:
make docker-build docker-push IMG=<some-registry>/gitops-secret-manager:tag
- Deploy the controller to the cluster with the image specified by
IMG
:
make deploy IMG=<some-registry>/gitops-secret-manager:tag
To delete the CRDs from the cluster:
make uninstall
UnDeploy the controller to the cluster:
make undeploy
After forking this repository, add your code and add tests for your code. then make sure that test cases are alright.
make test
# to test api with verbosity
make test-api
# to test controller with verbosity
make test-controller
This project aims to follow the Kubernetes Operator pattern
It uses Controllers which provides a reconcile function responsible for synchronizing resources untile the desired state is reached on the cluster
- Install the CRDs into the cluster:
make install
- Run your controller (this will run in the foreground, so switch to a new terminal if you want to leave it running):
make run
And in case you don't want to enable webhook in local, run command below and comment [WEBHOOK] sections in config/crd.
make run ENABLE_WEBHOOKS=false
NOTE: You can also run this in one step by running: make install run
If you are editing the API definitions, generate the manifests such as CRs or CRDs using:
make manifests
NOTE: Run make --help
for more information on all potential make
targets
More information can be found via the Kubebuilder Documentation
Copyright 2022.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.