mirror of https://git.rancher.io/rke2-charts
38 lines
1.0 KiB
Diff
38 lines
1.0 KiB
Diff
--- charts-original/values.yaml
|
|
+++ charts/values.yaml
|
|
@@ -11,7 +11,7 @@
|
|
httpEndpoint: ":8080"
|
|
|
|
image:
|
|
- repository: registry.k8s.io/sig-storage/snapshot-controller
|
|
+ repository: rancher/mirrored-sig-storage-snapshot-validation-webhook
|
|
pullPolicy: IfNotPresent
|
|
# Overrides the image tag whose default is the chart appVersion.
|
|
tag: ""
|
|
@@ -35,9 +35,16 @@
|
|
|
|
resources: {}
|
|
|
|
- nodeSelector: {}
|
|
+ nodeSelector:
|
|
+ kubernetes.io/os: linux
|
|
|
|
- tolerations: []
|
|
+ tolerations:
|
|
+ - key: "node-role.kubernetes.io/control-plane"
|
|
+ operator: "Exists"
|
|
+ effect: "NoSchedule"
|
|
+ - key: "node-role.kubernetes.io/etcd"
|
|
+ operator: "Exists"
|
|
+ effect: "NoExecute"
|
|
|
|
affinity: {}
|
|
|
|
@@ -80,3 +87,6 @@
|
|
# DNS Policy for controller pod. For Pods running with hostNetwork, set to `ClusterFirstWithHostNet`
|
|
# For further reference: https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/#pod-s-dns-policy.
|
|
dnsPolicy: ClusterFirst
|
|
+
|
|
+global:
|
|
+ systemDefaultRegistry: ""
|