38 lines
795 B
YAML
38 lines
795 B
YAML
---
|
|
apiVersion: v1
|
|
kind: Namespace
|
|
metadata:
|
|
name: cert-manager
|
|
---
|
|
apiVersion: source.toolkit.fluxcd.io/v1
|
|
kind: OCIRepository
|
|
metadata:
|
|
name: cert-manager
|
|
namespace: cert-manager
|
|
spec:
|
|
interval: 5m0s
|
|
url: oci://quay.io/jetstack/charts/cert-manager
|
|
layerSelector:
|
|
mediaType: "application/vnd.cncf.helm.chart.content.v1.tar+gzip"
|
|
operation: copy
|
|
ref:
|
|
tag: "v1.19.1"
|
|
---
|
|
apiVersion: helm.toolkit.fluxcd.io/v2
|
|
kind: HelmRelease
|
|
metadata:
|
|
name: cert-manager
|
|
namespace: cert-manager
|
|
spec:
|
|
interval: 30m
|
|
chartRef:
|
|
kind: OCIRepository
|
|
name: cert-manager
|
|
namespace: cert-manager
|
|
values:
|
|
crds:
|
|
enabled: true
|
|
config:
|
|
apiVersion: controller.config.cert-manager.io/v1alpha1
|
|
kind: ControllerConfiguration
|
|
enableGatewayAPI: true |