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
| advancedConfig | object |`{}`| Advanced configuration. You can pass here any valid Polaris or Quarkus configuration property. Any property that is defined here takes precedence over all the other configuration values generated by this chart. Properties can be passed "flattened" or as nested YAML objects (see examples below). Note: values should be strings; avoid using numbers, booleans, or other types. |
193
193
| affinity | object |`{}`| Affinity and anti-affinity for polaris pods. See https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#affinity-and-anti-affinity.|
| authentication.authenticator | object |`{"type":"default"}`| The type of authentication to use. Two built-in types are supported: default and test; test is not recommended for production. |
196
-
| authentication.tokenBroker | object |`{"maxTokenGeneration":"PT1H","secret":{"name":null,"privateKey":"private.pem","publicKey":"public.pem","secretKey":"secret"},"type":"rsa-key-pair"}`| The type of token broker to use. Two built-in types are supported: rsa-key-pair and symmetric-key. |
197
-
| authentication.tokenBroker.secret | object |`{"name":null,"privateKey":"private.pem","publicKey":"public.pem","secretKey":"secret"}`| The secret name to pull the public and private keys, or the symmetric key secret from. |
196
+
| authentication.tokenBroker | object |`{"maxTokenGeneration":"PT1H","secret":{"name":null,"privateKey":"private.pem","publicKey":"public.pem","rsaKeyPair":{"privateKey":"private.pem","publicKey":"public.pem"},"secretKey":"symmetric.pem","symmetricKey":{"secretKey":"symmetric.pem"}},"type":"rsa-key-pair"}`| The type of token broker to use. Two built-in types are supported: rsa-key-pair and symmetric-key. |
197
+
| authentication.tokenBroker.maxTokenGeneration | string |`"PT1H"`| Maximum token generation duration (e.g., PT1H for 1 hour). |
198
+
| authentication.tokenBroker.secret | object |`{"name":null,"privateKey":"private.pem","publicKey":"public.pem","rsaKeyPair":{"privateKey":"private.pem","publicKey":"public.pem"},"secretKey":"symmetric.pem","symmetricKey":{"secretKey":"symmetric.pem"}}`| The secret name to pull the public and private keys, or the symmetric key secret from. |
198
199
| authentication.tokenBroker.secret.name | string |`nil`| The name of the secret to pull the keys from. If not provided, a key pair will be generated. This is not recommended for production. |
199
-
| authentication.tokenBroker.secret.privateKey | string |`"private.pem"`| The private key file to use for RSA key pair token broker. Only required when using rsa-key-pair. |
200
-
| authentication.tokenBroker.secret.publicKey | string |`"public.pem"`| The public key file to use for RSA key pair token broker. Only required when using rsa-key-pair. |
201
-
| authentication.tokenBroker.secret.secretKey | string |`"secret"`| The symmetric key file to use for symmetric key token broker. Only required when using symmetric-key. |
200
+
| authentication.tokenBroker.secret.privateKey | string |`"private.pem"`| DEPRECATED: Use `authentication.tokenBroker.secret.rsaKeyPair.privateKey` instead. Key name inside the secret for the private key |
201
+
| authentication.tokenBroker.secret.publicKey | string |`"public.pem"`| DEPRECATED: Use `authentication.tokenBroker.secret.rsaKeyPair.publicKey` instead. Key name inside the secret for the public key |
202
+
| authentication.tokenBroker.secret.rsaKeyPair | object |`{"privateKey":"private.pem","publicKey":"public.pem"}`| Optional: configuration specific to RSA key pair secret. |
203
+
| authentication.tokenBroker.secret.rsaKeyPair.privateKey | string |`"private.pem"`| Key name inside the secret for the private key |
204
+
| authentication.tokenBroker.secret.rsaKeyPair.publicKey | string |`"public.pem"`| Key name inside the secret for the public key |
205
+
| authentication.tokenBroker.secret.secretKey | string |`"symmetric.pem"`| DEPRECATED: Use `authentication.tokenBroker.secret.symmetricKey.secretKey` instead. Key name inside the secret for the symmetric key |
206
+
| authentication.tokenBroker.secret.symmetricKey | object |`{"secretKey":"symmetric.pem"}`| Optional: configuration specific to symmetric key secret. |
207
+
| authentication.tokenBroker.secret.symmetricKey.secretKey | string |`"symmetric.pem"`| Key name inside the secret for the symmetric key |
202
208
| authentication.tokenService | object |`{"type":"default"}`| The type of token service to use. Two built-in types are supported: default and test; test is not recommended for production. |
203
209
| autoscaling.enabled | bool |`false`| Specifies whether automatic horizontal scaling should be enabled. Do not enable this when using in-memory version store type. |
204
210
| autoscaling.maxReplicas | int |`3`| The maximum number of replicas to maintain. |
0 commit comments