mirror of
https://github.com/morten-olsen/homelab-nuclei-operator.git
synced 2026-02-07 18:06:23 +01:00
34 lines
736 B
YAML
34 lines
736 B
YAML
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
|
|
# Reference the default configuration
|
|
resources:
|
|
- ../default
|
|
|
|
# Namespace for production deployment
|
|
namespace: nuclei-operator-system
|
|
|
|
# Common labels for all resources
|
|
commonLabels:
|
|
environment: production
|
|
|
|
# Production-specific patches
|
|
patches:
|
|
- path: manager_patch.yaml
|
|
target:
|
|
kind: Deployment
|
|
name: controller-manager
|
|
|
|
# Image configuration for production
|
|
images:
|
|
- name: controller
|
|
newName: ghcr.io/mortenolsen/nuclei-operator
|
|
newTag: latest
|
|
|
|
# ConfigMap generator for production settings
|
|
configMapGenerator:
|
|
- name: nuclei-config
|
|
literals:
|
|
- NUCLEI_TIMEOUT=60m
|
|
- NUCLEI_RATE_LIMIT=150
|
|
- NUCLEI_BULK_SIZE=25 |