From 3bade9d41df5cd6060e494a98f6ab11154c70354 Mon Sep 17 00:00:00 2001 From: John Spray Date: Mon, 6 Jan 2025 12:53:37 +0000 Subject: [PATCH] storage controller: do not set LD_LIBRARY_PATH (#120) This was set to use the Neon-built postgres to avoid needing an extra vanilla postgres client binary in the container image. However, using that build was problematic when it switched to using statically compiled openssl (which is unsafe when used from multi-threaded binaries), so let's use the system libpq instead. --- charts/neon-storage-controller/Chart.yaml | 2 +- charts/neon-storage-controller/README.md | 2 +- charts/neon-storage-controller/templates/deployment.yaml | 2 -- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/charts/neon-storage-controller/Chart.yaml b/charts/neon-storage-controller/Chart.yaml index b2dabe1..41d6bfe 100644 --- a/charts/neon-storage-controller/Chart.yaml +++ b/charts/neon-storage-controller/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: neon-storage-controller description: Neon storage controller type: application -version: 1.3.0 +version: 1.3.1 appVersion: "0.1.0" kubeVersion: "^1.18.x-x" home: https://neon.tech diff --git a/charts/neon-storage-controller/README.md b/charts/neon-storage-controller/README.md index 2c22db2..7e8b5dd 100644 --- a/charts/neon-storage-controller/README.md +++ b/charts/neon-storage-controller/README.md @@ -1,6 +1,6 @@ # neon-storage-controller -![Version: 1.3.0](https://img.shields.io/badge/Version-1.3.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) [![Lint and Test Charts](https://github.com/neondatabase/helm-charts/actions/workflows/lint-test.yaml/badge.svg)](https://github.com/neondatabase/helm-charts/actions/workflows/lint-test.yaml) +![Version: 1.3.1](https://img.shields.io/badge/Version-1.3.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) [![Lint and Test Charts](https://github.com/neondatabase/helm-charts/actions/workflows/lint-test.yaml/badge.svg)](https://github.com/neondatabase/helm-charts/actions/workflows/lint-test.yaml) Neon storage controller diff --git a/charts/neon-storage-controller/templates/deployment.yaml b/charts/neon-storage-controller/templates/deployment.yaml index c592618..13ab2a1 100644 --- a/charts/neon-storage-controller/templates/deployment.yaml +++ b/charts/neon-storage-controller/templates/deployment.yaml @@ -76,8 +76,6 @@ spec: - {{ .Values.settings.longReconcileThreshold | quote }} {{- end }} env: - - name: LD_LIBRARY_PATH - value: "/usr/local/v16/lib" - name: RUST_LOG value: "INFO" - name: RUST_BACKTRACE