1
0
Fork 0
home-stack-kustomize/kustomize/env/prod/kustomization.yaml

137 lines
3.5 KiB
YAML
Raw Normal View History

2022-09-23 23:11:09 +00:00
resources:
- ../../overlays/system
2021-09-06 23:45:09 +00:00
# - ../../namespaces/kubernetes-dashboard
- ../../overlays/gitea
# - ../../overlays/woodpecker
# - ../../overlays/gitlab
- ../../overlays/monitoring
- ../../overlays/nextcloud
2024-01-18 02:12:36 +00:00
# - ../../overlays/home-assistant
2023-06-17 04:47:17 +00:00
- ../../overlays/jellyfin
2023-06-20 23:55:33 +00:00
- ../../overlays/deluge
2023-12-26 00:25:48 +00:00
- ../../overlays/actual
2024-02-06 00:14:44 +00:00
- ../../overlays/llm
2023-10-20 03:48:14 +00:00
- probes/snmp-exporter.yaml
- resources/litellm-externalsecret.yaml
- resources/litellm-stripprefix.yaml
2021-08-26 16:42:41 +00:00
2022-08-28 22:29:06 +00:00
# resources:
# - probes/external-services-bobcat-miner.yaml
2021-09-06 23:45:09 +00:00
buildMetadata:
- originAnnotations
2021-08-26 16:42:48 +00:00
images:
- name: gitea/gitea
2023-11-17 18:03:48 +00:00
newTag: 1.21.0
- name: grafana/grafana
2023-11-17 18:03:48 +00:00
newTag: 10.2.1
2022-08-28 22:29:06 +00:00
# - name: prom/node-exporter
# newTag: v0.18.1
- name: prom/blackbox-exporter
newName: badjware/blackbox-exporter-tweak
2022-08-28 22:29:06 +00:00
newTag: 0.21.1
2023-09-22 04:48:09 +00:00
# - name: drone/drone
# newTag: 2.14.0
# - name: drone/drone-runner-kube
# newTag: 1.0.0-rc.3
2021-08-27 19:57:29 +00:00
- name: nextcloud
2024-02-03 03:34:32 +00:00
newTag: 28.0.2
2023-06-17 04:47:01 +00:00
- name: collabora/code
2023-11-17 18:03:48 +00:00
newTag: 23.05.5.4.1
2023-06-17 04:47:01 +00:00
- name: nextcloud/aio-imaginary
newTag: 20230613_120442-latest-arm64
2023-06-10 22:15:39 +00:00
- name: homeassistant/home-assistant
2023-10-20 03:48:14 +00:00
newTag: 2023.10.2
2023-06-17 04:47:17 +00:00
- name: jellyfin/jellyfin
2023-11-17 18:03:48 +00:00
newTag: 10.8.12
2023-06-29 14:22:33 +00:00
- name: lscr.io/linuxserver/deluge
newTag: latest
2021-08-27 19:57:29 +00:00
- name: postgres
2021-08-29 05:15:00 +00:00
newTag: 9.6.23
2021-08-28 03:54:21 +00:00
- name: redis
newTag: 6.2.10
- name: bitnami/kubectl
2023-11-17 18:03:48 +00:00
newTag: "1.26"
2024-02-17 07:01:24 +00:00
- name: bitnami/kubectl
newTag: "1.26"
- name: ghcr.io/danny-avila/librechat
newTag: v0.6.10
- name: ghcr.io/berriai/litellm
newTag: main-v1.24.6
2021-08-26 16:42:41 +00:00
2024-02-06 00:14:44 +00:00
configMapGenerator:
- name: librechat-server-config
namespace: llm
behavior: replace
files:
- librechat.yaml=configurations/librechat/librechat.yaml
- name: librechat-litellm-config
namespace: llm
behavior: replace
files:
- config.yml=configurations/litellm/config.yml
2024-01-18 02:12:36 +00:00
# - name: home-assistant-server-config
# namespace: home-assistant
# behavior: replace
# files:
# - configuration.yaml=configurations/home-assistant/configuration.yaml
# - name: ecommerce-exporter-config
# namespace: monitoring
# behavior: replace
# files:
# - ecommerce-exporter.yml=configurations/ecommerce-exporter/ecommerce-exporter.yml
2022-11-01 04:45:57 +00:00
2021-08-26 16:42:48 +00:00
secretGenerator:
- name: prometheus-additional-scrape-configs
2022-09-23 23:11:09 +00:00
type: Opaque
namespace: monitoring
behavior: replace
files:
- prometheus-additional.yaml=configurations/prometheus/prometheus-additional.yaml
2021-08-26 16:42:41 +00:00
2023-02-05 03:11:39 +00:00
# allow "kubectl apply -l app.kubernetes.io/managed-by=kustomize --prune ..."
2021-09-26 21:00:29 +00:00
commonLabels:
2023-02-05 03:11:39 +00:00
app.kubernetes.io/managed-by: kustomize
2021-08-26 16:42:41 +00:00
patches:
2021-12-13 05:44:49 +00:00
- target:
version: v1
kind: Deployment
name: nextcloud-server
2021-12-13 05:44:49 +00:00
path: patches/nextcloud-deployment-patch.yaml
2023-06-17 04:47:17 +00:00
- target:
version: v1
kind: Deployment
name: jellyfin-server
path: patches/jellyfin-deployment-patch.yaml
2023-06-20 23:55:33 +00:00
- target:
version: v1
kind: Deployment
name: deluge-server
path: patches/deluge-deployment-patch.yaml
- target:
version: v1
kind: Deployment
name: librechat-server
path: patches/librechat-deployment-patch.yaml
- target:
version: v1
kind: Ingress
name: librechat-server
path: patches/librechat-ingress-patch.yaml
- target:
version: v1
kind: Deployment
name: librechat-litellm
path: patches/litellm-deployment-patch.yaml
# - target:
# version: v1
# kind: Prometheus
# name: prometheus
# path: patches/prometheus-patch.yaml
2021-09-06 23:45:09 +00:00
# patchesStrategicMerge:
# - patches/blackbox-exporter-probe-patch.yaml