You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem: The new guest directory is not referenced in the parent kustomization file at kubernetes/apps/talos1018/kustomization.yaml. This means Flux will not discover or deploy any of the resources in this directory.
Impact: The entire deployment added by this PR (namespace, network policies, RIPE Atlas probe) will not be applied to the cluster.
Current state: The parent kustomization.yaml references other category directories like ./network, ./security, ./observability, but ./guest is missing from the resources list.
Fix: Add - ./guest to the resources list in kubernetes/apps/talos1018/kustomization.yaml:
Problem: The guest-default-deny CiliumNetworkPolicy uses egressDeny and ingressDeny fields, which in Cilium always take precedence over egress allow rules. This means the allow rules in guest-allow-internet will never take effect.
Impact: The RIPE Atlas probe will have no network connectivity at all (no DNS, no internet access), making it completely non-functional.
Root cause: In Cilium's policy model, deny policies always take precedence over allow policies. The egressDeny: toEntities: all rule blocks all egress traffic, and the egress allow rules in the second policy cannot override it.
Fix: Replace the explicit deny rules with an empty egress/ingress list to achieve default-deny semantics:
# network-policy-default.yaml
---
apiVersion: "cilium.io/v2"kind: CiliumNetworkPolicymetadata:
name: guest-default-denynamespace: guestspec:
endpointSelector: {}egress: [] # Empty list enables policy enforcement with default denyingress: [] # Empty list enables policy enforcement with default deny
This establishes default-deny behavior (policy enforcement is active, but no traffic is allowed) without using unoverridable deny rules, allowing the guest-allow-internet policy's allow rules to work correctly.
Both issues should be addressed to ensure the RIPE Atlas probe deployment functions correctly.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.