Добавлен ресурс jetstack.yaml и cert-manager.yaml в конфигурацию kustomization.yaml.

This commit is contained in:
2025-06-25 12:37:20 +07:00
parent 5a46edce3c
commit e6d638e095
3 changed files with 40 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
apiVersion: v1
kind: Namespace
metadata:
name: cert-manager
labels:
app.kubernetes.io/component: cert-manager
pod-security.kubernetes.io/enforce: privileged
---
apiVersion: helm.toolkit.fluxcd.io/v2beta1
kind: HelmRelease
metadata:
name: cert-manager
namespace: flux-system
spec:
interval: 1h
targetNamespace: cert-manager
chart:
spec:
chart: cert-manager
version: v1.18.0
sourceRef:
kind: HelmRepository
name: jetstack-repo
namespace: flux-system
interval: 60m
values:
crds:
enabled: true

View File

@@ -4,6 +4,7 @@ resources:
- gotk-components.yaml
- gotk-sync.yaml
- ../../soft/jetstack.yaml
- ../../soft/piraeus.yaml
- ../../soft/cpng.yaml
- ../../soft/ingress-nginx.yaml
@@ -20,6 +21,7 @@ resources:
# - install/piraeus.yaml
# - install/nfs-provisioner.yaml
- install/cert-manager.yaml
- install/ingress-nginx.yaml
- install/metrics-server.yaml
# - install/monitoring.yaml

View File

@@ -0,0 +1,9 @@
apiVersion: source.toolkit.fluxcd.io/v1
kind: HelmRepository
metadata:
name: jetstack-repo
namespace: flux-system
spec:
interval: 1h
url: https://charts.jetstack.io
---