-
Notifications
You must be signed in to change notification settings - Fork 464
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create ServiceMonitor for operator metrics programmatically
Signed-off-by: Israel Blancas <[email protected]>
- Loading branch information
Israel Blancas
committed
Oct 18, 2024
1 parent
b703b78
commit 19f5dbc
Showing
21 changed files
with
352 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix' | ||
change_type: enhancement | ||
|
||
# The name of the component, or a single word describing the area of concern, (e.g. collector, target allocator, auto-instrumentation, opamp, github action) | ||
component: operator | ||
|
||
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`). | ||
note: Programmatically create the `ServiceMonitor` for the operator metrics endpoint, ensuring correct namespace handling and dynamic configuration. | ||
|
||
# One or more tracking issues related to the change | ||
issues: [3370] | ||
|
||
# (Optional) One or more lines of additional information to render under the primary note. | ||
# These lines will be padded with 2 spaces and then inserted directly into the document. | ||
# Use pipe (|) for multiline entries. | ||
subtext: | | ||
Previously, the `ServiceMonitor` was created statically from a manifest file, causing failures when the | ||
operator was deployed in a non-default namespace. This enhancement ensures automatic adjustment of the | ||
`serverName` and seamless metrics scraping. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
...ests/opentelemetry-operator-prometheus-rules_monitoring.coreos.com_v1_prometheusrule.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
apiVersion: monitoring.coreos.com/v1 | ||
kind: PrometheusRule | ||
metadata: | ||
labels: | ||
app.kubernetes.io/managed-by: operator-lifecycle-manager | ||
app.kubernetes.io/name: opentelemetry-operator | ||
app.kubernetes.io/part-of: opentelemetry-operator | ||
name: opentelemetry-operator-prometheus-rules | ||
spec: | ||
groups: | ||
- name: opentelemetry-operator-monitoring.rules | ||
rules: | ||
- expr: sum by (type) (opentelemetry_collector_receivers) | ||
record: type:opentelemetry_collector_receivers:sum | ||
- expr: sum by (type) (opentelemetry_collector_exporters) | ||
record: type:opentelemetry_collector_exporters:sum | ||
- expr: sum by (type) (opentelemetry_collector_processors) | ||
record: type:opentelemetry_collector_processors:sum | ||
- expr: sum by (type) (opentelemetry_collector_extensions) | ||
record: type:opentelemetry_collector_extensions:sum | ||
- expr: sum by (type) (opentelemetry_collector_connectors) | ||
record: type:opentelemetry_collector_connectors:sum | ||
- expr: sum by (type) (opentelemetry_collector_info) | ||
record: type:opentelemetry_collector_info:sum |
22 changes: 22 additions & 0 deletions
22
...nshift/manifests/opentelemetry-operator-prometheus_rbac.authorization.k8s.io_v1_role.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: Role | ||
metadata: | ||
annotations: | ||
include.release.openshift.io/self-managed-high-availability: "true" | ||
include.release.openshift.io/single-node-developer: "true" | ||
labels: | ||
app.kubernetes.io/managed-by: operator-lifecycle-manager | ||
app.kubernetes.io/name: opentelemetry-operator | ||
app.kubernetes.io/part-of: opentelemetry-operator | ||
name: opentelemetry-operator-prometheus | ||
rules: | ||
- apiGroups: | ||
- "" | ||
resources: | ||
- services | ||
- endpoints | ||
- pods | ||
verbs: | ||
- get | ||
- list | ||
- watch |
19 changes: 19 additions & 0 deletions
19
...manifests/opentelemetry-operator-prometheus_rbac.authorization.k8s.io_v1_rolebinding.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: RoleBinding | ||
metadata: | ||
annotations: | ||
include.release.openshift.io/self-managed-high-availability: "true" | ||
include.release.openshift.io/single-node-developer: "true" | ||
labels: | ||
app.kubernetes.io/managed-by: operator-lifecycle-manager | ||
app.kubernetes.io/name: opentelemetry-operator | ||
app.kubernetes.io/part-of: opentelemetry-operator | ||
name: opentelemetry-operator-prometheus | ||
roleRef: | ||
apiGroup: rbac.authorization.k8s.io | ||
kind: Role | ||
name: opentelemetry-operator-prometheus | ||
subjects: | ||
- kind: ServiceAccount | ||
name: prometheus-k8s | ||
namespace: openshift-monitoring |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,21 @@ | ||
resources: | ||
- ../../default | ||
|
||
labels: | ||
- pairs: | ||
app.kubernetes.io/name: opentelemetry-operator | ||
app.kubernetes.io/part-of: opentelemetry-operator | ||
app.kubernetes.io/managed-by: operator-lifecycle-manager | ||
includeSelectors: true | ||
|
||
patches: | ||
- target: | ||
group: apps | ||
version: v1 | ||
kind: Deployment | ||
name: controller-manager | ||
path: manager-patch.yaml | ||
|
||
patchesStrategicMerge: | ||
- metrics_service_tls_patch.yaml | ||
- manager_auth_proxy_tls_patch.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
config/overlays/openshift/manager_auth_proxy_tls_patch.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: controller-manager | ||
namespace: system | ||
spec: | ||
template: | ||
spec: | ||
containers: | ||
- name: manager # without this line, kustomize reorders the containers, making kube-rbac-proxy the default container | ||
- name: kube-rbac-proxy | ||
args: | ||
- "--secure-listen-address=0.0.0.0:8443" | ||
- "--upstream=http://127.0.0.1:8080/" | ||
- "--logtostderr=true" | ||
- "--v=0" | ||
- "--tls-cert-file=/var/run/tls/server/tls.crt" | ||
- "--tls-private-key-file=/var/run/tls/server/tls.key" | ||
- "--tls-cipher-suites=TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256,TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256,TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256,TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256,TLS_RSA_WITH_AES_128_GCM_SHA256,TLS_RSA_WITH_AES_256_GCM_SHA384,TLS_RSA_WITH_AES_128_CBC_SHA256" | ||
- "--tls-min-version=VersionTLS12" | ||
volumeMounts: | ||
- mountPath: /var/run/tls/server | ||
name: opentelemetry-operator-metrics-cert | ||
volumes: | ||
- name: opentelemetry-operator-metrics-cert | ||
secret: | ||
defaultMode: 420 | ||
# secret generated by the 'service.beta.openshift.io/serving-cert-secret-name' annotation on the metrics-service | ||
secretName: opentelemetry-operator-metrics |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
annotations: | ||
service.beta.openshift.io/serving-cert-secret-name: opentelemetry-operator-metrics | ||
name: controller-manager-metrics-service | ||
namespace: system |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.