orientdb kubernetes readiness probe errored: gzip : invalid header orientdb kubernetes readiness probe errored: gzip : invalid header kubernetes kubernetes

orientdb kubernetes readiness probe errored: gzip : invalid header


orientdb web application on port 2480 returns gzipped HTTP response, so you should add custom HTTP headers to support this into your httpGet livenessProbe and readinessProbe:

livenessProbe:  httpGet:    path: /    port: http-port    httpHeaders:    - name: Accept-Encoding      value: gzip  initialDelaySeconds: 60  timeoutSeconds: 30readinessProbe:  httpGet:    path: /    port: http-port    httpHeaders:    - name: Accept-Encoding      value: gzip  initialDelaySeconds: 5  timeoutSeconds: 5