Compare commits
No commits in common. "b231db641af6430cab9a1b91db97d17018cf4397" and "bd8071abbbb5420ca706a909c2d50af463a149e5" have entirely different histories.
b231db641a
...
bd8071abbb
3 changed files with 16 additions and 7 deletions
|
|
@ -3,7 +3,7 @@ my_context: minikube
|
||||||
storage_manual_enabled: true
|
storage_manual_enabled: true
|
||||||
|
|
||||||
storage_localpath_enabled: true
|
storage_localpath_enabled: true
|
||||||
storage_localpath_version: "v0.0.23"
|
storage_localpath_version: "v0.0.22"
|
||||||
storage_localpath_default_path: "/mnt/local"
|
storage_localpath_default_path: "/mnt/local"
|
||||||
storage_localpath_namespace: "local-path-storage"
|
storage_localpath_namespace: "local-path-storage"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -27,9 +27,18 @@
|
||||||
namespace: "{{ storage_longhorn_namespace }}"
|
namespace: "{{ storage_longhorn_namespace }}"
|
||||||
value: "{{ item.value }}"
|
value: "{{ item.value }}"
|
||||||
with_items:
|
with_items:
|
||||||
- { name: "guaranteed-engine-manager-cpu", value: "6" }
|
- {
|
||||||
- { name: "guaranteed-replica-manager-cpu", value: "6" }
|
name: "guaranteed-engine-manager-cpu",
|
||||||
- { name: "default-data-locality", value: "best-effort" }
|
value: "6"
|
||||||
|
}
|
||||||
|
- {
|
||||||
|
name: "guaranteed-replica-manager-cpu",
|
||||||
|
value: "6"
|
||||||
|
}
|
||||||
|
- {
|
||||||
|
name: "default-data-locality",
|
||||||
|
value: "best-effort"
|
||||||
|
}
|
||||||
|
|
||||||
- name: Install longhorn Recurring Jobs
|
- name: Install longhorn Recurring Jobs
|
||||||
kubernetes.core.k8s:
|
kubernetes.core.k8s:
|
||||||
|
|
@ -37,7 +46,7 @@
|
||||||
context: "{{ my_context }}"
|
context: "{{ my_context }}"
|
||||||
apply: true
|
apply: true
|
||||||
namespace: "{{ storage_longhorn_namespace }}"
|
namespace: "{{ storage_longhorn_namespace }}"
|
||||||
resource_definition: "{{ lookup('template', 'longhorn/longhorn_recurringjob.yml.j2') | from_yaml }}"
|
resource_definition: "{{ lookup('template', 'longhorn/longhorn/longhorn_recurringjob.yml.j2') | from_yaml }}"
|
||||||
with_items:
|
with_items:
|
||||||
- {
|
- {
|
||||||
name: "snapshot",
|
name: "snapshot",
|
||||||
|
|
|
||||||
|
|
@ -7,11 +7,11 @@ persistence:
|
||||||
jobList: '[
|
jobList: '[
|
||||||
{
|
{
|
||||||
"name":"snapshot",
|
"name":"snapshot",
|
||||||
"isGroup":true
|
"isGroup":true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name":"backup-daily",
|
"name":"backup-daily",
|
||||||
"isGroup":true
|
"isGroup":true,
|
||||||
}
|
}
|
||||||
]'
|
]'
|
||||||
defaultSettings:
|
defaultSettings:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue