pdworzynski commented on issue #2141:
URL: https://github.com/apache/polaris/issues/2141#issuecomment-3128664787

   For what it's worth - I encountered the same issue in a similar environment: 
kubernetes + helm + postgres. The cause, it seems, was that I've been using 
`apache/polaris-admin-tool:1.0.0-incubating` image to bootstrap the realm but a 
newer image of polaris itself (latest main branch from gitrepository). Using a 
fixed version image in the helm chart fixed the issue:
   ```
   apiVersion: helm.toolkit.fluxcd.io/v2
   kind: HelmRelease
   metadata:
     name: polaris
   spec:
     releaseName: polaris
     interval: 12h
     chart:
       spec:
         chart: helm/polaris        
         sourceRef:
           kind: GitRepository
           name: polaris
           namespace: flux-system
     values:
       image:
         repository: apache/polaris
         tag: 1.0.0-incubating
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to