Skip to content

Commit

Permalink
[TT-9523] Add missing volume options in single-dc and mdcb-data-plane…
Browse files Browse the repository at this point in the history
… charts (#79)

* add missing volume and volumemounts in tyk-single-dc

Signed-off-by: Burak Sekili <[email protected]>

* add missing volume and volumemounts in mdcb-data-plane and add deprecated mounts

Signed-off-by: Burak Sekili <[email protected]>

---------

Signed-off-by: Burak Sekili <[email protected]>
  • Loading branch information
buraksekili authored Aug 1, 2023
1 parent 7565359 commit ee9e5e7
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 13 deletions.
1 change: 0 additions & 1 deletion components/tyk-dashboard/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,6 @@ dashboard:
## mountPath: /etc/ssl/certs/ca-certs.crt
## readOnly: true
extraVolumeMounts: []
mounts: []

# Dashboard will only bootstrap if the master bootstrap option is set to true.
bootstrap: true
Expand Down
14 changes: 14 additions & 0 deletions tyk-mdcb-data-plane/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,20 @@ tyk-gateway:
# if you want to use a hybrid pump, please change "rpc" to ""
analyticsConfigType: "rpc"

## extraVolumes is a list of volumes to be added to the pod
## extraVolumes:
## - name: ca-certs
## secret:
## defaultMode: 420
## secretName: ca-certs
extraVolumes: []

## extraVolumeMounts is a list of volume mounts to be added to the pod
## extraVolumeMounts:
## - name: ca-certs
## mountPath: /etc/ssl/certs/ca-certs.crt
## readOnly: true
extraVolumeMounts: []

tyk-pump:
## Default values for tyk-pump chart.
Expand Down
30 changes: 18 additions & 12 deletions tyk-single-dc/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -260,11 +260,21 @@ tyk-gateway:
secretKeyRef:
name: secrets-tyk-single-dc
key: APISecret
# used to mount files to the gateway containers
# - name: test
# filename: test.txt
# mountPath: /opt/test
mounts: []

## extraVolumes is a list of volumes to be added to the pod
## extraVolumes:
## - name: ca-certs
## secret:
## defaultMode: 420
## secretName: ca-certs
extraVolumes: []

## extraVolumeMounts is a list of volume mounts to be added to the pod
## extraVolumeMounts:
## - name: ca-certs
## mountPath: /etc/ssl/certs/ca-certs.crt
## readOnly: true
extraVolumeMounts: []

tyk-pump:
## Default values for tyk-pump chart.
Expand Down Expand Up @@ -421,12 +431,6 @@ tyk-pump:
## readOnly: true
extraVolumeMounts: []

# mounts can be used to mount files on pump container
# - name: test
# filename: test.csv
# mountPath: /opt/test
mounts: []

tyk-bootstrap:
# Default values for tyk-bootstrap.
# This is a YAML-formatted file.
Expand Down Expand Up @@ -555,21 +559,23 @@ tyk-dashboard:
nodeSelector: {}
tolerations: []
affinity: {}

extraEnvs: []

## extraVolumes A list of volumes to be added to the pod
## extraVolumes:
## - name: ca-certs
## secret:
## defaultMode: 420
## secretName: ca-certs
extraVolumes: []

## extraVolumeMounts A list of volume mounts to be added to the pod
## extraVolumeMounts:
## - name: ca-certs
## mountPath: /etc/ssl/certs/ca-certs.crt
## readOnly: true
extraVolumeMounts: []
mounts: []

# Dashboard will only bootstrap if the master bootstrap option is set to true.
bootstrap: true
Expand Down

0 comments on commit ee9e5e7

Please sign in to comment.