2020-09-03 11:01:43 +00:00
|
|
|
# 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.
|
|
|
|
|
|
|
|
---
|
2021-09-06 11:24:29 +00:00
|
|
|
kind: Deployment
|
2020-09-03 11:01:43 +00:00
|
|
|
apiVersion: apps/v1
|
|
|
|
metadata:
|
|
|
|
name: snapshot-controller
|
2022-01-14 20:58:26 +00:00
|
|
|
namespace: {{ snapshot_controller_namespace }}
|
2020-09-03 11:01:43 +00:00
|
|
|
spec:
|
|
|
|
replicas: {{ snapshot_controller_replicas }}
|
|
|
|
selector:
|
|
|
|
matchLabels:
|
|
|
|
app: snapshot-controller
|
2021-09-06 11:24:29 +00:00
|
|
|
# the snapshot controller won't be marked as ready if the v1 CRDs are unavailable
|
|
|
|
# in #504 the snapshot-controller will exit after around 7.5 seconds if it
|
|
|
|
# can't find the v1 CRDs so this value should be greater than that
|
|
|
|
minReadySeconds: 15
|
|
|
|
strategy:
|
|
|
|
rollingUpdate:
|
|
|
|
maxSurge: 0
|
|
|
|
maxUnavailable: 1
|
|
|
|
type: RollingUpdate
|
2020-09-03 11:01:43 +00:00
|
|
|
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 }}
|