-
Notifications
You must be signed in to change notification settings - Fork 108
/
kustomization.yaml
118 lines (117 loc) · 3.62 KB
/
kustomization.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
# Copyright 2022 DigitalOcean
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# This kustomization allows a dev version of the CSI driver to be installed on a
# DOKS cluster alongside the preconfigured CSI driver. The dev version uses a
# different storage class and provisioner name so that volumes can use either
# one.
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- ../../../deploy/kubernetes/releases/csi-digitalocean-dev/driver.yaml
- ../../../deploy/kubernetes/releases/csi-digitalocean-dev/snapshot-controller.yaml
- ../../../deploy/kubernetes/releases/csi-digitalocean-dev/snapshot-validation-webhook.yaml
nameSuffix: -dev
images:
- name: digitalocean/do-csi-plugin
newName: digitalocean/do-csi-plugin
newTag: dev
patchesStrategicMerge:
- |-
apiVersion: apps/v1
kind: StatefulSet
metadata:
name: csi-do-controller
namespace: kube-system
spec:
serviceName: csi-do-dev
selector:
matchLabels:
app: csi-do-controller-dev
template:
metadata:
labels:
app: csi-do-controller-dev
role: csi-do-dev
spec:
serviceAccount: csi-do-controller-sa-dev
containers:
- name: csi-do-plugin
args:
- --endpoint=$(CSI_ENDPOINT)
- --token=$(DIGITALOCEAN_ACCESS_TOKEN)
- --url=$(DIGITALOCEAN_API_URL)
- --driver-name=dobs.csi.digitalocean.com-dev
- |-
apiVersion: apps/v1
kind: DaemonSet
metadata:
name: csi-do-node
namespace: kube-system
spec:
selector:
matchLabels:
app: csi-do-node-dev
template:
metadata:
labels:
app: csi-do-node-dev
role: csi-do-dev
spec:
serviceAccount: csi-do-node-sa-dev
containers:
- name: csi-do-plugin
args:
- --endpoint=$(CSI_ENDPOINT)
- --url=$(DIGITALOCEAN_API_URL)
- --driver-name=dobs.csi.digitalocean.com-dev
- name: csi-node-driver-registrar
env:
- name: DRIVER_REG_SOCK_PATH
value: /var/lib/kubelet/plugins/dobs.csi.digitalocean.com-dev/csi.sock
lifecycle:
preStop:
exec:
command:
- /bin/sh
- -c
- rm -rf /registration/dobs.csi.digitalocean.com-dev /registration/dobs.csi.digitalocean.com-dev-reg.sock
volumes:
- name: plugin-dir
hostPath:
path: /var/lib/kubelet/plugins/dobs.csi.digitalocean.com-dev
type: DirectoryOrCreate
- |-
apiVersion: storage.k8s.io/v1
kind: StorageClass
metadata:
name: do-block-storage
namespace: kube-system
annotations: null
provisioner: dobs.csi.digitalocean.com-dev
- |-
apiVersion: snapshot.storage.k8s.io/v1
kind: VolumeSnapshotClass
metadata:
name: do-block-storage
annotations: null
driver: dobs.csi.digitalocean.com-dev
- |-
apiVersion: admissionregistration.k8s.io/v1
kind: ValidatingWebhookConfiguration
metadata:
name: "validation-webhook.snapshot.storage.k8s.io"
webhooks:
- name: "validation-webhook.snapshot.storage.k8s.io"
clientConfig:
caBundle: ${CA_BUNDLE}