khuedoan-homelab/bootstrap/values.yaml

62 lines
1.8 KiB
YAML
Raw Normal View History

refactor(bootstrap)!: switch to Helm with better templates Squashed commit of the following: commit c2d2def93933d5dd6ca5618385de226cd75dab3f Author: Khue Doan <khuedoan98@gmail.com> Date: Mon Dec 27 17:39:32 2021 +0700 refactor(bootstrap): switch branch to master commit a84a3f6ff14ee484c374f4eb13aa92495917249c Author: Khue Doan <khuedoan98@gmail.com> Date: Mon Dec 27 17:36:41 2021 +0700 fix(bootstrap): add missing fields commit 9d8f3d2e2374dba06c76a83241f1ea161094b241 Author: Khue Doan <khuedoan98@gmail.com> Date: Mon Dec 27 17:25:04 2021 +0700 build(bootstrap): update dependencies if needed before apply commit 4d725efa82b4283eb701263a8b76a7c371db1e2b Author: Khue Doan <khuedoan98@gmail.com> Date: Mon Dec 27 17:15:46 2021 +0700 feat(bootstrap): port changes from master commit 7cb8d09a73cc17232314d742de52ae15daac1565 Merge: 3dc1417 d493de3 Author: Khue Doan <khuedoan98@gmail.com> Date: Mon Dec 27 16:33:06 2021 +0700 Merge branch 'master' into bootstrap-rework commit 3dc141723d52ffbe0eaf3a485513dd55bb268c0f Author: Khue Doan <khuedoan98@gmail.com> Date: Wed Dec 1 13:43:28 2021 +0700 build(bootstrap): change make targets commit e81abd30158ca312edc64bfb88f88e7349d16a3e Author: Khue Doan <khuedoan98@gmail.com> Date: Wed Dec 1 13:42:44 2021 +0700 feat(bootstrap): add global values commit 69371afacf7645c935fd89807ec101670d5009d2 Merge: 370b1ca e89aea8 Author: Khue Doan <khuedoan98@gmail.com> Date: Wed Dec 1 12:19:33 2021 +0700 Merge branch 'master' into bootstrap-rework commit 370b1caf46cffcaaad4d2e38ceca8757259cf1e9 Author: Khue Doan <khuedoan98@gmail.com> Date: Wed Nov 17 00:43:13 2021 +0700 fix namespace commit 9ca055cd40b060bf2288832eb78d14a287a2aa46 Author: Khue Doan <khuedoan98@gmail.com> Date: Tue Nov 16 22:05:29 2021 +0700 disable cert commit 1575fc7121b149a4426d6865db0b988b25feaa62 Author: Khue Doan <khuedoan98@gmail.com> Date: Tue Nov 16 21:54:36 2021 +0700 sync wave based on index commit e3dfb4027265e238b02b840e78523b3970f8669d Author: Khue Doan <khuedoan98@gmail.com> Date: Tue Nov 16 21:02:27 2021 +0700 feat(bootstrap): add project per stack commit 68645e0e18cf6f9fcdd75dfc1d9bfb2d85a7d5bb Author: Khue Doan <khuedoan98@gmail.com> Date: Tue Nov 16 11:18:18 2021 +0700 Initial rework for bootstrap
2021-12-27 17:40:47 +07:00
argo-cd:
server:
rbacConfig:
policy.default: role:readonly
config:
users.anonymous.enabled: 'true'
resource.customizations.health.argoproj.io_Application: |
hs = {}
hs.status = "Progressing"
hs.message = ""
if obj.status ~= nil then
if obj.status.health ~= nil then
hs.status = obj.status.health.status
if obj.status.health.message ~= nil then
hs.message = obj.status.health.message
end
end
end
return hs
resource.customizations.health.argoproj.io_ApplicationSet: |
hs = {}
if obj.status ~= nil then
if obj.status.conditions ~= nil then
for i, condition in pairs(obj.status.conditions) do
if condition.type == "ErrorOccurred" and condition.status == "True" then
hs.status = "Degraded"
hs.message = condition.message
return hs
end
if condition.type == "ResourcesUpToDate" and condition.status == "True" then
hs.status = "Healthy"
hs.message = condition.message
return hs
end
end
end
end
hs.status = "Progressing"
hs.message = ""
return hs
ingress:
enabled: true
ingressClassName: nginx
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod
external-dns.alpha.kubernetes.io/target: homelab-tunnel.khuedoan.com
external-dns.alpha.kubernetes.io/cloudflare-proxied: 'true'
hosts:
- &host argocd.khuedoan.com
tls:
- secretName: argocd-tls-certificate
hosts:
- *host
gitops:
repo: https://git.khuedoan.com/ops/homelab
refactor(bootstrap)!: switch to Helm with better templates Squashed commit of the following: commit c2d2def93933d5dd6ca5618385de226cd75dab3f Author: Khue Doan <khuedoan98@gmail.com> Date: Mon Dec 27 17:39:32 2021 +0700 refactor(bootstrap): switch branch to master commit a84a3f6ff14ee484c374f4eb13aa92495917249c Author: Khue Doan <khuedoan98@gmail.com> Date: Mon Dec 27 17:36:41 2021 +0700 fix(bootstrap): add missing fields commit 9d8f3d2e2374dba06c76a83241f1ea161094b241 Author: Khue Doan <khuedoan98@gmail.com> Date: Mon Dec 27 17:25:04 2021 +0700 build(bootstrap): update dependencies if needed before apply commit 4d725efa82b4283eb701263a8b76a7c371db1e2b Author: Khue Doan <khuedoan98@gmail.com> Date: Mon Dec 27 17:15:46 2021 +0700 feat(bootstrap): port changes from master commit 7cb8d09a73cc17232314d742de52ae15daac1565 Merge: 3dc1417 d493de3 Author: Khue Doan <khuedoan98@gmail.com> Date: Mon Dec 27 16:33:06 2021 +0700 Merge branch 'master' into bootstrap-rework commit 3dc141723d52ffbe0eaf3a485513dd55bb268c0f Author: Khue Doan <khuedoan98@gmail.com> Date: Wed Dec 1 13:43:28 2021 +0700 build(bootstrap): change make targets commit e81abd30158ca312edc64bfb88f88e7349d16a3e Author: Khue Doan <khuedoan98@gmail.com> Date: Wed Dec 1 13:42:44 2021 +0700 feat(bootstrap): add global values commit 69371afacf7645c935fd89807ec101670d5009d2 Merge: 370b1ca e89aea8 Author: Khue Doan <khuedoan98@gmail.com> Date: Wed Dec 1 12:19:33 2021 +0700 Merge branch 'master' into bootstrap-rework commit 370b1caf46cffcaaad4d2e38ceca8757259cf1e9 Author: Khue Doan <khuedoan98@gmail.com> Date: Wed Nov 17 00:43:13 2021 +0700 fix namespace commit 9ca055cd40b060bf2288832eb78d14a287a2aa46 Author: Khue Doan <khuedoan98@gmail.com> Date: Tue Nov 16 22:05:29 2021 +0700 disable cert commit 1575fc7121b149a4426d6865db0b988b25feaa62 Author: Khue Doan <khuedoan98@gmail.com> Date: Tue Nov 16 21:54:36 2021 +0700 sync wave based on index commit e3dfb4027265e238b02b840e78523b3970f8669d Author: Khue Doan <khuedoan98@gmail.com> Date: Tue Nov 16 21:02:27 2021 +0700 feat(bootstrap): add project per stack commit 68645e0e18cf6f9fcdd75dfc1d9bfb2d85a7d5bb Author: Khue Doan <khuedoan98@gmail.com> Date: Tue Nov 16 11:18:18 2021 +0700 Initial rework for bootstrap
2021-12-27 17:40:47 +07:00
revision: master
stacks:
- system
- platform
- apps