UNCLASSIFIED

Commit b9bdd4e2 authored by Ryan Garcia's avatar Ryan Garcia
Browse files

Merge branch 'blloyd_issue_568_dns5353' into 'main'

Add openshift toggle. If it's set, add port 5353 egress rule.

See merge request !26
parents 7dbd5f46 ec18bb6a
Pipeline #383819 failed with stages
in 2 minutes and 35 seconds
......@@ -3,6 +3,12 @@
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
---
## [0.0.6-bb.1] - 2021-07-21
### Added
- Add openshift toggle. If it's set, add port 5353 egress rule.
## [0.0.6-bb.0] - 2021-06-09
......
apiVersion: v2
name: twistlock
version: 0.0.6-bb.0
version: 0.0.6-bb.1
appVersion: 21.04.412
dependencies:
- name: gluon
......
......@@ -11,6 +11,10 @@ spec:
ports:
- port: 53
protocol: UDP
{{- if .Values.openshift }}
- port: 5353
protocol: UDP
{{- end }}
podSelector: {} # all pods in Release namespace
policyTypes:
- Egress
......
......@@ -69,3 +69,5 @@ resources:
requests: {}
# memory: 256Mi
# cpu: 100m
openshift: false
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment