Remove nessus from cluster configuration

Remove all nessus references: ArgoCD project destination, Istio ambient
enrollment, waypoint gateway, authorization policies, ext-authz policy,
TLS certificate, ingress gateway host, Kyverno exclusion, and Authentik
forward-auth blueprint.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Scooby Husky
2026-03-10 21:02:45 -05:00
co-authored by Claude Opus 4.6
parent c5e13377bd
commit f8eea2ed45
8 changed files with 3 additions and 64 deletions
-2
View File
@@ -49,8 +49,6 @@ spec:
server: https://kubernetes.default.svc server: https://kubernetes.default.svc
- namespace: istio-system - namespace: istio-system
server: https://kubernetes.default.svc server: https://kubernetes.default.svc
- namespace: nessus
server: https://kubernetes.default.svc
- namespace: authentik - namespace: authentik
server: https://kubernetes.default.svc server: https://kubernetes.default.svc
clusterResourceWhitelist: clusterResourceWhitelist:
@@ -6,7 +6,7 @@
# endpoint to authenticate requests to protected services. # endpoint to authenticate requests to protected services.
# #
# Services protected by this provider: # Services protected by this provider:
# - Prometheus, Ceph Dashboard, TeslaMate, ESPHome, Frigate, Kiali, Nessus, Netbird # - Prometheus, Ceph Dashboard, TeslaMate, ESPHome, Frigate, Kiali, Netbird
# #
# Services with native OIDC are NOT included here (they handle auth themselves): # Services with native OIDC are NOT included here (they handle auth themselves):
# - GitLab, ArgoCD, Grafana, n8n, Home Assistant, Rancher, Nextcloud # - GitLab, ArgoCD, Grafana, n8n, Home Assistant, Rancher, Nextcloud
@@ -273,30 +273,6 @@ spec:
ipBlocks: ipBlocks:
- "10.244.0.0/16" - "10.244.0.0/16"
---
# --- Nessus: Allow ingress + Prometheus + intra-namespace ---
apiVersion: security.istio.io/v1
kind: AuthorizationPolicy
metadata:
name: allow-nessus-access
namespace: nessus
spec:
action: ALLOW
rules:
# Intra-namespace
- from:
- source:
namespaces:
- nessus
- from:
- source:
namespaces:
- istio-system
- from:
- source:
namespaces:
- prometheus
--- ---
# --- Rancher: Allow ingress + Prometheus + intra-namespace --- # --- Rancher: Allow ingress + Prometheus + intra-namespace ---
apiVersion: security.istio.io/v1 apiVersion: security.istio.io/v1
@@ -25,7 +25,7 @@ spec:
echo "=== Enrolling app namespaces in Istio ambient mesh ===" echo "=== Enrolling app namespaces in Istio ambient mesh ==="
# Enroll app namespaces in ambient mesh # Enroll app namespaces in ambient mesh
APP_NAMESPACES=(argocd gitlab n8n nextcloud teslamate home-assistant frigate guacamole nessus cattle-system) APP_NAMESPACES=(argocd gitlab n8n nextcloud teslamate home-assistant frigate guacamole cattle-system)
for ns in "${APP_NAMESPACES[@]}"; do for ns in "${APP_NAMESPACES[@]}"; do
echo "Enrolling $ns in ambient mesh..." echo "Enrolling $ns in ambient mesh..."
kubectl label namespace "$ns" istio.io/dataplane-mode=ambient --overwrite 2>/dev/null || true kubectl label namespace "$ns" istio.io/dataplane-mode=ambient --overwrite 2>/dev/null || true
@@ -34,7 +34,7 @@ spec:
# Attach waypoint proxies for L7 policy enforcement # Attach waypoint proxies for L7 policy enforcement
echo "Attaching waypoint proxies to app namespaces..." echo "Attaching waypoint proxies to app namespaces..."
WAYPOINT_APP_NAMESPACES=(argocd gitlab n8n nextcloud teslamate home-assistant frigate guacamole nessus) WAYPOINT_APP_NAMESPACES=(argocd gitlab n8n nextcloud teslamate home-assistant frigate guacamole)
for ns in "${WAYPOINT_APP_NAMESPACES[@]}"; do for ns in "${WAYPOINT_APP_NAMESPACES[@]}"; do
kubectl label namespace "$ns" istio.io/use-waypoint=waypoint --overwrite 2>/dev/null || true kubectl label namespace "$ns" istio.io/use-waypoint=waypoint --overwrite 2>/dev/null || true
done done
@@ -31,7 +31,6 @@ spec:
- everest.kube.huskypup.net - everest.kube.huskypup.net
- rancher.kube.huskypup.net - rancher.kube.huskypup.net
- netbird.kube.huskypup.net - netbird.kube.huskypup.net
- nessus.kube.huskypup.net
- scylla-manager.kube.huskypup.net - scylla-manager.kube.huskypup.net
--- ---
@@ -71,7 +70,6 @@ spec:
- everest.kube.huskypup.net - everest.kube.huskypup.net
- rancher.kube.huskypup.net - rancher.kube.huskypup.net
- netbird.kube.huskypup.net - netbird.kube.huskypup.net
- nessus.kube.huskypup.net
- scylla-manager.kube.huskypup.net - scylla-manager.kube.huskypup.net
tls: tls:
mode: SIMPLE mode: SIMPLE
@@ -119,21 +119,3 @@ spec:
- operation: - operation:
hosts: hosts:
- scylla-manager.kube.huskypup.net - scylla-manager.kube.huskypup.net
---
# --- Nessus: Require Authentik auth ---
# NOTE: Namespace 'nessus' must exist before applying this policy.
# This policy will be skipped if the namespace doesn't exist yet.
apiVersion: security.istio.io/v1
kind: AuthorizationPolicy
metadata:
name: ext-authz-nessus
namespace: nessus
spec:
action: CUSTOM
provider:
name: authentik-ext-authz
rules:
- to:
- operation:
hosts:
- nessus.kube.huskypup.net
@@ -238,20 +238,6 @@ spec:
--- ---
apiVersion: gateway.networking.k8s.io/v1 apiVersion: gateway.networking.k8s.io/v1
kind: Gateway kind: Gateway
metadata:
name: waypoint
namespace: nessus
labels:
istio.io/waypoint-for: service
spec:
gatewayClassName: istio-waypoint
listeners:
- name: mesh
port: 15008
protocol: HBONE
---
apiVersion: gateway.networking.k8s.io/v1
kind: Gateway
metadata: metadata:
name: waypoint name: waypoint
namespace: crowdsec namespace: crowdsec
@@ -59,7 +59,6 @@ spec:
- authentik - authentik
- checkov - checkov
- n8n - n8n
- nessus
validate: validate:
allowExistingViolations: true allowExistingViolations: true
message: >- message: >-