2ff7ab8d40
* add snapshot-controller and v1beta1 snapshot api * fix typo * udpate manifest to v1beta1 * update * update manifests * fix spelling * wait until crd is applied * fix missing info in kube module * revert snapshotclass * add snapshot crds before applying the csi driver * add crds, missed them in last commit * use pull policy from kubespray
32 lines
1 KiB
Django/Jinja
32 lines
1 KiB
Django/Jinja
# This YAML file shows how to deploy the snapshot controller
|
|
|
|
# The snapshot controller implements the control loop for CSI snapshot functionality.
|
|
# It should be installed as part of the base Kubernetes distribution in an appropriate
|
|
# namespace for components implementing base system functionality. For installing with
|
|
# Vanilla Kubernetes, kube-system makes sense for the namespace.
|
|
|
|
---
|
|
kind: StatefulSet
|
|
apiVersion: apps/v1
|
|
metadata:
|
|
name: snapshot-controller
|
|
namespace: kube-system
|
|
spec:
|
|
serviceName: "snapshot-controller"
|
|
replicas: {{ snapshot_controller_replicas }}
|
|
selector:
|
|
matchLabels:
|
|
app: snapshot-controller
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: snapshot-controller
|
|
spec:
|
|
serviceAccount: snapshot-controller
|
|
containers:
|
|
- name: snapshot-controller
|
|
image: {{ snapshot_controller_image_repo }}:{{ snapshot_controller_image_tag }}
|
|
args:
|
|
- "--v=5"
|
|
- "--leader-election=false"
|
|
imagePullPolicy: {{ k8s_image_pull_policy }}
|