From 3e934cc0387a4b156ed33274782735546cc2b646 Mon Sep 17 00:00:00 2001 From: Olalekan Odukoya Date: Thu, 18 Apr 2024 13:16:25 +0100 Subject: [PATCH] TT-11898: change redis ssl values (#267) Co-authored-by: Pranshu <104971506+singhpr@users.noreply.github.com> --- components/tyk-mdcb/templates/deployment-mdcb.yaml | 4 ++-- components/tyk-mdcb/values.yaml | 4 ++-- components/tyk-pump/templates/deployment-pmp.yaml | 4 ++-- components/tyk-pump/values.yaml | 4 ++-- tyk-control-plane/values.yaml | 4 ++-- tyk-data-plane/values.yaml | 4 ++-- tyk-oss/values.yaml | 4 ++-- tyk-stack/values.yaml | 4 ++-- 8 files changed, 16 insertions(+), 16 deletions(-) diff --git a/components/tyk-mdcb/templates/deployment-mdcb.yaml b/components/tyk-mdcb/templates/deployment-mdcb.yaml index 9bc8d5b3..7c0288bc 100644 --- a/components/tyk-mdcb/templates/deployment-mdcb.yaml +++ b/components/tyk-mdcb/templates/deployment-mdcb.yaml @@ -95,9 +95,9 @@ spec: # Redis TLS configurations {{- if .Values.global.redis.useSSL }} - name: TYK_MDCB_STORAGE_REDISSSLMAXVERSION - value: "{{ .Values.global.redis.sslMaxVersion }}" + value: "{{ .Values.global.redis.tlsMaxVersion }}" - name: TYK_MDCB_STORAGE_REDISSSLMINVERSION - value: "{{ .Values.global.redis.sslMinVersion }}" + value: "{{ .Values.global.redis.tlsMinVersion }}" {{- end }} {{- with .Values.global.redis }} diff --git a/components/tyk-mdcb/values.yaml b/components/tyk-mdcb/values.yaml index 7ae0044c..0aabf826 100644 --- a/components/tyk-mdcb/values.yaml +++ b/components/tyk-mdcb/values.yaml @@ -91,11 +91,11 @@ global: # Maximum supported TLS version. Valid values are TLS 1.0, 1.1, 1.2, 1.3. # Default value: 1.3 - # sslMaxVersion: "1.3" + # tlsMaxVersion: "1.3" # Minimum supported TLS version. Valid values are TLS 1.0, 1.1, 1.2, 1.3. # Default value: 1.2 - # sslMinVersion: "1.2" + # tlsMinVersion: "1.2" # Name of the tls secret. A secret needs to be created for this manually using the name as specified here # Default value: mdcb-tls-secret diff --git a/components/tyk-pump/templates/deployment-pmp.yaml b/components/tyk-pump/templates/deployment-pmp.yaml index 30118afa..cb4b2cbf 100644 --- a/components/tyk-pump/templates/deployment-pmp.yaml +++ b/components/tyk-pump/templates/deployment-pmp.yaml @@ -240,9 +240,9 @@ spec: # Redis TLS configurations {{- if .Values.global.redis.useSSL }} - name: TYK_PMP_ANALYTICSSTORAGECONFIG_SSLMAXVERSION - value: "{{ .Values.global.redis.sslMaxVersion }}" + value: "{{ .Values.global.redis.tlsMaxVersion }}" - name: TYK_PMP_ANALYTICSSTORAGECONFIG_SSLMINVERSION - value: "{{ .Values.global.redis.sslMinVersion }}" + value: "{{ .Values.global.redis.tlsMinVersion }}" {{- end }} {{- with .Values.global.redis }} diff --git a/components/tyk-pump/values.yaml b/components/tyk-pump/values.yaml index 0447118e..76e53783 100644 --- a/components/tyk-pump/values.yaml +++ b/components/tyk-pump/values.yaml @@ -63,11 +63,11 @@ global: # Maximum supported TLS version. Valid values are TLS 1.0, 1.1, 1.2, 1.3. # Default value: 1.3 - # sslMaxVersion: "1.3" + # tlsMaxVersion: "1.3" # Minimum supported TLS version. Valid values are TLS 1.0, 1.1, 1.2, 1.3. # Default value: 1.2 - # sslMinVersion: "1.2" + # tlsMinVersion: "1.2" # Set this to `true` to tell Pump to ignore database's cert validation. # Default value: true diff --git a/tyk-control-plane/values.yaml b/tyk-control-plane/values.yaml index 62260a5a..616810ab 100644 --- a/tyk-control-plane/values.yaml +++ b/tyk-control-plane/values.yaml @@ -146,11 +146,11 @@ global: # Maximum supported TLS version. Valid values are TLS 1.0, 1.1, 1.2, 1.3. # Default value: 1.3 - # sslMaxVersion: "1.3" + # tlsMaxVersion: "1.3" # Minimum supported TLS version. Valid values are TLS 1.0, 1.1, 1.2, 1.3. # Default value: 1.2 - # sslMinVersion: "1.2" + # tlsMinVersion: "1.2" # Name of the tls secret. A secret needs to be created for this manually using the name as specified here # secretName: "" diff --git a/tyk-data-plane/values.yaml b/tyk-data-plane/values.yaml index 473a2eee..babdd277 100644 --- a/tyk-data-plane/values.yaml +++ b/tyk-data-plane/values.yaml @@ -119,11 +119,11 @@ global: # Maximum supported TLS version. Valid values are TLS 1.0, 1.1, 1.2, 1.3. # Default value: 1.3 - # sslMaxVersion: "1.3" + # tlsMaxVersion: "1.3" # Minimum supported TLS version. Valid values are TLS 1.0, 1.1, 1.2, 1.3. # Default value: 1.2 - # sslMinVersion: "1.2" + # tlsMinVersion: "1.2" # Name of the tls secret. A secret needs to be created for this manually using the name as specified here # secretName: "" diff --git a/tyk-oss/values.yaml b/tyk-oss/values.yaml index 8501bd93..83e510c2 100644 --- a/tyk-oss/values.yaml +++ b/tyk-oss/values.yaml @@ -82,11 +82,11 @@ global: # Maximum supported TLS version. Valid values are TLS 1.0, 1.1, 1.2, 1.3. # Default value: 1.3 - # sslMaxVersion: "1.3" + # tlsMaxVersion: "1.3" # Minimum supported TLS version. Valid values are TLS 1.0, 1.1, 1.2, 1.3. # Default value: 1.2 - # sslMinVersion: "1.2" + # tlsMinVersion: "1.2" # Name of the tls secret. A secret needs to be created for this manually using the name as specified here # secretName: "" diff --git a/tyk-stack/values.yaml b/tyk-stack/values.yaml index 9941f25c..271735ac 100644 --- a/tyk-stack/values.yaml +++ b/tyk-stack/values.yaml @@ -147,11 +147,11 @@ global: # Maximum supported TLS version. Valid values are TLS 1.0, 1.1, 1.2, 1.3. # Default value: 1.3 - # sslMaxVersion: "1.3" + # tlsMaxVersion: "1.3" # Minimum supported TLS version. Valid values are TLS 1.0, 1.1, 1.2, 1.3. # Default value: 1.2 - # sslMinVersion: "1.2" + # tlsMinVersion: "1.2" # Name of the tls secret. A secret needs to be created for this manually using the name as specified here # secretName: ""