mirror of
https://github.com/dredx/prole.git
synced 2026-09-24 15:54:32 +00:00
ArgoCD IO load distribution: Updated k8s/argocd/install.yaml to use hostPath volumes for application-controller (/prole/d001), redis (/prole/d002), and repo-server (/prole/d003). Updated Ansible configure task to create hostPath directories on myrddin.prole.org. K3s configuration and testing: Added test playbooks for kubeconfig rewriting and argument validation. Updated K3s install, configure, and image import tasks. Configured required mounts and host-specific variables for myrddin.prole.org. Miscellaneous: Updated conf/prole.cfg with K3S_TOKEN. Bumped prole-db version and updated recovery manifest templates. Minor UI adjustments in cluster screen. Co-authored-by: Junie <junie@jetbrains.com>
105 lines
2.8 KiB
YAML
105 lines
2.8 KiB
YAML
iscsi_portal: 10.0.0.203
|
|
|
|
iscsi_targets:
|
|
# PROLE-DB-1
|
|
- iqn: "iqn.2000-01.com.synology:synology.Target-11.292d45194a1"
|
|
chap_user: "prole"
|
|
chap_password: "{{ vault_iscsi_prole_password }}"
|
|
mounts:
|
|
- path: /prole/d001
|
|
fstype: xfs
|
|
opts: "_netdev,noatime"
|
|
src: "UUID=c07dc0f2-cf60-4da5-b68e-ea45e86d473e"
|
|
|
|
# PROLE-DB-2
|
|
- iqn: "iqn.2000-01.com.synology:synology.Target-12.292d45194a1"
|
|
chap_user: "prole"
|
|
chap_password: "{{ vault_iscsi_prole_password }}"
|
|
mounts:
|
|
- path: /prole/d002
|
|
fstype: xfs
|
|
opts: "_netdev,noatime"
|
|
src: "UUID=fe087fb0-a321-4767-b838-b4385e81693e"
|
|
|
|
# PROLE-DB-3
|
|
- iqn: "iqn.2000-01.com.synology:synology.Target-13.292d45194a1"
|
|
chap_user: "prole"
|
|
chap_password: "{{ vault_iscsi_prole_password }}"
|
|
mounts:
|
|
- path: /prole/d003
|
|
fstype: xfs
|
|
opts: "_netdev,noatime"
|
|
src: "UUID=757f1ee4-dc23-414b-b595-e3058c0744f0"
|
|
|
|
# PROLE-HOME
|
|
- iqn: "iqn.2000-01.com.synology:synology.Target-17.292d45194a1"
|
|
chap_user: "prole"
|
|
chap_password: "{{ vault_iscsi_prole_password }}"
|
|
mounts:
|
|
- path: /prole/home
|
|
fstype: ext4
|
|
opts: "_netdev,noatime"
|
|
src: "UUID=607718c8-467a-474f-8e36-80ceafe1beb4"
|
|
|
|
# PROLE-LOGS
|
|
- iqn: "iqn.2000-01.com.synology:synology.Target-1.292d45194a1"
|
|
chap_user: "prole"
|
|
chap_password: "{{ vault_iscsi_prole_password }}"
|
|
mounts:
|
|
- path: /prole/logs
|
|
fstype: ext4
|
|
opts: "_netdev,noatime"
|
|
src: "UUID=5335affd-b1ab-4134-a1c0-be88ab965309"
|
|
|
|
# PROLE-K3S
|
|
- iqn: "iqn.2000-01.com.synology:synology.Target-15.292d45194a1"
|
|
chap_user: "prole"
|
|
chap_password: "{{ vault_iscsi_prole_password }}"
|
|
mounts:
|
|
- path: /var/lib/rancher
|
|
fstype: ext4
|
|
opts: "_netdev,noatime"
|
|
src: "UUID=c8320979-d3eb-4b40-93e0-ee452a4b9780"
|
|
|
|
iscsi_absent_mounts:
|
|
- /opt/prole/logs/chrisfu
|
|
|
|
ad_dc_enabled: true
|
|
|
|
k3s_enabled: true
|
|
k3s_cluster_init: false
|
|
k3s_role: server
|
|
k3s_token: "{{ vault_k3s_token | default('') }}" # store this in vault
|
|
k3s_tls_sans:
|
|
- myrddin.prole.org
|
|
k3s_node_labels:
|
|
- "prole.org/role=control"
|
|
|
|
# More forgiving IO/etcd timeouts to reduce error-correction churn on slow storage
|
|
k3s_kube_apiserver_args:
|
|
- "request-timeout=10s"
|
|
- "min-request-timeout=10"
|
|
|
|
k3s_kube_controller_manager_args:
|
|
- "leader-elect-lease-duration=150s"
|
|
- "leader-elect-renew-deadline=100s"
|
|
- "leader-elect-retry-period=20s"
|
|
|
|
k3s_kube_scheduler_args:
|
|
- "leader-elect-lease-duration=150s"
|
|
- "leader-elect-renew-deadline=100s"
|
|
- "leader-elect-retry-period=20s"
|
|
|
|
k3s_kubelet_args:
|
|
- "housekeeping-interval=10s"
|
|
|
|
k3s_write_kubeconfig_mode: "0640"
|
|
k3s_kubeconfig_group: kubeadm
|
|
k3s_kubeconfig_users:
|
|
- pi
|
|
|
|
k3s_required_mounts:
|
|
- /prole/d001
|
|
- /prole/d002
|
|
- /prole/d003
|