Compare commits
3 commits
66a3ce99a3
...
022a821661
| Author | SHA1 | Date | |
|---|---|---|---|
| 022a821661 | |||
| 838b129607 | |||
| 192cd6b3f3 |
3 changed files with 17 additions and 1 deletions
|
|
@ -8,7 +8,7 @@ storage_localpath_default_path: "/mnt/local"
|
||||||
storage_localpath_namespace: "local-path-storage"
|
storage_localpath_namespace: "local-path-storage"
|
||||||
|
|
||||||
storage_longhorn_enabled: false
|
storage_longhorn_enabled: false
|
||||||
storage_longhorn_version: "v1.7.1"
|
storage_longhorn_version: "v1.7.2"
|
||||||
storage_longhorn_namespace: "longhorn-system"
|
storage_longhorn_namespace: "longhorn-system"
|
||||||
|
|
||||||
storage_nfs_enabled: false
|
storage_nfs_enabled: false
|
||||||
|
|
|
||||||
|
|
@ -72,6 +72,21 @@
|
||||||
csi.storage.k8s.io/fsType: ext4
|
csi.storage.k8s.io/fsType: ext4
|
||||||
recurringJobSelector: '[{"name":"snapshot","isGroup":true}, {"name":"backup-daily","isGroup":true}]'
|
recurringJobSelector: '[{"name":"snapshot","isGroup":true}, {"name":"backup-daily","isGroup":true}]'
|
||||||
|
|
||||||
|
- name: Add longhorn & longhorn-crypt VolumeSnapshotClass
|
||||||
|
kubernetes.core.k8s:
|
||||||
|
state: present
|
||||||
|
context: "{{ my_context }}"
|
||||||
|
definition:
|
||||||
|
kind: VolumeSnapshotClass
|
||||||
|
apiVersion: snapshot.storage.k8s.io/v1
|
||||||
|
metadata:
|
||||||
|
name: "{{ item }}"
|
||||||
|
driver: driver.longhorn.io
|
||||||
|
deletionPolicy: Delete
|
||||||
|
with_items:
|
||||||
|
- "longhorn"
|
||||||
|
- "longhorn-crypt"
|
||||||
|
|
||||||
- name: Install Prometheus rules
|
- name: Install Prometheus rules
|
||||||
kubernetes.core.k8s:
|
kubernetes.core.k8s:
|
||||||
state: "present"
|
state: "present"
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,7 @@ defaultSettings:
|
||||||
# defaultLonghornStaticStorageClass: longhorn
|
# defaultLonghornStaticStorageClass: longhorn
|
||||||
# disableSchedulingOnCordonedNode: false
|
# disableSchedulingOnCordonedNode: false
|
||||||
replicaZoneSoftAntiAffinity: false
|
replicaZoneSoftAntiAffinity: false
|
||||||
|
concurrentAutomaticEngineUpgradePerNodeLimit: 3
|
||||||
guaranteed-engine-manager-cpu: 6
|
guaranteed-engine-manager-cpu: 6
|
||||||
guaranteed-replica-manager-cpu: 6
|
guaranteed-replica-manager-cpu: 6
|
||||||
ingress:
|
ingress:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue