为了将机密安全存储在公共或私人Git存储库中,您可以使用Mozilla的SOPS CLI通过OpenPGP、AWS KMS、GCP KMS和Azure Key Vault加密Kubernetes机密。
先决条件
要遵循本指南,您需要一个安装了GitOps工具包控制器的Kubernetes集群。请参阅入门指南或安装指南。
安装gnupg和SOPS:
brew install gnupg sops
生成GPG密钥
生成不带密码短语的GPG/OpenPGP密钥(%no-protection):
export KEY_NAME="cluster0.yourdomain.com"
export KEY_COMMENT="flux secrets"
gpg --batch --full-generate-key <<EOF
%no-protection
Key-Type: 1
Key-Length: 4096
Subkey-Type: 1
Subkey-Length: 4096
Expire-Date: 0
Name-Comment: ${KEY_COMMENT}
Name-Real: ${KEY_NAME}
EOF
上面的配置创建了一个不会过期的rsa4096密钥。有关要为您的环境考虑的选项的完整列表, see Unattended GPG key generation.
检索GPG密钥指纹(sec列的第二行):
gpg --list-secret-keys "${KEY_NAME}"
sec rsa4096 2020-09-06 [SC]
1F3D1CED2F865F5E59CA564553241F147E7C5FA4
将密钥指纹存储为环境变量:
export KEY_FP=1F3D1CED2F865F5E59CA564553241F147E7C5FA4
Export the public and private keypair from your local GPG keyring and create a Kubernetes secret named sops-gpg
in the flux-system
namespace:
gpg --export-secret-keys --armor "${KEY_FP}" |
kubectl create secret generic sops-gpg \
--namespace=flux-system \
--from-file=sops.asc=/dev/stdin
最好使用密码管理器或离线存储来备份此密钥/K8s secret。还要考虑从您的计算机中删除机密解密密钥:
gpg --delete-secret-keys "${KEY_FP}"
配置群集中机密解密
在集群上注册Git存储库:
flux create source git my-secrets \
--url=https://github.com/my-org/my-secrets \
--branch=main
创建一个kustomization来协调集群上的机密:
flux create kustomization my-secrets \
--source=my-secrets \
--path=./clusters/cluster0 \
--prune=true \
--interval=10m \
--decryption-provider=sops \
--decryption-secret=sops-gpg
Note that the sops-gpg
can contain more than one key, SOPS will try to decrypt the secrets by iterating over all the private keys until it finds one that works.
Optional: Export the public key into the Git directory
Commit the public key to the repository so that team members who clone the repo can encrypt new files:
gpg --export --armor "${KEY_FP}" > ./clusters/cluster0/.sops.pub.asc
Check the file contents to ensure it’s the public key before adding it to the repo and committing.
git add ./clusters/cluster0/.sops.pub.asc
git commit -am 'Share GPG public key for secrets generation'
Team members can then import this key when they pull the Git repository:
gpg --import ./clusters/cluster0/.sops.pub.asc
The public key is sufficient for creating brand new files. The secret key is required for decrypting and editing existing files because SOPS computes a MAC on all values. When using solely the public key to add or remove a field, the whole file should be deleted and recreated.
Configure the Git directory for encryption
Write a SOPS config file to the specific cluster or namespace directory used to store encrypted objects with this particular GPG key’s fingerprint.
cat <<EOF > ./clusters/cluster0/.sops.yaml
creation_rules:
- path_regex: .*.yaml
encrypted_regex: ^(data|stringData)$
pgp: ${KEY_FP}
EOF
This config applies recursively to all sub-directories. Multiple directories can use separate SOPS configs. Contributors using the sops
CLI to create and encrypt files won’t have to worry about specifying the proper key for the target cluster or namespace.
encrypted_regex
helps encrypt the data
and stringData
fields for Secrets. You may wish to add other fields if you are encrypting other types of Objects.
Hint
Note that you should encrypt only the data
or stringData
section. Encrypting the Kubernetes secret metadata, kind or apiVersion is not supported by kustomize-controller.
Encrypting secrets using OpenPGP
Generate a Kubernetes secret manifest with kubectl:
kubectl -n default create secret generic basic-auth \
--from-literal=user=admin \
--from-literal=password=change-me \
--dry-run=client \
-o yaml > basic-auth.yaml
Encrypt the secret with SOPS using your GPG key:
sops --encrypt --in-place basic-auth.yaml
You can now commit the encrypted secret to your Git repository.
Hint
Note that you shouldn’t apply the encrypted secrets onto the cluster with kubectl. SOPS encrypted secrets are designed to be consumed by kustomize-controller.
Encrypting secrets using age
age is a simple, modern alternative to OpenPGP. It’s recommended to use age over OpenPGP, if possible.
Encrypting with age follows the same workflow than PGP.
Generate an age key with age using age-keygen
:
$ age-keygen -o age.agekey
Public key: age1helqcqsh9464r8chnwc2fzj8uv7vr5ntnsft0tn45v2xtz0hpfwq98cmsg
Create a secret with the age private key, the key name must end with .agekey
to be detected as an age key:
cat age.agekey |
kubectl create secret generic sops-age \
--namespace=flux-system \
--from-file=age.agekey=/dev/stdin
Use sops
and the age public key to encrypt a Kubernetes secret:
sops --age=age1helqcqsh9464r8chnwc2fzj8uv7vr5ntnsft0tn45v2xtz0hpfwq98cmsg \
--encrypt --encrypted-regex '^(data|stringData)$' --in-place basic-auth.yaml
And finally set the decryption secret in the Flux Kustomization to sops-age
.
Encrypting secrets using HashiCorp Vault
HashiCorp Vault is an identity-based secrets and encryption management system.
Encrypting with HashiCorp Vault follows the same workflow as PGP & Age.
Export the VAULT_ADDR
and VAULT_TOKEN
environment variables to your shell, then use sops
to encrypt a Kubernetes Secret (see HashiCorp Vault for more details on enabling the transit backend and sops).
Then use sops
to encrypt a Kubernetes Secret:
export VAULT_ADDR=https://vault.example.com:8200
export VAULT_TOKEN=my-token
sops --hc-vault-transit $VAULT_ADDR/v1/sops/keys/my-encryption-key --encrypt \
--encrypted-regex '^(data|stringData)$' --in-place basic-auth.yaml
Create a secret the vault token, the key name must be sops.vault-token
to be detected as a vault token:
echo $VAULT_TOKEN |
kubectl create secret generic sops-hcvault \
--namespace=flux-system \
--from-file=sops.vault-token=/dev/stdin
And finally set the decryption secret in the Flux Kustomization to sops-hcvault
.
Encrypting secrets using various cloud providers
When using AWS/GCP KMS, you don’t have to include the gpg secretRef
under spec.provider
(you can skip the --decryption-secret
flag when running flux create kustomization
), instead you’ll have to bind an IAM Role with access to the KMS keys to the kustomize-controller
service account of the flux-system
namespace for kustomize-controller to be able to fetch keys from KMS.
AWS
Enabled the IAM OIDC provider on your EKS cluster:
eksctl utils associate-iam-oidc-provider --cluster=<clusterName>
Create an IAM Role with access to AWS KMS e.g.:
{
"Version": "2012-10-17",
"Statement": [
{
"Action": [
"kms:Decrypt",
"kms:DescribeKey"
],
"Effect": "Allow",
"Resource": "arn:aws:kms:eu-west-1:XXXXX209540:key/4f581f5b-7f78-45e9-a543-83a7022e8105"
}
]
}
Hint
The above policy represents the minimal permissions needed for the controller to be able to decrypt secrets. Policies for users/clients who are meant to be encrypting and managing secrets will additionally require the kms:Encrypt
, kms:ReEncrypt*
and kms:GenerateDataKey*
actions.
Bind the IAM role to the kustomize-controller
service account:
eksctl create iamserviceaccount \
--role-only \
--name=kustomize-controller \
--namespace=flux-system \
--attach-policy-arn=<policyARN> \
--cluster=<clusterName>
Annotate the kustomize-controller service account with the role ARN:
kubectl -n flux-system annotate serviceaccount kustomize-controller \
--field-manager=flux-client-side-apply \
eks.amazonaws.com/role-arn='arn:aws:iam::<ACCOUNT_ID>:role/<KMS-ROLE-NAME>'
Restart kustomize-controller for the binding to take effect:
kubectl -n flux-system rollout restart deployment/kustomize-controller
Bootstrap
Note that when using flux bootstrap
you can set the annotation to take effect at install time.
Azure
When using Azure Key Vault you need to authenticate kustomize-controller either with aad-pod-identity or by passing Service Principal credentials as environment variables.
Create the Azure Key-Vault:
export VAULT_NAME="fluxcd-$(uuidgen | tr -d - | head -c 16)"
export KEY_NAME="sops-cluster0"
export RESOURCE_GROUP=<AKS-RESOURCE-GROUP>
az keyvault create --name "${VAULT_NAME}" -g ${RESOURCE_GROUP}
az keyvault key create --name "${KEY_NAME}" \
--vault-name "${VAULT_NAME}" \
--protection software \
--ops encrypt decrypt
az keyvault key show --name "${KEY_NAME}" \
--vault-name "${VAULT_NAME}" \
--query key.kid
If using AAD Pod-Identity, Create an identity within Azure that has permission to access Key Vault:
export IDENTITY_NAME="sops-akv-decryptor"
# Create an identity in Azure and assign it a role to access Key Vault (note: the identity's resourceGroup should match the desired Key Vault):
az identity create -n ${IDENTITY_NAME} -g ${RESOURCE_GROUP}
az role assignment create --role "Key Vault Crypto User" --assignee-object-id "$(az identity show -n ${IDENTITY_NAME} -o tsv --query principalId -g ${RESOURCE_GROUP})"
# Fetch the clientID and resourceID to configure the AzureIdentity spec below:
export IDENTITY_CLIENT_ID="$(az identity show -n ${IDENTITY_NAME} -g ${RESOURCE_GROUP} -otsv --query clientId)"
export IDENTITY_RESOURCE_ID="$(az identity show -n ${IDENTITY_NAME} -g ${RESOURCE_GROUP} -otsv --query id)"
Create a Keyvault access policy so that the identity can perform operations on Key Vault keys/
export IDENTITY_ID="$(az identity show -g ${RESOURCE_GROUP} -n ${IDENTITY_NAME} -otsv --query principalId)"
az keyvault set-policy --name ${VAULT_NAME} --object-id ${IDENTITY_ID} --key-permissions decrypt
Create an AzureIdentity
object that references the identity created above:
---
apiVersion: aadpodidentity.k8s.io/v1
kind: AzureIdentity
metadata:
name: ${IDENTITY_NAME} # kustomize-controller label will match this name
namespace: flux-system
spec:
clientID: ${IDENTITY_CLIENT_ID}
resourceID: ${IDENTITY_RESOURCE_ID}
type: 0 # user-managed identity
Create an AzureIdentityBinding
object that binds pods with a specific selector with the AzureIdentity
created above.
apiVersion: "aadpodidentity.k8s.io/v1"
kind: AzureIdentityBinding
metadata:
name: ${IDENTITY_NAME}-binding
namespace: flux-system
spec:
azureIdentity: ${IDENTITY_NAME}
selector: ${IDENTITY_NAME}
Customize your Flux Manifests so that kustomize-controller has the proper credentials. Patch the kustomize-controller Pod template so that the label matches the AzureIdentity
selector. Additionally, the SOPS specific environment variable AZURE_AUTH_METHOD=msi
to activate the proper auth method within kustomize-controller.
apiVersion: apps/v1
kind: Deployment
metadata:
name: kustomize-controller
namespace: flux-system
spec:
template:
metadata:
labels:
aadpodidbinding: ${IDENTITY_NAME} # match the AzureIdentity name
spec:
containers:
- name: manager
env:
- name: AZURE_AUTH_METHOD
value: msi
Alternatively, if using a Service Principal stored in a K8s Secret, patch the Pod’s envFrom to reference the AZURE_TENANT_ID
/AZURE_CLIENT_ID
/AZURE_CLIENT_SECRET
fields from your Secret.
apiVersion: apps/v1
kind: Deployment
metadata:
name: kustomize-controller
namespace: flux-system
spec:
template:
spec:
containers:
- name: manager
envFrom:
- secretRef:
name: sops-akv-decryptor-service-principal
At this point, kustomize-controller is now authorized to decrypt values in SOPS encrypted files from your Sources via the related Key Vault.
See Mozilla’s guide to Encrypting Using Azure Key Vault to get started committing encrypted files to your Git Repository or other Sources.
Google Cloud
Workload Identity has to be enabled on the cluster and on the node pools.
Terraform
If you like to use terraform instead of gcloud, you will need the following resources from the hashicorp/google
provider:
- create GCP service account: “google_service_account”
- add role KMS encrypter/decrypter: “google_project_iam_member”
- bind GCP SA to Flux kustomize-controller SA: “google_service_account_iam_binding”
- Create a GCP service account with the role Cloud KMS CryptoKey Encrypter/Decrypter.
gcloud iam service-accounts create <SERVICE_ACCOUNT_ID> \
--description="DESCRIPTION" \
--display-name="DISPLAY_NAME"
gcloud projects add-iam-policy-binding <PROJECT_ID> \
--member="serviceAccount:<SERVICE_ACCOUNT_ID>@<PROJECT_ID>.iam.gserviceaccount.com" \
--role="roles/cloudkms.cryptoKeyEncrypterDecrypter"
- Create an IAM policy binding between the GCP service account and the kustomize-controller Kubernetes service account of the flux-system.
gcloud iam service-accounts add-iam-policy-binding \
--role roles/iam.workloadIdentityUser \
--member "serviceAccount:<PROJECT_ID>.svc.id.goog[<K8S_NAMESPACE>/<KSA_NAME>]" \
SERVICE_ACCOUNT_ID@PROJECT_ID.iam.gserviceaccount.com
For a GCP project named total-mayhem-123456
with a configured GCP service account flux-gcp
and assuming that Flux runs in the (default) namespace flux-system
, this would translate to the following:
gcloud iam service-accounts add-iam-policy-binding \
--role roles/iam.workloadIdentityUser \
--member "serviceAccount:total-mayhem-123456.svc.id.goog[flux-system/kustomize-controller]" \
flux-gcp@total-mayhem-123456.iam.gserviceaccount.com
- Customize your Flux Manifests and patch the kustomize-controller service account with the proper annotation so that Workload Identity knows the relationship between the gcp service account and the k8s service account.
### add this patch to annotate service account if you are using Workload identity
patchesStrategicMerge:
- |-
apiVersion: v1
kind: ServiceAccount
metadata:
name: kustomize-controller
namespace: flux-system
annotations:
iam.gke.io/gcp-service-account: <SERVICE_ACCOUNT_ID>@<PROJECT_ID>.iam.gserviceaccount.com
If you didn’t bootstap Flux, you can use this instead
kubectl annotate serviceaccount kustomize-controller \
--field-manager=flux-client-side-apply \
--namespace flux-system \
iam.gke.io/gcp-service-account=<SERVICE_ACCOUNT_ID>@<PROJECT_ID>.iam.gserviceaccount.com
Bootstrap
Note that when using flux bootstrap
you can set the annotation to take effect at install time.
GitOps workflow
A cluster admin should create the Kubernetes secret with the PGP keys on each cluster and add the GitRepository/Kustomization manifests to the fleet repository.
Git repository manifest:
apiVersion: source.toolkit.fluxcd.io/v1
kind: GitRepository
metadata:
name: my-secrets
namespace: flux-system
spec:
interval: 1m
url: https://github.com/my-org/my-secrets
Kustomization manifest:
apiVersion: kustomize.toolkit.fluxcd.io/v1
kind: Kustomization
metadata:
name: my-secrets
namespace: flux-system
spec:
interval: 10m0s
sourceRef:
kind: GitRepository
name: my-secrets
path: ./
prune: true
decryption:
provider: sops
secretRef:
name: sops-gpg
Hint
You can generate the above manifests using flux create <kind> --export > manifest.yaml
.
Assuming a team member wants to deploy an application that needs to connect to a database using a username and password, they’ll be doing the following:
- create a Kubernetes Secret manifest locally with the db credentials e.g.
db-auth.yaml
- encrypt the secret
data
field with sops - create a Kubernetes Deployment manifest for the app e.g.
app-deployment.yaml
- add the Secret to the Deployment manifest as a volume mount or env var
- commit the manifests
db-auth.yaml
andapp-deployment.yaml
to a Git repository that’s being synced by the GitOps toolkit controllers
Once the manifests have been pushed to the Git repository, the following happens:
- source-controller pulls the changes from Git
- kustomize-controller loads the GPG keys from the
sops-pgp
secret - kustomize-controller decrypts the Kubernetes secrets with SOPS and applies them on the cluster
- kubelet creates the pods and mounts the secret as a volume or env variable inside the app container
最新内容
- 8 hours ago
- 10 hours 49 minutes ago
- 11 hours ago
- 3 days ago
- 3 days 9 hours ago
- 3 days 10 hours ago
- 3 days 10 hours ago
- 3 days 10 hours ago
- 1 week ago
- 1 week ago