Skip to content

Commit

Permalink
Merge branch 'main' into TT-11889-custom-pod-annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
singhpr authored Apr 18, 2024
2 parents f8337ad + 3e934cc commit 6a5fded
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions components/tyk-mdcb/templates/deployment-mdcb.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
4 changes: 2 additions & 2 deletions components/tyk-mdcb/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions components/tyk-pump/templates/deployment-pmp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -243,9 +243,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 }}
Expand Down
4 changes: 2 additions & 2 deletions components/tyk-pump/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions tyk-control-plane/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: ""
Expand Down
4 changes: 2 additions & 2 deletions tyk-data-plane/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: ""
Expand Down
4 changes: 2 additions & 2 deletions tyk-oss/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: ""
Expand Down
4 changes: 2 additions & 2 deletions tyk-stack/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: ""
Expand Down

0 comments on commit 6a5fded

Please sign in to comment.