Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion config/debug/kustomization-cluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ patches:
name: controller-manager
patch: |-
- op: add
path: /spec/template/spec/containers/2/env
path: /spec/template/spec/containers/0/env
Comment thread
rlieberman-splunk marked this conversation as resolved.
Outdated
value:
- name: WATCH_NAMESPACE
value: WATCH_NAMESPACE_VALUE
Expand Down
2 changes: 1 addition & 1 deletion config/debug/kustomization-namespace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ patches:
name: controller-manager
patch: |-
- op: add
path: /spec/template/spec/containers/2/env
path: /spec/template/spec/containers/0/env
value:
- name: WATCH_NAMESPACE
valueFrom:
Expand Down
2 changes: 1 addition & 1 deletion config/debug/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ patches:
name: controller-manager
patch: |-
- op: add
path: /spec/template/spec/containers/2/env
path: /spec/template/spec/containers/0/env
value:
- name: WATCH_NAMESPACE
value: WATCH_NAMESPACE_VALUE
Expand Down
2 changes: 1 addition & 1 deletion config/default/kustomization-cluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ patches:
name: controller-manager
patch: |-
- op: add
path: /spec/template/spec/containers/2/env
path: /spec/template/spec/containers/0/env
value:
- name: WATCH_NAMESPACE
value: WATCH_NAMESPACE_VALUE
Expand Down
2 changes: 1 addition & 1 deletion config/default/kustomization-namespace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ patches:
name: controller-manager
patch: |-
- op: add
path: /spec/template/spec/containers/2/env
path: /spec/template/spec/containers/0/env
value:
- name: WATCH_NAMESPACE
valueFrom:
Expand Down
12 changes: 10 additions & 2 deletions config/default/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ bases:
#- ../certmanager
# [PROMETHEUS] To enable prometheus monitor, uncomment all sections with 'PROMETHEUS'.
#- ../prometheus
# [METRICS] Expose the controller manager metrics service.
- metrics_service.yaml


patchesStrategicMerge:
# Protect the /metrics endpoint by putting it behind auth.
Expand Down Expand Up @@ -119,7 +122,7 @@ patches:
name: controller-manager
patch: |-
- op: add
path: /spec/template/spec/containers/2/env
path: /spec/template/spec/containers/0/env
value:
- name: WATCH_NAMESPACE
value: WATCH_NAMESPACE_VALUE
Expand All @@ -132,4 +135,9 @@ patches:
- name: POD_NAME
valueFrom:
fieldRef:
fieldPath: metadata.name
fieldPath: metadata.name
# [METRICS] The following patch will enable the metrics endpoint using HTTPS and the port :8443.
# More info: https://book.kubebuilder.io/reference/metrics
- path: manager_metrics_patch.yaml
target:
kind: Deployment
44 changes: 0 additions & 44 deletions config/default/manager_auth_proxy_patch.yaml

This file was deleted.

20 changes: 0 additions & 20 deletions config/default/manager_config_patch.yaml

This file was deleted.

4 changes: 4 additions & 0 deletions config/default/manager_metrics_patch.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# This patch adds the args to allow exposing the metrics endpoint using HTTPS
- op: add
path: /spec/template/spec/containers/0/args/0
value: --metrics-bind-address=:8443
17 changes: 17 additions & 0 deletions config/default/metrics_service.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
apiVersion: v1
kind: Service
metadata:
labels:
control-plane: controller-manager
app.kubernetes.io/name: <operator-name>
app.kubernetes.io/managed-by: kustomize
name: controller-manager-metrics-service
namespace: system
spec:
ports:
- name: https
port: 8443
protocol: TCP
targetPort: 8443
selector:
control-plane: controller-manager
1 change: 1 addition & 0 deletions config/manager/manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ spec:
- /manager
args:
- --leader-elect
- --health-probe-bind-address=:8081
- --pprof
image: controller:latest
imagePullPolicy: Always
Expand Down
11 changes: 10 additions & 1 deletion config/prometheus/monitor.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,19 @@ metadata:
spec:
endpoints:
- path: /metrics
port: https
port: https # Ensure this is the name of the port that exposes HTTPS metrics
scheme: https
bearerTokenFile: /var/run/secrets/kubernetes.io/serviceaccount/token
tlsConfig:
# TODO(user): The option insecureSkipVerify: true is not recommended for production since it disables
# certificate verification. This poses a significant security risk by making the system vulnerable to
# man-in-the-middle attacks, where an attacker could intercept and manipulate the communication between
# Prometheus and the monitored services. This could lead to unauthorized access to sensitive metrics data,
# compromising the integrity and confidentiality of the information.
# Please use the following options for secure configurations:
# caFile: /etc/metrics-certs/ca.crt
# certFile: /etc/metrics-certs/tls.crt
# keyFile: /etc/metrics-certs/tls.key
insecureSkipVerify: true
selector:
matchLabels:
Expand Down
17 changes: 0 additions & 17 deletions config/rbac/auth_proxy_role.yaml

This file was deleted.

15 changes: 0 additions & 15 deletions config/rbac/auth_proxy_service.yaml

This file was deleted.

16 changes: 9 additions & 7 deletions config/rbac/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,12 @@ resources:
- role_binding.yaml
- leader_election_role.yaml
- leader_election_role_binding.yaml
# Comment the following 4 lines if you want to disable
# the auth proxy (https://github.com/brancz/kube-rbac-proxy)
# which protects your /metrics endpoint.
- auth_proxy_service.yaml
- auth_proxy_role.yaml
- auth_proxy_role_binding.yaml
- auth_proxy_client_clusterrole.yaml
# The following RBAC configurations are used to protect
# the metrics endpoint with authn/authz. These configurations
# ensure that only authorized users and service accounts
# can access the metrics endpoint. Comment the following
# permissions if you want to disable this protection.
# More info: https://book.kubebuilder.io/reference/metrics.html
- metrics_auth_role.yaml
- metrics_auth_role_binding.yaml
- metrics_reader_role.yaml
17 changes: 17 additions & 0 deletions config/rbac/metrics_auth_role.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
name: metrics-auth-role
rules:
- apiGroups:
- authentication.k8s.io
resources:
- tokenreviews
verbs:
- create
- apiGroups:
- authorization.k8s.io
resources:
- subjectaccessreviews
verbs:
- create
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: proxy-rolebinding
name: metrics-auth-rolebinding
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: proxy-role
name: metrics-auth-role
subjects:
- kind: ServiceAccount
name: controller-manager
namespace: system
- kind: ServiceAccount
name: controller-manager
namespace: system
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ rules:
- nonResourceURLs:
- "/metrics"
verbs:
- get
- get
Loading