fix(clustered): Add known bug and clustered-auth override to release notes

pull/6371/head
Jason Stirnaman 2025-09-09 14:12:52 -05:00 committed by Jason Stirnaman
parent de115edf89
commit 6fcd870555
1 changed files with 37 additions and 0 deletions

View File

@ -390,6 +390,43 @@ spec:
# ...[remaining configuration] # ...[remaining configuration]
``` ```
### `clustered-auth` service routes to removed `gateway` service instead of `core` service
If you have the `clusteredAuth` feature flag enabled, the `clustered-auth` service will be deployed.
The service currently routes to the recently removed `gateway` service instead of the new `core` service.
#### Temporary workaround for service routing
Until you upgrade to release `20250805-1812019`, you will need to override the `clustered-auth`
service to point to the new `core` service by adding the following `env` overrides to your `AppInstance`:
```yaml
apiVersion: kubecfg.dev/v1alpha1
kind: AppInstance
metadata:
name: influxdb
namespace: influxdb
spec:
package:
image: us-docker.pkg.dev/influxdb2-artifacts/clustered/influxdb:20241024-1354148
apiVersion: influxdata.com/v1alpha1
spec:
components:
querier:
template:
containers:
clustered-auth:
env:
AUTHZ_TOKEN_SVC_ADDRESS: 'http://core:8091/'
router:
template:
containers:
clustered-auth:
env:
AUTHZ_TOKEN_SVC_ADDRESS: 'http://core:8091/'
# ...remaining configuration...
```
### Highlights ### Highlights
#### AppInstance image override bug fix #### AppInstance image override bug fix