30 lines
826 B
Cheetah
30 lines
826 B
Cheetah
# This YAML file shows how to deploy the volume snapshot controller
|
|
|
|
---
|
|
kind: StatefulSet
|
|
apiVersion: apps/v1
|
|
metadata:
|
|
name: volume-snapshot-controller
|
|
namespace: kube-system
|
|
labels:
|
|
addonmanager.kubernetes.io/mode: Reconcile
|
|
spec:
|
|
serviceName: "volume-snapshot-controller"
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: volume-snapshot-controller
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: volume-snapshot-controller
|
|
spec:
|
|
serviceAccount: volume-snapshot-controller
|
|
containers:
|
|
- name: volume-snapshot-controller
|
|
# TODO(xyang): Replace with an official image when it is released
|
|
image: {{default .Registries.SnapshotController .ImageRepository}}/{{.Images.SnapshotController}}
|
|
args:
|
|
- "--v=5"
|
|
imagePullPolicy: Always
|