UNCLASSIFIED

Commit 1c22846a authored by Brendon Lloyd's avatar Brendon Lloyd Committed by Micah Nagel
Browse files

Add openshift toggle, conditionally add port 5353 egress. Changing...

Add openshift toggle, conditionally add port 5353 egress. Changing "openshift:" to true in values.yaml will enable.
parent 093139e7
...@@ -4,6 +4,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ...@@ -4,6 +4,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
--- ---
## [1.13.0-bb.4]
### Fixed
- update allow-kube-dns NP to conditionally add port 5353 egress when `.Values.anchoreGlobal.openShiftDeployment` is `true`
## [1.13.0-bb.3] ## [1.13.0-bb.3]
### Fixed ### Fixed
- incorrect label on `allow-egress-enterprise-engine-upgrade-job` network policy - incorrect label on `allow-egress-enterprise-engine-upgrade-job` network policy
......
apiVersion: v2 apiVersion: v2
name: anchore-engine name: anchore-engine
version: 1.13.0-bb.3 version: 1.13.0-bb.4
appVersion: 0.10.0 appVersion: 0.10.0
description: Anchore container analysis and policy evaluation engine service description: Anchore container analysis and policy evaluation engine service
keywords: keywords:
......
...@@ -19,4 +19,8 @@ spec: ...@@ -19,4 +19,8 @@ spec:
protocol: UDP protocol: UDP
- port: 443 - port: 443
protocol: TCP protocol: TCP
{{- if .Values.anchoreGlobal.openShiftDeployment }}
- port: 5353
protocol: UDP
{{- end }}
{{- end }} {{- end }}
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