You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/operator-user-guide.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -455,7 +455,7 @@ spec:
455
455
456
456
### 7.3 Credentials
457
457
458
-
For production, use `spec.credsSecret`. The Secret must be in the same namespace as the Tenant and contain UTF-8 `accesskey` and `secretkey` keys. Both values must be at least 8 characters.
458
+
For production, use `spec.credsSecret`. The Secret must be in the same namespace as the Tenant and contain `accesskey` and `secretkey` keys. Both values must be valid UTF-8 without NUL bytes and at least 8 UTF-8 bytes after trimming.
459
459
460
460
```yaml
461
461
apiVersion: v1
@@ -1154,7 +1154,8 @@ Common blocked reasons:
1154
1154
| `InvalidPoolSpec` | Pool count, total volume count, pool name, and immutable fields. |
1155
1155
| `CredentialSecretNotFound` | Secret exists in the Tenant namespace. |
1156
1156
| `CredentialSecretMissingKey` | Secret contains `accesskey` and `secretkey`. |
1157
-
| `CredentialSecretTooShort` | Both credential values are at least 8 characters. |
1157
+
| `CredentialSecretInvalidEncoding` | Both credential values are valid UTF-8 without NUL bytes. |
1158
+
| `CredentialSecretTooShort` | Both credential values are at least 8 UTF-8 bytes after trimming. |
1158
1159
| `KmsSecretNotFound` / `KmsSecretMissingKey` | KMS Secret exists and contains required keys, such as Vault `vault-token` or the Local KMS `masterKeySecretRef.key`. |
1159
1160
| `CertManagerCrdMissing` / `CertManagerIssuerNotFound` | cert-manager is installed and the issuer exists. |
1160
1161
| `InvalidWorkloadSecurityProfile` | Fix the seccomp or AppArmor profile type and its `localhostProfile` pairing. |
0 commit comments