A Kubernetes operator that syncs and decrypts secrets from pass store git repositories
Project description
pass
secrets operator
A Kubernetes operator to sync and decrypt secrets from a password store (pass) Git repository.
While this approach to secrets management on Kubernetes is more technically challenging, the primary advantage is that we don't have to rely on a 3rd party SaaS platform, such as Vault, Infisical or Doppler, to hold and secure our secrets. This approach upholds a GitOps-style of secrets management by storing encrypted secret state in Git.
Moreover, this operator may be used in an airgapped environment or private subnets (with no outbound Internet access) when paired with any self-hosted git repository that supports SSH access, so your secrets never leave your network.
How it works
From a high level, this operator runs git pull
on an interval to grab updates from a git repository populated with encrypted
secrets by pass
on a local developer's machine. It maps secrets' paths to data values through the application of a PassSecret
, a custom resource, such as the following.
apiVersion: secrets.premiscale.com/v1alpha1
kind: PassSecret
metadata:
name: mypasssecret
namespace: pass-operator-test
spec:
encryptedData:
mykey: premiscale/mydata
managedSecret:
metadata:
name: mysecret
namespace: mynamespace
type: Opaque
immutable: false
The above PassSecret
manifest translates to the following Secret
.
apiVersion: v1
kind: Secret
metadata:
name: mysecret
namespace: mynamespace
stringData:
mykey: <decrypted contents of premiscale/mydata>
immutable: false
type: Opaque
The following flowchart outlines how this operator reacts to PassSecret
-related events and pass store updates.
Installation
See the chart README for an overview of operator installation and configuration options.
Development
Unit tests
Run unit tests with
yarn test:unit
End-to-end tests
Run e2e tests against a live (local) environment with
yarn test:e2e
This command will
- Stand up a local 1-node minikube cluster with 4 cores, 4GiB memory and 30GiB storage. (Modify ./scripts/minikube.sh if these resources are unsuitable for your local development environment.)
- Create a
localhost
docker registry redirect container. - Build both e2e (hosts a git repository with encrypted pass secrets that match paths found in ./src/test/data/crd) and operator container images, as well as push these images to the local redirect for minikube to access.
- Installs both e2e and pass-operator Helm charts.
- Run e2e tests.
- Tear down the cluster and local registry, as well as cleans up locally-built artifacts.
Coverage
Test coverage against the codebase with
poetry run coverage run -m pytest
poetry run coverage report -m pytest
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pass_operator-0.4.8.tar.gz
.
File metadata
- Download URL: pass_operator-0.4.8.tar.gz
- Upload date:
- Size: 26.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2d5439da4db1baded55b8b67e249e898ecae76da4a344f928b18a3a15da847bc |
|
MD5 | 057c459defd3650d50d28aa43aa9d34b |
|
BLAKE2b-256 | 35271d25b4a28a4059e59986a19c85679443eee959c51ab7d3dfbbcd9aa42f86 |
File details
Details for the file pass_operator-0.4.8-py3-none-any.whl
.
File metadata
- Download URL: pass_operator-0.4.8-py3-none-any.whl
- Upload date:
- Size: 39.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b776e8a2e02206e43c9d651750ff9bdecd8548049f9f26df10a8a662dc222bb3 |
|
MD5 | 4c7d7c203a21bd40531dd2c7924c4964 |
|
BLAKE2b-256 | 90c82f10432b51a84aba36611418758a3f4e6533e990fdd79fd6ad960d3d1a29 |