UNCLASSIFIED
Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
Platform One
Big Bang
P
Packages
Security Tools
Twistlock
Compare Revisions
7ca717ffcdafdb4e4c52452c105cf2667462e393...68736f6080d063f5e654398b4e27f01cccd8ff83
Commits (2)
Side-car Scraping Network Policy
· 79d2735f
Branden Cobb
authored
Aug 26, 2021
79d2735f
Merge branch 'side-car-scraping' into 'main'
· 68736f60
Ryan Garcia
authored
Aug 26, 2021
Side-car Scraping Network Policy See merge request
!30
68736f60
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
29 additions
and
1 deletion
+29
-1
CHANGELOG.md
CHANGELOG.md
+6
-0
chart/Chart.yaml
chart/Chart.yaml
+1
-1
chart/templates/networkpolicies/allow-sidecar-scraping.yaml
chart/templates/networkpolicies/allow-sidecar-scraping.yaml
+22
-0
No files found.
CHANGELOG.md
View file @
68736f60
...
...
@@ -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.8-bb.1] - 2021-08-26
## Added
-
Added istio sidecar scraping network policy
## [0.0.8-bb.0] - 2021-08-16
### Added
...
...
chart/Chart.yaml
View file @
68736f60
apiVersion
:
v2
name
:
twistlock
version
:
0.0.8-bb.
0
version
:
0.0.8-bb.
1
appVersion
:
21.04.439
dependencies
:
-
name
:
gluon
...
...
chart/templates/networkpolicies/allow-sidecar-scraping.yaml
0 → 100644
View file @
68736f60
{{
- if and .Values.networkPolicies.enabled .Values.istio.enabled
}}
apiVersion
:
networking.k8s.io/v1
kind
:
NetworkPolicy
metadata
:
name
:
allow-sidecar-scraping
namespace
:
{{
.Release.Namespace
}}
spec
:
podSelector
:
{}
policyTypes
:
-
Ingress
ingress
:
-
from
:
-
namespaceSelector
:
matchLabels
:
app.kubernetes.io/name
:
monitoring
podSelector
:
matchLabels
:
app
:
prometheus
ports
:
-
protocol
:
TCP
port
:
15020
{{
- end
}}