34 lines
1.1 KiB
Cheetah
34 lines
1.1 KiB
Cheetah
# 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: Deployment
|
|
apiVersion: apps/v1
|
|
metadata:
|
|
name: snapshot-controller
|
|
namespace: kube-system
|
|
labels:
|
|
addonmanager.kubernetes.io/mode: Reconcile
|
|
spec:
|
|
replicas: 2
|
|
selector:
|
|
matchLabels:
|
|
app: snapshot-controller
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: snapshot-controller
|
|
spec:
|
|
serviceAccount: snapshot-controller
|
|
containers:
|
|
- name: volume-snapshot-controller
|
|
image: {{.CustomRegistries.SnapshotController | default .ImageRepository | default .Registries.SnapshotController }}{{.Images.SnapshotController}}
|
|
args:
|
|
- "--v=5"
|
|
- "--leader-election=true"
|
|
imagePullPolicy: IfNotPresent
|