Merge pull request #606 from itspngu/add_kustomization_manifests
Add kustomization manifests to CRDs and controller components
This commit is contained in:
@@ -62,20 +62,19 @@ If your Kubernetes distribution does not bundle the snapshot controller, you may
|
|||||||
There is a new validating webhook server which provides tightened validation on snapshot objects. The cluster admin or Kubernetes distribution admin should install the webhook alongside the snapshot controllers and CRDs. More details [below](#validating-webhook).
|
There is a new validating webhook server which provides tightened validation on snapshot objects. The cluster admin or Kubernetes distribution admin should install the webhook alongside the snapshot controllers and CRDs. More details [below](#validating-webhook).
|
||||||
|
|
||||||
Install Snapshot CRDs:
|
Install Snapshot CRDs:
|
||||||
* kubectl create -f client/config/crd
|
* kubectl kustomize client/config/crd | kubectl create -f -
|
||||||
* https://github.com/kubernetes-csi/external-snapshotter/tree/master/client/config/crd
|
* https://github.com/kubernetes-csi/external-snapshotter/tree/master/client/config/crd
|
||||||
* Do this once per cluster
|
* Do this once per cluster
|
||||||
|
|
||||||
Install Common Snapshot Controller:
|
Install Common Snapshot Controller:
|
||||||
* Update the namespace to an appropriate value for your environment (e.g. kube-system)
|
* Update the namespace to an appropriate value for your environment (e.g. kube-system)
|
||||||
* kubectl create -f deploy/kubernetes/snapshot-controller
|
* kubectl -n kube-system kustomize deploy/kubernetes/snapshot-controller | kubectl create -f -
|
||||||
* https://github.com/kubernetes-csi/external-snapshotter/tree/master/deploy/kubernetes/snapshot-controller
|
|
||||||
* Do this once per cluster
|
* Do this once per cluster
|
||||||
|
|
||||||
Install CSI Driver:
|
Install CSI Driver:
|
||||||
* Follow instructions provided by your CSI Driver vendor.
|
* Follow instructions provided by your CSI Driver vendor.
|
||||||
* Here is an example to install the sample hostpath CSI driver
|
* Here is an example to install the sample hostpath CSI driver
|
||||||
* kubectl create -f deploy/kubernetes/csi-snapshotter
|
* kubectl kustomize deploy/kubernetes/csi-snapshotter | kubectl create -f -
|
||||||
* https://github.com/kubernetes-csi/external-snapshotter/tree/master/deploy/kubernetes/csi-snapshotter
|
* https://github.com/kubernetes-csi/external-snapshotter/tree/master/deploy/kubernetes/csi-snapshotter
|
||||||
|
|
||||||
### Validating Webhook
|
### Validating Webhook
|
||||||
|
6
client/config/crd/kustomization.yaml
Normal file
6
client/config/crd/kustomization.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
|
kind: Kustomization
|
||||||
|
resources:
|
||||||
|
- snapshot.storage.k8s.io_volumesnapshotclasses.yaml
|
||||||
|
- snapshot.storage.k8s.io_volumesnapshotcontents.yaml
|
||||||
|
- snapshot.storage.k8s.io_volumesnapshots.yaml
|
6
deploy/kubernetes/csi-snapshotter/kustomization.yaml
Normal file
6
deploy/kubernetes/csi-snapshotter/kustomization.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
|
kind: Kustomization
|
||||||
|
resources:
|
||||||
|
- rbac-csi-snapshotter.yaml
|
||||||
|
- rbac-external-provisioner.yaml
|
||||||
|
- setup-csi-snapshotter.yaml
|
@@ -120,4 +120,4 @@ spec:
|
|||||||
mountPath: /csi
|
mountPath: /csi
|
||||||
volumes:
|
volumes:
|
||||||
- name: socket-dir
|
- name: socket-dir
|
||||||
emptyDir:
|
emptyDir: {}
|
||||||
|
5
deploy/kubernetes/snapshot-controller/kustomization.yaml
Normal file
5
deploy/kubernetes/snapshot-controller/kustomization.yaml
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
|
kind: Kustomization
|
||||||
|
resources:
|
||||||
|
- rbac-snapshot-controller.yaml
|
||||||
|
- setup-snapshot-controller.yaml
|
Reference in New Issue
Block a user