-
Notifications
You must be signed in to change notification settings - Fork 43
/
values.yaml
157 lines (142 loc) · 4.76 KB
/
values.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
# Default values for csi-plugin.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
image:
name: "purestorage/k8s"
tag: "5.2.0"
pullPolicy: "Always"
csi:
provisioner:
image:
name: "quay.io/k8scsi/csi-provisioner"
pullPolicy: "Always"
snapshotter:
image:
name: "quay.io/k8scsi/csi-snapshotter"
pullPolicy: "Always"
resizer:
image:
name: "quay.io/k8scsi/csi-resizer"
pullPolicy: "Always"
clusterDriverRegistrar:
image:
name: "quay.io/k8scsi/csi-cluster-driver-registrar"
pullPolicy: "Always"
nodeDriverRegistrar:
image:
name: "quay.io/k8scsi/csi-node-driver-registrar"
pullPolicy: "Always"
livenessProbe:
image:
name: "quay.io/k8scsi/livenessprobe"
pullPolicy: "Always"
# this option is to enable/disable the csi topology feature
# for pure-csi-driver
storagetopology:
enable: false
strictTopology: false
# this option is to enable/disable the debug mode of this app
# for pure-csi-driver
app:
debug: false
# do you want to set pure as the default storageclass?
storageclass:
# create the built-in StorageClasses 'pure', 'pure-file' and 'pure-block'?
createBuiltIn: true
isPureDefault: false
# set the type of backend you want for the 'pure' storageclass
pureBackend: "block"
# specify the service account name for this app
clusterrolebinding:
serviceAccount:
name: "pure"
# support ISCSI or FC, not case sensitive
flasharray:
sanType: "ISCSI"
defaultFSType: "xfs"
defaultFSOpt: "-q"
defaultMountOpt:
- discard
preemptAttachments: "true"
iSCSILoginTimeout: 20
iSCSIAllowedCIDR: ""
flashblade:
snapshotDirectoryEnabled: "false"
# there are two namespaces for this app
# 1. namespace.pure is the backend storage namespace where volumes/shares/etc
# will be created.
# Values for this can only include alphanumeric and underscores. Hyphens are not allowed.
namespace:
pure: "k8s"
# support k8s or openshift
orchestrator:
# name is either 'k8s' or 'openshift'
name: "k8s"
# Use this to specify the base path of Kubelet. It should contain the "plugins", "plugins_registry", and "pods" directories.
# Default is /var/lib/kubelet. For CoreOS and Rancher, this is usually /opt/rke/var/lib/kubelet unless configured otherwise.
basePath: "/var/lib/kubelet"
# arrays specify what storage arrays should be managed by the plugin, this is
# required to be set upon installation. For FlashArrays you must set the "MgmtEndPoint"
# and "APIToken", and for FlashBlades you need the additional "NFSEndPoint" parameter.
# The labels are optional, and can be any key-value pair for use with the "fleet"
# provisioner. An example is shown below:
# arrays:
# FlashArrays:
# - MgmtEndPoint: "1.2.3.4"
# APIToken: "a526a4c6-18b0-a8c9-1afa-3499293574bb"
# Labels:
# topology.purestorage.com/rack: "22"
# topology.purestorage.com/env: "prod"
# - MgmtEndPoint: "1.2.3.5"
# APIToken: "b526a4c6-18b0-a8c9-1afa-3499293574bb"
# FlashBlades:
# - MgmtEndPoint: "1.2.3.6"
# APIToken: "T-c4925090-c9bf-4033-8537-d24ee5669135"
# NFSEndPoint: "1.2.3.7"
# Labels:
# topology.purestorage.com/rack: "7b"
# topology.purestorage.com/env: "dev"
# - MgmtEndPoint: "1.2.3.8"
# APIToken: "T-d4925090-c9bf-4033-8537-d24ee5669135"
# NFSEndPoint: "1.2.3.9"
# Labels:
# topology.purestorage.com/rack: "6a"
arrays:
FlashArrays: []
FlashBlades: []
mounter:
# These values map directly to yaml in the daemonset spec, see the kubernetes docs for info
nodeSelector: {}
# disktype: ssd
# These values map directly to yaml in the daemonset spec, see the kubernetes docs for info
tolerations: []
# - operator: Exists
# These values map directly to yaml in the daemonset spec, see the kubernetes docs for info
affinity: {}
# nodeAffinity:
# requiredDuringSchedulingIgnoredDuringExecution:
# nodeSelectorTerms:
# - matchExpressions:
# - key: e2e-az-NorthSouth
# operator: In
# values:
# - e2e-az-North
# - e2e-az-South
provisioner:
# These values map directly to yaml in the deployment spec, see the kubernetes docs for info
nodeSelector: {}
# disktype: ssd
# These values map directly to yaml in the deployment spec, see the kubernetes docs for info
tolerations: []
# - operator: Exists
# These values map directly to yaml in the deployment spec, see the kubernetes docs for info
affinity: {}
# nodeAffinity:
# requiredDuringSchedulingIgnoredDuringExecution:
# nodeSelectorTerms:
# - matchExpressions:
# - key: e2e-az-NorthSouth
# operator: In
# values:
# - e2e-az-North
# - e2e-az-South