| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
About | Quick tutorial | How does the Credentials Operator work? | Docs | Contributing | Slack
The Otterize Credentials Operator automatically resolves pods to dev-friendly service names, registers them with a SPIRE server or with Otterize Cloud, and optionally provisions credentials as Kubernetes secrets.
Once the operator resolves the service name for a pod, it labels the pod and registers an entry with the SPIRE server or with Otterize cloud.
After the operator has registered the pod, which happens automatically upon startup, the pod can use the SPIRE Workload API or Otterize Cloud to generate x509 Certificate with <servicename>.<namespace> as its CN.
Additionally, the operator consults the label credentials-operator.otterize.com/tls-secret-name. If that label exists, the operator creates a secret named after the value of the label with X.509 credentials within (SVID if you use SPIRE). This way, the pod can get autogenerated credentials without modifying its code.
For more information, see the docs.
Service name resolution is performed one of two ways:
The value resulting from this process forms the value of the label credentials-operator.otterize.com/service-name.
The credentials operator, together with the intents operator, enables the intent-based declarative management of AWS IAM roles and policies.
To generate an AWS IAM role for a pod, apply the following label to it:
metadata:
labels:
"credentials-operator.otterize.com/create-aws-role": "true"Try the AWS IAM tutorial to learn more.
The credentials operator, together with the intents operator, enables the intent-based declarative management of Azure IAM identities and role assignments.
To generate an Azure managed identity for a pod, apply the following label to it:
metadata:
labels:
"credentials-operator.otterize.com/create-azure-workload-identity": "true"Try the Azure IAM tutorial to learn more.
The credentials operator, together with the intents operator, enables the intent-based declarative management of Google Cloud service accounts and policies.
To generate a Google Cloud service account for a pod, apply the following label to it:
metadata:
labels:
"credentials-operator.otterize.com/create-gcp-sa": "true"Try the GCP IAM tutorial to learn more.
The credentials operator, together with the intents operator, enables the intent-based declarative management of just-in-time database credentials and access permissions. This feature is currently supported for PostgreSQL and MySQL databases.
Try the following tutorials to learn more:
| Back | FazBrowse Home | New Git URL |