Oracle Container Engine for Kubernetes
Pods authenticate with the service account they run as.
Pods authenticate with the service account they run as.
What proves the identity
The token has to come from https://objectstorage.us-ashburn-1.oraclecloud.com/n/id9y6mi8tcky/b/oidc/o/a1b2c3d4e5f60718293a4b5c6d7e8f90, and its sub claim has to match the workload you named. penv compares that claim byte for byte, with no wildcards.
Every token also has to name your workspace as its audience. Ask for this audience and no other. A token requested for two audiences fails every exchange.
What the console asks for
| Field | Example | Advanced | What it pins |
|---|---|---|---|
| Region | us-ashburn-1 | no | |
| Discovery key | a1b2c3d4e5f60718293a4b5c6d7e8f90 | no | oci ce cluster get, the OpenIDConnectDiscoveryKey. Needs an enhanced, VCN-native cluster with discovery enabled. |
| Namespace | production | no | |
| Service account | api | no | |
| Realm | id9y6mi8tcky | yes | One of Commercial (OC1), Other realms. |
A field marked advanced carries a default and stays behind the disclosure until you open it.
The console also asks which project and environment this identity reaches and which role it gets, with the credential lifetime behind Advanced.
What the trust holds
Built from the example answers above:
| What | Value |
|---|---|
| Issuer | https://objectstorage.us-ashburn-1.oraclecloud.com/n/id9y6mi8tcky/b/oidc/o/a1b2c3d4e5f60718293a4b5c6d7e8f90 |
| Claim compared | sub |
| Subject | system:serviceaccount:production:api |
| Identity name | oke-4b5c6d7e8f90-production-api |
penv names the identity for you, so the form never asks for one.
The snippet the console prints
volumes:
- name: penv-token
projected:
sources:
- serviceAccountToken:
path: token
# Ask for this audience and no other. A token requested for two audiences fails every exchange.
audience: YOUR_WORKSPACE_ID
expirationSeconds: 3600
containers:
- name: api
volumeMounts:
# Without this the volume above exists and no container can read it.
- name: penv-token
mountPath: /var/run/secrets/penv
readOnly: true
# in the container:
# T=$(cat /var/run/secrets/penv/token)
# C=$(curl -sS "https://penv.cloud/api/v1/auth/oidc" \Related
- Machine identity
- Connect a Platform in the console
- Oracle Container Engine for Kubernetes documentation, where the value people get wrong is always the subject