Skip to content

Commit

Permalink
Add missing grafana cloud port (#1522)
Browse files Browse the repository at this point in the history
  • Loading branch information
QuentinBisson authored Feb 13, 2024
1 parent 268f152 commit 4d6aa42
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Fixed

- Add grafana-cloud squid proxy port to prometheus CNP.

## [4.67.1] - 2024-02-13

### Fixed
Expand Down
5 changes: 5 additions & 0 deletions service/controller/resource/ciliumnetpol/resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,14 @@ func toCiliumNetworkPolicy(v interface{}) (*unstructured.Unstructured, error) {
map[string]string{
"port": "443",
},
// Grafana cloud mimir port
map[string]string{
"port": "6443",
},
// Grafana cloud squid proxy port
map[string]string{
"port": "3128",
},
},
},
},
Expand Down

0 comments on commit 4d6aa42

Please sign in to comment.