mirror of
https://gitlab.kube.huskypup.net/Scooby/Homelabv4.git
synced 2026-08-21 11:36:50 +00:00
- Delete nessus Application CRD, manifests, and bootstrap script - Vendor envoy-gateway Helm chart (v1.6.3) locally to work around ArgoCD v3.3.3 Docker Hub OCI resolution bug - Re-enable auto-sync for envoy-gateway Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
16 lines
572 B
YAML
16 lines
572 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: envoy-gateway-config
|
|
namespace: '{{ .Release.Namespace }}'
|
|
labels:
|
|
{{- include "eg.labels" . | nindent 4 }}
|
|
data:
|
|
envoy-gateway.yaml: |
|
|
apiVersion: gateway.envoyproxy.io/v1alpha1
|
|
kind: EnvoyGateway
|
|
{{- $baseEnvoyGatewayConfig := include "eg.default-envoy-gateway-config" . | fromYaml }}
|
|
{{- $userEnvoyGatewayConfig := .Values.config.envoyGateway }}
|
|
{{- $mergedEnvoyGatewayConfig := merge $userEnvoyGatewayConfig $baseEnvoyGatewayConfig }}
|
|
{{- toYaml $mergedEnvoyGatewayConfig | nindent 4 }}
|