-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(guacamole-chart): Add NetworkPolicy manifests to defend pods #10
base: main
Are you sure you want to change the base?
Conversation
7c7ed17
to
7b2b569
Compare
This reverts commit 3d1153c.
…-to-defend-pods' into feat/add-networkpolicy-manifests-to-defend-pods
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Need to add fields to the values.yaml
to conditionally enable / disable creating each of the network policies.
Each will need values.yaml
fields for extraIngress: []
and extraEgress: []
which will be appended to the list of rules you are putting in the NetworkPolicy manifests.
Something like this pattern maybe?
controller:
networkPolicy:
enabled: true
extraIngress: []
extraEgress:
- podSelector:
matchLabels:
foo: bar
No description provided.